@springtree/eva-services-core-management 2.2.2 → 2.3.1
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.
|
@@ -13,6 +13,19 @@ export declare namespace CoreManagement {
|
|
|
13
13
|
request?: EVA.Core.Management.AddBlobToCaseInteraction;
|
|
14
14
|
response?: EVA.Core.EmptyResponseMessage;
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* Add a price list to a loyalty program. NOTE THAT you can only add one pricelist per currency to a loyalty program.
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @class AddLoyaltyProgramPriceList
|
|
21
|
+
* @implements {EvaService}
|
|
22
|
+
*/
|
|
23
|
+
class AddLoyaltyProgramPriceList implements IEvaServiceDefinition {
|
|
24
|
+
name: string;
|
|
25
|
+
path: string;
|
|
26
|
+
request?: EVA.Core.Management.AddLoyaltyProgramPriceList;
|
|
27
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
28
|
+
}
|
|
16
29
|
/**
|
|
17
30
|
* Add a package to a carrier
|
|
18
31
|
*
|
|
@@ -185,6 +198,32 @@ But if the list is a mixed product list, all updates will be applied according t
|
|
|
185
198
|
request?: EVA.Core.Management.AttachFunctionalitiesToRole;
|
|
186
199
|
response?: EVA.Core.EmptyResponseMessage;
|
|
187
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* Attach a product limitation to a payment type.
|
|
203
|
+
*
|
|
204
|
+
* @export
|
|
205
|
+
* @class AttachLoyaltyProgramProductLimitationToPaymentType
|
|
206
|
+
* @implements {EvaService}
|
|
207
|
+
*/
|
|
208
|
+
class AttachLoyaltyProgramProductLimitationToPaymentType implements IEvaServiceDefinition {
|
|
209
|
+
name: string;
|
|
210
|
+
path: string;
|
|
211
|
+
request?: EVA.Core.Management.AttachLoyaltyProgramProductLimitationToPaymentType;
|
|
212
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Attach a loyalty program to an order
|
|
216
|
+
*
|
|
217
|
+
* @export
|
|
218
|
+
* @class AttachLoyaltyProgramToOrder
|
|
219
|
+
* @implements {EvaService}
|
|
220
|
+
*/
|
|
221
|
+
class AttachLoyaltyProgramToOrder implements IEvaServiceDefinition {
|
|
222
|
+
name: string;
|
|
223
|
+
path: string;
|
|
224
|
+
request?: EVA.Core.Management.AttachLoyaltyProgramToOrder;
|
|
225
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
226
|
+
}
|
|
188
227
|
/**
|
|
189
228
|
* Resets the Financial Periods for given OU and all children to which the auditing provider applies. **Use with care!**
|
|
190
229
|
*
|
|
@@ -700,6 +739,58 @@ This PIN will only be valid for a limited amount of time, and only for the provi
|
|
|
700
739
|
request?: EVA.Core.Management.CreateLoyaltyProgram;
|
|
701
740
|
response?: EVA.Core.Management.CreateLoyaltyProgramResponse;
|
|
702
741
|
}
|
|
742
|
+
/**
|
|
743
|
+
* Create a new LoyaltyProgramCondition
|
|
744
|
+
*
|
|
745
|
+
* @export
|
|
746
|
+
* @class CreateLoyaltyProgramCondition
|
|
747
|
+
* @implements {EvaService}
|
|
748
|
+
*/
|
|
749
|
+
class CreateLoyaltyProgramCondition implements IEvaServiceDefinition {
|
|
750
|
+
name: string;
|
|
751
|
+
path: string;
|
|
752
|
+
request?: EVA.Core.Management.CreateLoyaltyProgramCondition;
|
|
753
|
+
response?: EVA.Core.Management.CreateLoyaltyProgramConditionResponse;
|
|
754
|
+
}
|
|
755
|
+
/**
|
|
756
|
+
* Create a new LoyaltyProgramGroup
|
|
757
|
+
*
|
|
758
|
+
* @export
|
|
759
|
+
* @class CreateLoyaltyProgramGroup
|
|
760
|
+
* @implements {EvaService}
|
|
761
|
+
*/
|
|
762
|
+
class CreateLoyaltyProgramGroup implements IEvaServiceDefinition {
|
|
763
|
+
name: string;
|
|
764
|
+
path: string;
|
|
765
|
+
request?: EVA.Core.Management.CreateLoyaltyProgramGroup;
|
|
766
|
+
response?: EVA.Core.Management.CreateLoyaltyProgramGroupResponse;
|
|
767
|
+
}
|
|
768
|
+
/**
|
|
769
|
+
* Create a new LoyaltyProgramPaymentType
|
|
770
|
+
*
|
|
771
|
+
* @export
|
|
772
|
+
* @class CreateLoyaltyProgramPaymentType
|
|
773
|
+
* @implements {EvaService}
|
|
774
|
+
*/
|
|
775
|
+
class CreateLoyaltyProgramPaymentType implements IEvaServiceDefinition {
|
|
776
|
+
name: string;
|
|
777
|
+
path: string;
|
|
778
|
+
request?: EVA.Core.Management.CreateLoyaltyProgramPaymentType;
|
|
779
|
+
response?: EVA.Core.Management.CreateLoyaltyProgramPaymentTypeResponse;
|
|
780
|
+
}
|
|
781
|
+
/**
|
|
782
|
+
* Create a loyalty program product limitation.
|
|
783
|
+
*
|
|
784
|
+
* @export
|
|
785
|
+
* @class CreateLoyaltyProgramProductLimitation
|
|
786
|
+
* @implements {EvaService}
|
|
787
|
+
*/
|
|
788
|
+
class CreateLoyaltyProgramProductLimitation implements IEvaServiceDefinition {
|
|
789
|
+
name: string;
|
|
790
|
+
path: string;
|
|
791
|
+
request?: EVA.Core.Management.CreateLoyaltyProgramProductLimitation;
|
|
792
|
+
response?: EVA.Core.Management.CreateLoyaltyProgramProductLimitationResponse;
|
|
793
|
+
}
|
|
703
794
|
/**
|
|
704
795
|
* Create a new MessageTemplate
|
|
705
796
|
*
|
|
@@ -1164,32 +1255,6 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
|
|
|
1164
1255
|
request?: EVA.Core.Management.CreateRefundCorrectionReason;
|
|
1165
1256
|
response?: EVA.Core.Management.CreateRefundCorrectionReasonResponse;
|
|
1166
1257
|
}
|
|
1167
|
-
/**
|
|
1168
|
-
* Create a repair
|
|
1169
|
-
*
|
|
1170
|
-
* @export
|
|
1171
|
-
* @class CreateRepair
|
|
1172
|
-
* @implements {EvaService}
|
|
1173
|
-
*/
|
|
1174
|
-
class CreateRepair implements IEvaServiceDefinition {
|
|
1175
|
-
name: string;
|
|
1176
|
-
path: string;
|
|
1177
|
-
request?: EVA.Core.Management.CreateRepair;
|
|
1178
|
-
response?: EVA.Core.Management.CreateRepairResponse;
|
|
1179
|
-
}
|
|
1180
|
-
/**
|
|
1181
|
-
* Creates a new interaction associated with a specific repair
|
|
1182
|
-
*
|
|
1183
|
-
* @export
|
|
1184
|
-
* @class CreateRepairInteraction
|
|
1185
|
-
* @implements {EvaService}
|
|
1186
|
-
*/
|
|
1187
|
-
class CreateRepairInteraction implements IEvaServiceDefinition {
|
|
1188
|
-
name: string;
|
|
1189
|
-
path: string;
|
|
1190
|
-
request?: EVA.Core.Management.CreateRepairInteraction;
|
|
1191
|
-
response?: EVA.Core.Management.CreateRepairInteractionResponse;
|
|
1192
|
-
}
|
|
1193
1258
|
/**
|
|
1194
1259
|
* Create a return reason
|
|
1195
1260
|
*
|
|
@@ -1530,7 +1595,7 @@ Name is required
|
|
|
1530
1595
|
response?: EVA.Core.EmptyResponseMessage;
|
|
1531
1596
|
}
|
|
1532
1597
|
/**
|
|
1533
|
-
* Delete a case topic
|
|
1598
|
+
* Delete a case topic. NOTE THAT sub topics will also be deleted.
|
|
1534
1599
|
*
|
|
1535
1600
|
* @export
|
|
1536
1601
|
* @class DeleteCaseTopic
|
|
@@ -1802,6 +1867,58 @@ Name is required
|
|
|
1802
1867
|
request?: EVA.Core.Management.DeleteLoyaltyProgram;
|
|
1803
1868
|
response?: EVA.Core.EmptyResponseMessage;
|
|
1804
1869
|
}
|
|
1870
|
+
/**
|
|
1871
|
+
* Delete a LoyaltyProgramCondition
|
|
1872
|
+
*
|
|
1873
|
+
* @export
|
|
1874
|
+
* @class DeleteLoyaltyProgramCondition
|
|
1875
|
+
* @implements {EvaService}
|
|
1876
|
+
*/
|
|
1877
|
+
class DeleteLoyaltyProgramCondition implements IEvaServiceDefinition {
|
|
1878
|
+
name: string;
|
|
1879
|
+
path: string;
|
|
1880
|
+
request?: EVA.Core.Management.DeleteLoyaltyProgramCondition;
|
|
1881
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
1882
|
+
}
|
|
1883
|
+
/**
|
|
1884
|
+
* Delete the LoyaltyProgramGroup
|
|
1885
|
+
*
|
|
1886
|
+
* @export
|
|
1887
|
+
* @class DeleteLoyaltyProgramGroup
|
|
1888
|
+
* @implements {EvaService}
|
|
1889
|
+
*/
|
|
1890
|
+
class DeleteLoyaltyProgramGroup implements IEvaServiceDefinition {
|
|
1891
|
+
name: string;
|
|
1892
|
+
path: string;
|
|
1893
|
+
request?: EVA.Core.Management.DeleteLoyaltyProgramGroup;
|
|
1894
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
1895
|
+
}
|
|
1896
|
+
/**
|
|
1897
|
+
* Delete a LoyaltyProgramPaymentType
|
|
1898
|
+
*
|
|
1899
|
+
* @export
|
|
1900
|
+
* @class DeleteLoyaltyProgramPaymentType
|
|
1901
|
+
* @implements {EvaService}
|
|
1902
|
+
*/
|
|
1903
|
+
class DeleteLoyaltyProgramPaymentType implements IEvaServiceDefinition {
|
|
1904
|
+
name: string;
|
|
1905
|
+
path: string;
|
|
1906
|
+
request?: EVA.Core.Management.DeleteLoyaltyProgramPaymentType;
|
|
1907
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
1908
|
+
}
|
|
1909
|
+
/**
|
|
1910
|
+
* Delete a loyalty program product limitation.
|
|
1911
|
+
*
|
|
1912
|
+
* @export
|
|
1913
|
+
* @class DeleteLoyaltyProgramProductLimitation
|
|
1914
|
+
* @implements {EvaService}
|
|
1915
|
+
*/
|
|
1916
|
+
class DeleteLoyaltyProgramProductLimitation implements IEvaServiceDefinition {
|
|
1917
|
+
name: string;
|
|
1918
|
+
path: string;
|
|
1919
|
+
request?: EVA.Core.Management.DeleteLoyaltyProgramProductLimitation;
|
|
1920
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
1921
|
+
}
|
|
1805
1922
|
/**
|
|
1806
1923
|
* Delete a MessageTemplate
|
|
1807
1924
|
*
|
|
@@ -2501,6 +2618,32 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2501
2618
|
request?: EVA.Core.Management.DetachFunctionalitiesFromRole;
|
|
2502
2619
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2503
2620
|
}
|
|
2621
|
+
/**
|
|
2622
|
+
* Detach a loyalty program from an order
|
|
2623
|
+
*
|
|
2624
|
+
* @export
|
|
2625
|
+
* @class DetachLoyaltyProgramFromOrder
|
|
2626
|
+
* @implements {EvaService}
|
|
2627
|
+
*/
|
|
2628
|
+
class DetachLoyaltyProgramFromOrder implements IEvaServiceDefinition {
|
|
2629
|
+
name: string;
|
|
2630
|
+
path: string;
|
|
2631
|
+
request?: EVA.Core.Management.DetachLoyaltyProgramFromOrder;
|
|
2632
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2633
|
+
}
|
|
2634
|
+
/**
|
|
2635
|
+
* Detach a product limitation from a payment type.
|
|
2636
|
+
*
|
|
2637
|
+
* @export
|
|
2638
|
+
* @class DetachLoyaltyProgramProductLimitationFromPaymentType
|
|
2639
|
+
* @implements {EvaService}
|
|
2640
|
+
*/
|
|
2641
|
+
class DetachLoyaltyProgramProductLimitationFromPaymentType implements IEvaServiceDefinition {
|
|
2642
|
+
name: string;
|
|
2643
|
+
path: string;
|
|
2644
|
+
request?: EVA.Core.Management.DetachLoyaltyProgramProductLimitationFromPaymentType;
|
|
2645
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2646
|
+
}
|
|
2504
2647
|
/**
|
|
2505
2648
|
* Disable discounts
|
|
2506
2649
|
*
|
|
@@ -2996,19 +3139,6 @@ A duplicated discount will not be Active and Verified.
|
|
|
2996
3139
|
request?: EVA.Core.Management.ExportUserSubscriptions;
|
|
2997
3140
|
response?: EVA.Core.ResourceResponseMessage;
|
|
2998
3141
|
}
|
|
2999
|
-
/**
|
|
3000
|
-
* TODO: Needs documentation
|
|
3001
|
-
*
|
|
3002
|
-
* @export
|
|
3003
|
-
* @class FinishRepair
|
|
3004
|
-
* @implements {EvaService}
|
|
3005
|
-
*/
|
|
3006
|
-
class FinishRepair implements IEvaServiceDefinition {
|
|
3007
|
-
name: string;
|
|
3008
|
-
path: string;
|
|
3009
|
-
request?: EVA.Core.Management.FinishRepair;
|
|
3010
|
-
response?: EVA.Core.EmptyResponseMessage;
|
|
3011
|
-
}
|
|
3012
3142
|
/**
|
|
3013
3143
|
* Generate a batch DiscountCoupons, they will be emailed to the current user
|
|
3014
3144
|
*
|
|
@@ -3757,6 +3887,32 @@ At this moment the supported DeviceTypes are:
|
|
|
3757
3887
|
request?: EVA.Core.Management.GetLoyaltyProgram;
|
|
3758
3888
|
response?: EVA.Core.Management.GetLoyaltyProgramResponse;
|
|
3759
3889
|
}
|
|
3890
|
+
/**
|
|
3891
|
+
* Get a LoyaltyProgramCondition
|
|
3892
|
+
*
|
|
3893
|
+
* @export
|
|
3894
|
+
* @class GetLoyaltyProgramCondition
|
|
3895
|
+
* @implements {EvaService}
|
|
3896
|
+
*/
|
|
3897
|
+
class GetLoyaltyProgramCondition implements IEvaServiceDefinition {
|
|
3898
|
+
name: string;
|
|
3899
|
+
path: string;
|
|
3900
|
+
request?: EVA.Core.Management.GetLoyaltyProgramCondition;
|
|
3901
|
+
response?: EVA.Core.Management.GetLoyaltyProgramConditionResponse;
|
|
3902
|
+
}
|
|
3903
|
+
/**
|
|
3904
|
+
* Get a LoyaltyProgramGroup
|
|
3905
|
+
*
|
|
3906
|
+
* @export
|
|
3907
|
+
* @class GetLoyaltyProgramGroup
|
|
3908
|
+
* @implements {EvaService}
|
|
3909
|
+
*/
|
|
3910
|
+
class GetLoyaltyProgramGroup implements IEvaServiceDefinition {
|
|
3911
|
+
name: string;
|
|
3912
|
+
path: string;
|
|
3913
|
+
request?: EVA.Core.Management.GetLoyaltyProgramGroup;
|
|
3914
|
+
response?: EVA.Core.Management.GetLoyaltyProgramGroupResponse;
|
|
3915
|
+
}
|
|
3760
3916
|
/**
|
|
3761
3917
|
* Get the available loyalty program handlers
|
|
3762
3918
|
*
|
|
@@ -3770,6 +3926,32 @@ At this moment the supported DeviceTypes are:
|
|
|
3770
3926
|
request?: EVA.Core.Management.GetLoyaltyProgramHandlers;
|
|
3771
3927
|
response?: EVA.Core.Management.GetLoyaltyProgramHandlersResponse;
|
|
3772
3928
|
}
|
|
3929
|
+
/**
|
|
3930
|
+
* Get a LoyaltyProgramPaymentType
|
|
3931
|
+
*
|
|
3932
|
+
* @export
|
|
3933
|
+
* @class GetLoyaltyProgramPaymentType
|
|
3934
|
+
* @implements {EvaService}
|
|
3935
|
+
*/
|
|
3936
|
+
class GetLoyaltyProgramPaymentType implements IEvaServiceDefinition {
|
|
3937
|
+
name: string;
|
|
3938
|
+
path: string;
|
|
3939
|
+
request?: EVA.Core.Management.GetLoyaltyProgramPaymentType;
|
|
3940
|
+
response?: EVA.Core.Management.GetLoyaltyProgramPaymentTypeResponse;
|
|
3941
|
+
}
|
|
3942
|
+
/**
|
|
3943
|
+
* Get a loyalty program product limitations"
|
|
3944
|
+
*
|
|
3945
|
+
* @export
|
|
3946
|
+
* @class GetLoyaltyProgramProductLimitation
|
|
3947
|
+
* @implements {EvaService}
|
|
3948
|
+
*/
|
|
3949
|
+
class GetLoyaltyProgramProductLimitation implements IEvaServiceDefinition {
|
|
3950
|
+
name: string;
|
|
3951
|
+
path: string;
|
|
3952
|
+
request?: EVA.Core.Management.GetLoyaltyProgramProductLimitation;
|
|
3953
|
+
response?: EVA.Core.Management.GetLoyaltyProgramProductLimitationResponse;
|
|
3954
|
+
}
|
|
3773
3955
|
/**
|
|
3774
3956
|
* Get a MessageTemplate
|
|
3775
3957
|
*
|
|
@@ -4152,19 +4334,6 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4152
4334
|
request?: EVA.Core.Management.GetRefundCorrectionReason;
|
|
4153
4335
|
response?: EVA.Core.Management.GetRefundCorrectionReasonResponse;
|
|
4154
4336
|
}
|
|
4155
|
-
/**
|
|
4156
|
-
* TODO: Needs documentation
|
|
4157
|
-
*
|
|
4158
|
-
* @export
|
|
4159
|
-
* @class GetRepair
|
|
4160
|
-
* @implements {EvaService}
|
|
4161
|
-
*/
|
|
4162
|
-
class GetRepair implements IEvaServiceDefinition {
|
|
4163
|
-
name: string;
|
|
4164
|
-
path: string;
|
|
4165
|
-
request?: EVA.Core.Management.GetRepair;
|
|
4166
|
-
response?: EVA.Core.Management.GetRepairResponse;
|
|
4167
|
-
}
|
|
4168
4337
|
/**
|
|
4169
4338
|
* Get the reasons by type.
|
|
4170
4339
|
*
|
|
@@ -5062,6 +5231,84 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5062
5231
|
request?: EVA.Core.Management.ListInquiries;
|
|
5063
5232
|
response?: EVA.Core.Management.ListInquiriesResponse;
|
|
5064
5233
|
}
|
|
5234
|
+
/**
|
|
5235
|
+
* Lists all payment types under the Loyalty payment method that aren't already connected to a loyalty program.
|
|
5236
|
+
*
|
|
5237
|
+
* @export
|
|
5238
|
+
* @class ListLoyaltyPaymentMethodTypes
|
|
5239
|
+
* @implements {EvaService}
|
|
5240
|
+
*/
|
|
5241
|
+
class ListLoyaltyPaymentMethodTypes implements IEvaServiceDefinition {
|
|
5242
|
+
name: string;
|
|
5243
|
+
path: string;
|
|
5244
|
+
request?: EVA.Core.Management.ListLoyaltyPaymentMethodTypes;
|
|
5245
|
+
response?: EVA.Core.Management.ListLoyaltyPaymentMethodTypesResponse;
|
|
5246
|
+
}
|
|
5247
|
+
/**
|
|
5248
|
+
* List the LoyaltyProgramCondition
|
|
5249
|
+
*
|
|
5250
|
+
* @export
|
|
5251
|
+
* @class ListLoyaltyProgramConditions
|
|
5252
|
+
* @implements {EvaService}
|
|
5253
|
+
*/
|
|
5254
|
+
class ListLoyaltyProgramConditions implements IEvaServiceDefinition {
|
|
5255
|
+
name: string;
|
|
5256
|
+
path: string;
|
|
5257
|
+
request?: EVA.Core.Management.ListLoyaltyProgramConditions;
|
|
5258
|
+
response?: EVA.Core.Management.ListLoyaltyProgramConditionsResponse;
|
|
5259
|
+
}
|
|
5260
|
+
/**
|
|
5261
|
+
* List the LoyaltyProgramGroups
|
|
5262
|
+
*
|
|
5263
|
+
* @export
|
|
5264
|
+
* @class ListLoyaltyProgramGroups
|
|
5265
|
+
* @implements {EvaService}
|
|
5266
|
+
*/
|
|
5267
|
+
class ListLoyaltyProgramGroups implements IEvaServiceDefinition {
|
|
5268
|
+
name: string;
|
|
5269
|
+
path: string;
|
|
5270
|
+
request?: EVA.Core.Management.ListLoyaltyProgramGroups;
|
|
5271
|
+
response?: EVA.Core.Management.ListLoyaltyProgramGroupsResponse;
|
|
5272
|
+
}
|
|
5273
|
+
/**
|
|
5274
|
+
* List the LoyaltyProgramPaymentType
|
|
5275
|
+
*
|
|
5276
|
+
* @export
|
|
5277
|
+
* @class ListLoyaltyProgramPaymentTypes
|
|
5278
|
+
* @implements {EvaService}
|
|
5279
|
+
*/
|
|
5280
|
+
class ListLoyaltyProgramPaymentTypes implements IEvaServiceDefinition {
|
|
5281
|
+
name: string;
|
|
5282
|
+
path: string;
|
|
5283
|
+
request?: EVA.Core.Management.ListLoyaltyProgramPaymentTypes;
|
|
5284
|
+
response?: EVA.Core.Management.ListLoyaltyProgramPaymentTypesResponse;
|
|
5285
|
+
}
|
|
5286
|
+
/**
|
|
5287
|
+
* List the loyalty program pricelists
|
|
5288
|
+
*
|
|
5289
|
+
* @export
|
|
5290
|
+
* @class ListLoyaltyProgramPriceLists
|
|
5291
|
+
* @implements {EvaService}
|
|
5292
|
+
*/
|
|
5293
|
+
class ListLoyaltyProgramPriceLists implements IEvaServiceDefinition {
|
|
5294
|
+
name: string;
|
|
5295
|
+
path: string;
|
|
5296
|
+
request?: EVA.Core.Management.ListLoyaltyProgramPriceLists;
|
|
5297
|
+
response?: EVA.Core.Management.ListLoyaltyProgramPriceListsResponse;
|
|
5298
|
+
}
|
|
5299
|
+
/**
|
|
5300
|
+
* List the loyalty program product limitations
|
|
5301
|
+
*
|
|
5302
|
+
* @export
|
|
5303
|
+
* @class ListLoyaltyProgramProductLimitations
|
|
5304
|
+
* @implements {EvaService}
|
|
5305
|
+
*/
|
|
5306
|
+
class ListLoyaltyProgramProductLimitations implements IEvaServiceDefinition {
|
|
5307
|
+
name: string;
|
|
5308
|
+
path: string;
|
|
5309
|
+
request?: EVA.Core.Management.ListLoyaltyProgramProductLimitations;
|
|
5310
|
+
response?: EVA.Core.Management.ListLoyaltyProgramProductLimitationsResponse;
|
|
5311
|
+
}
|
|
5065
5312
|
/**
|
|
5066
5313
|
* List the LoyaltyPrograms
|
|
5067
5314
|
*
|
|
@@ -5578,32 +5825,6 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
5578
5825
|
request?: EVA.Core.Management.ListRefundCorrectionReasons;
|
|
5579
5826
|
response?: EVA.Core.Management.ListRefundCorrectionReasonsResponse;
|
|
5580
5827
|
}
|
|
5581
|
-
/**
|
|
5582
|
-
* List the repair interactions
|
|
5583
|
-
*
|
|
5584
|
-
* @export
|
|
5585
|
-
* @class ListRepairInteractions
|
|
5586
|
-
* @implements {EvaService}
|
|
5587
|
-
*/
|
|
5588
|
-
class ListRepairInteractions implements IEvaServiceDefinition {
|
|
5589
|
-
name: string;
|
|
5590
|
-
path: string;
|
|
5591
|
-
request?: EVA.Core.Management.ListRepairInteractions;
|
|
5592
|
-
response?: EVA.Core.Management.ListRepairInteractionsResponse;
|
|
5593
|
-
}
|
|
5594
|
-
/**
|
|
5595
|
-
* List Repairs, optionally filtered.
|
|
5596
|
-
*
|
|
5597
|
-
* @export
|
|
5598
|
-
* @class ListRepairs
|
|
5599
|
-
* @implements {EvaService}
|
|
5600
|
-
*/
|
|
5601
|
-
class ListRepairs implements IEvaServiceDefinition {
|
|
5602
|
-
name: string;
|
|
5603
|
-
path: string;
|
|
5604
|
-
request?: EVA.Core.Management.ListRepairs;
|
|
5605
|
-
response?: EVA.Core.Management.ListRepairsResponse;
|
|
5606
|
-
}
|
|
5607
5828
|
/**
|
|
5608
5829
|
* TODO: Needs documentation
|
|
5609
5830
|
*
|
|
@@ -6113,6 +6334,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6113
6334
|
request?: EVA.Core.Management.PushCase;
|
|
6114
6335
|
response?: EVA.Core.Management.PushCaseResponse;
|
|
6115
6336
|
}
|
|
6337
|
+
/**
|
|
6338
|
+
* Push a LoyaltyProgram.
|
|
6339
|
+
*
|
|
6340
|
+
* @export
|
|
6341
|
+
* @class PushLoyaltyProgram
|
|
6342
|
+
* @implements {EvaService}
|
|
6343
|
+
*/
|
|
6344
|
+
class PushLoyaltyProgram implements IEvaServiceDefinition {
|
|
6345
|
+
name: string;
|
|
6346
|
+
path: string;
|
|
6347
|
+
request?: EVA.Core.Management.PushLoyaltyProgram;
|
|
6348
|
+
response?: EVA.Core.Management.PushLoyaltyProgramResponse;
|
|
6349
|
+
}
|
|
6116
6350
|
/**
|
|
6117
6351
|
* Push user bought product.
|
|
6118
6352
|
*
|
|
@@ -6126,6 +6360,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6126
6360
|
request?: EVA.Core.Management.PushUserBoughtProduct;
|
|
6127
6361
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6128
6362
|
}
|
|
6363
|
+
/**
|
|
6364
|
+
* Set products for personalized promotion for the given user. Overwrites existing products and product selection. Will unset products and selection when no products are provided.
|
|
6365
|
+
*
|
|
6366
|
+
* @export
|
|
6367
|
+
* @class PushUserPersonalizedPromotionProducts
|
|
6368
|
+
* @implements {EvaService}
|
|
6369
|
+
*/
|
|
6370
|
+
class PushUserPersonalizedPromotionProducts implements IEvaServiceDefinition {
|
|
6371
|
+
name: string;
|
|
6372
|
+
path: string;
|
|
6373
|
+
request?: EVA.Core.Management.PushUserPersonalizedPromotionProducts;
|
|
6374
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6375
|
+
}
|
|
6129
6376
|
/**
|
|
6130
6377
|
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
6131
6378
|
Multiple subscriptions can be pushed at once.
|
|
@@ -6209,6 +6456,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6209
6456
|
request?: EVA.Core.Management.RemoveCaseRelatedItems;
|
|
6210
6457
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6211
6458
|
}
|
|
6459
|
+
/**
|
|
6460
|
+
* Removes a price list from a loyalty program.
|
|
6461
|
+
*
|
|
6462
|
+
* @export
|
|
6463
|
+
* @class RemoveLoyaltyProgramPriceList
|
|
6464
|
+
* @implements {EvaService}
|
|
6465
|
+
*/
|
|
6466
|
+
class RemoveLoyaltyProgramPriceList implements IEvaServiceDefinition {
|
|
6467
|
+
name: string;
|
|
6468
|
+
path: string;
|
|
6469
|
+
request?: EVA.Core.Management.RemoveLoyaltyProgramPriceList;
|
|
6470
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6471
|
+
}
|
|
6212
6472
|
/**
|
|
6213
6473
|
* Remove a package from a carrier
|
|
6214
6474
|
*
|
|
@@ -6288,7 +6548,7 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6288
6548
|
response?: EVA.Core.Management.SearchStockMutationsResponse;
|
|
6289
6549
|
}
|
|
6290
6550
|
/**
|
|
6291
|
-
* Set selected products for personalized promotion for the logged in user or the given user.
|
|
6551
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Overwrites existing selection.
|
|
6292
6552
|
*
|
|
6293
6553
|
* @export
|
|
6294
6554
|
* @class SelectUserPersonalizedPromotionProducts
|
|
@@ -6941,6 +7201,97 @@ When the budget is cleared or raised above the current `TotalDiscountGiven`, or
|
|
|
6941
7201
|
request?: EVA.Core.Management.UpdateLoyaltyProgram;
|
|
6942
7202
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6943
7203
|
}
|
|
7204
|
+
/**
|
|
7205
|
+
* Update the budget on the loyalty program group.
|
|
7206
|
+
ATTENTION! When the currency is changed, the used budget registration will be reset to 0!
|
|
7207
|
+
When the budget is lowered below the current used budget and the `DeactivateWhenBudgetIsReached` is set to true, all related programs will be deactivated.
|
|
7208
|
+
When the budget is cleared or raised above the current used budget, or `DeactivateWhenBudgetIsReached` is set to false, and the `ReactivateProgramsWhenPossible` is set to true, all programs that were deactivate by the group budget will be reactivated when possible.
|
|
7209
|
+
*
|
|
7210
|
+
* @export
|
|
7211
|
+
* @class UpdateLoyaltyProgramBudget
|
|
7212
|
+
* @implements {EvaService}
|
|
7213
|
+
*/
|
|
7214
|
+
class UpdateLoyaltyProgramBudget implements IEvaServiceDefinition {
|
|
7215
|
+
name: string;
|
|
7216
|
+
path: string;
|
|
7217
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramBudget;
|
|
7218
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7219
|
+
}
|
|
7220
|
+
/**
|
|
7221
|
+
* Update an existing LoyaltyProgramCondition
|
|
7222
|
+
*
|
|
7223
|
+
* @export
|
|
7224
|
+
* @class UpdateLoyaltyProgramCondition
|
|
7225
|
+
* @implements {EvaService}
|
|
7226
|
+
*/
|
|
7227
|
+
class UpdateLoyaltyProgramCondition implements IEvaServiceDefinition {
|
|
7228
|
+
name: string;
|
|
7229
|
+
path: string;
|
|
7230
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramCondition;
|
|
7231
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7232
|
+
}
|
|
7233
|
+
/**
|
|
7234
|
+
* Update an existing LoyaltyProgramGroup
|
|
7235
|
+
|
|
7236
|
+
ATTENTION!
|
|
7237
|
+
When the currency is changed, the budget usages will be reset to 0!
|
|
7238
|
+
|
|
7239
|
+
ATTENTION!
|
|
7240
|
+
When a change to Status, StartDate, EndDate or Currency leads to the group being deactivated, all related loyalty programs will also be deactivated.
|
|
7241
|
+
When a change to Status, StartDate, EndDate or Currency leads to the group being reactivate, all related loyalty programs will also be reactive when the option ReactivateProgramsWhenPossible is set to true. Otherwise all deactivated programs need to be manually reactivated.
|
|
7242
|
+
*
|
|
7243
|
+
* @export
|
|
7244
|
+
* @class UpdateLoyaltyProgramGroup
|
|
7245
|
+
* @implements {EvaService}
|
|
7246
|
+
*/
|
|
7247
|
+
class UpdateLoyaltyProgramGroup implements IEvaServiceDefinition {
|
|
7248
|
+
name: string;
|
|
7249
|
+
path: string;
|
|
7250
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramGroup;
|
|
7251
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7252
|
+
}
|
|
7253
|
+
/**
|
|
7254
|
+
* Update the budget on the loyalty program group.
|
|
7255
|
+
ATTENTION!
|
|
7256
|
+
When the budget is lowered below the current used budget and the `DeactivateWhenBudgetIsReached` is set to true, all related programs will be deactivated.
|
|
7257
|
+
When the budget is cleared or raised above the current used budget, or `DeactivateWhenBudgetIsReached` is set to false, and the `ReactivateProgramsWhenPossible` is set to true, all programs that were deactivate by the group budget will be reactivated when possible.
|
|
7258
|
+
*
|
|
7259
|
+
* @export
|
|
7260
|
+
* @class UpdateLoyaltyProgramGroupBudget
|
|
7261
|
+
* @implements {EvaService}
|
|
7262
|
+
*/
|
|
7263
|
+
class UpdateLoyaltyProgramGroupBudget implements IEvaServiceDefinition {
|
|
7264
|
+
name: string;
|
|
7265
|
+
path: string;
|
|
7266
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramGroupBudget;
|
|
7267
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7268
|
+
}
|
|
7269
|
+
/**
|
|
7270
|
+
* Update an existing LoyaltyProgramPaymentType
|
|
7271
|
+
*
|
|
7272
|
+
* @export
|
|
7273
|
+
* @class UpdateLoyaltyProgramPaymentType
|
|
7274
|
+
* @implements {EvaService}
|
|
7275
|
+
*/
|
|
7276
|
+
class UpdateLoyaltyProgramPaymentType implements IEvaServiceDefinition {
|
|
7277
|
+
name: string;
|
|
7278
|
+
path: string;
|
|
7279
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramPaymentType;
|
|
7280
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7281
|
+
}
|
|
7282
|
+
/**
|
|
7283
|
+
* Update a loyalty program product limitation.
|
|
7284
|
+
*
|
|
7285
|
+
* @export
|
|
7286
|
+
* @class UpdateLoyaltyProgramProductLimitation
|
|
7287
|
+
* @implements {EvaService}
|
|
7288
|
+
*/
|
|
7289
|
+
class UpdateLoyaltyProgramProductLimitation implements IEvaServiceDefinition {
|
|
7290
|
+
name: string;
|
|
7291
|
+
path: string;
|
|
7292
|
+
request?: EVA.Core.Management.UpdateLoyaltyProgramProductLimitation;
|
|
7293
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7294
|
+
}
|
|
6944
7295
|
/**
|
|
6945
7296
|
* Update an existing MessageTemplate
|
|
6946
7297
|
*
|
|
@@ -7342,19 +7693,6 @@ A ShippingMethod, OrganizationUnit and Priority are required
|
|
|
7342
7693
|
request?: EVA.Core.Management.UpdateRefundCorrectionReason;
|
|
7343
7694
|
response?: EVA.Core.EmptyResponseMessage;
|
|
7344
7695
|
}
|
|
7345
|
-
/**
|
|
7346
|
-
* TODO: Needs documentation
|
|
7347
|
-
*
|
|
7348
|
-
* @export
|
|
7349
|
-
* @class UpdateRepair
|
|
7350
|
-
* @implements {EvaService}
|
|
7351
|
-
*/
|
|
7352
|
-
class UpdateRepair implements IEvaServiceDefinition {
|
|
7353
|
-
name: string;
|
|
7354
|
-
path: string;
|
|
7355
|
-
request?: EVA.Core.Management.UpdateRepair;
|
|
7356
|
-
response?: EVA.Core.EmptyResponseMessage;
|
|
7357
|
-
}
|
|
7358
7696
|
/**
|
|
7359
7697
|
* Update a return reason
|
|
7360
7698
|
*
|