@springtree/eva-services-core-management 1.82.0 → 1.84.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.
@@ -81,6 +81,19 @@ But if the list is a mixed product list, all updates will be applied according t
81
81
  request?: EVA.Core.Management.ArchiveDiscount;
82
82
  response?: EVA.Core.EmptyResponseMessage;
83
83
  }
84
+ /**
85
+ * Archive a point awarding rule
86
+ *
87
+ * @export
88
+ * @class ArchivePointAwardingRule
89
+ * @implements {EvaService}
90
+ */
91
+ class ArchivePointAwardingRule implements IEvaServiceDefinition {
92
+ name: string;
93
+ path: string;
94
+ request?: EVA.Core.Management.ArchivePointAwardingRule;
95
+ response?: EVA.Core.EmptyResponseMessage;
96
+ }
84
97
  /**
85
98
  * Get all OrganizationUnits that are connected to the Assortment
86
99
  *
@@ -889,6 +902,19 @@ A ShippingMethod, OrganizationUnit and Priority are required
889
902
  request?: EVA.Core.Management.CreatePaymentType;
890
903
  response?: EVA.Core.Management.CreatePaymentTypeResponse;
891
904
  }
905
+ /**
906
+ * Create a point awarding rule.
907
+ *
908
+ * @export
909
+ * @class CreatePointAwardingRule
910
+ * @implements {EvaService}
911
+ */
912
+ class CreatePointAwardingRule implements IEvaServiceDefinition {
913
+ name: string;
914
+ path: string;
915
+ request?: EVA.Core.Management.CreatePointAwardingRule;
916
+ response?: EVA.Core.Management.CreatePointAwardingRuleResponse;
917
+ }
892
918
  /**
893
919
  * Create a new PriceList
894
920
  *
@@ -2319,6 +2345,19 @@ File in state processing or processed can't be deleted due to generated financia
2319
2345
  request?: EVA.Core.Management.DeleteVisibilityGroupConfiguration;
2320
2346
  response?: EVA.Core.EmptyResponseMessage;
2321
2347
  }
2348
+ /**
2349
+ * Depos. Must be at least 1.
2350
+ *
2351
+ * @export
2352
+ * @class DepositLoyaltyPoints
2353
+ * @implements {EvaService}
2354
+ */
2355
+ class DepositLoyaltyPoints implements IEvaServiceDefinition {
2356
+ name: string;
2357
+ path: string;
2358
+ request?: EVA.Core.Management.DepositLoyaltyPoints;
2359
+ response?: EVA.Core.EmptyResponseMessage;
2360
+ }
2322
2361
  /**
2323
2362
  * Detaches functionalities from a role.
2324
2363
  *
@@ -2345,6 +2384,19 @@ File in state processing or processed can't be deleted due to generated financia
2345
2384
  request?: EVA.Core.Management.DisableDiscounts;
2346
2385
  response?: EVA.Core.EmptyResponseMessage;
2347
2386
  }
2387
+ /**
2388
+ * Disable a point awarding rule
2389
+ *
2390
+ * @export
2391
+ * @class DisablePointAwardingRule
2392
+ * @implements {EvaService}
2393
+ */
2394
+ class DisablePointAwardingRule implements IEvaServiceDefinition {
2395
+ name: string;
2396
+ path: string;
2397
+ request?: EVA.Core.Management.DisablePointAwardingRule;
2398
+ response?: EVA.Core.EmptyResponseMessage;
2399
+ }
2348
2400
  /**
2349
2401
  * Returns an Excel file that contains all products in an assortment, which can then be updated and reuploaded using UploadAssortmentProducts.
2350
2402
  *
@@ -2671,6 +2723,19 @@ A duplicated discount will not be Active and Verified.
2671
2723
  request?: EVA.Core.Management.EnableDiscounts;
2672
2724
  response?: EVA.Core.EmptyResponseMessage;
2673
2725
  }
2726
+ /**
2727
+ * Enable a point awarding rule
2728
+ *
2729
+ * @export
2730
+ * @class EnablePointAwardingRule
2731
+ * @implements {EvaService}
2732
+ */
2733
+ class EnablePointAwardingRule implements IEvaServiceDefinition {
2734
+ name: string;
2735
+ path: string;
2736
+ request?: EVA.Core.Management.EnablePointAwardingRule;
2737
+ response?: EVA.Core.EmptyResponseMessage;
2738
+ }
2674
2739
  /**
2675
2740
  * Export all Employees with their roles in an excel file
2676
2741
  *
@@ -3130,6 +3195,19 @@ If available a Description and/or DefaultValue will be returned
3130
3195
  request?: EVA.Core.Management.GetCheckoutOptionHandlers;
3131
3196
  response?: EVA.Core.Management.GetCheckoutOptionHandlersResponse;
3132
3197
  }
3198
+ /**
3199
+ * Get the CheckoutOptions
3200
+ *
3201
+ * @export
3202
+ * @class GetCheckoutOptions
3203
+ * @implements {EvaService}
3204
+ */
3205
+ class GetCheckoutOptions implements IEvaServiceDefinition {
3206
+ name: string;
3207
+ path: string;
3208
+ request?: EVA.Core.Management.GetCheckoutOptions;
3209
+ response?: EVA.Core.Management.GetCheckoutOptionsResponse;
3210
+ }
3133
3211
  /**
3134
3212
  * Gets an ClientApplication by its ID
3135
3213
  *
@@ -3237,6 +3315,19 @@ At this moment the supported DeviceTypes are:
3237
3315
  request?: EVA.Core.Management.GetCustomFieldTypes;
3238
3316
  response?: EVA.Core.Management.GetCustomFieldTypesResponse;
3239
3317
  }
3318
+ /**
3319
+ * Get all the custom fields for the given organization unit and type.
3320
+ *
3321
+ * @export
3322
+ * @class GetCustomFields
3323
+ * @implements {EvaService}
3324
+ */
3325
+ class GetCustomFields implements IEvaServiceDefinition {
3326
+ name: string;
3327
+ path: string;
3328
+ request?: EVA.Core.Management.GetCustomFields;
3329
+ response?: EVA.Core.Management.GetCustomFieldsResponse;
3330
+ }
3240
3331
  /**
3241
3332
  * TODO: Needs documentation
3242
3333
  *
@@ -3458,6 +3549,32 @@ At this moment the supported DeviceTypes are:
3458
3549
  request?: EVA.Core.Management.GetLedgerClasses;
3459
3550
  response?: EVA.Core.Management.GetLedgerClassesResponse;
3460
3551
  }
3552
+ /**
3553
+ * Get the available point policies
3554
+ *
3555
+ * @export
3556
+ * @class GetLoyaltyPointPolicies
3557
+ * @implements {EvaService}
3558
+ */
3559
+ class GetLoyaltyPointPolicies implements IEvaServiceDefinition {
3560
+ name: string;
3561
+ path: string;
3562
+ request?: EVA.Core.Management.GetLoyaltyPointPolicies;
3563
+ response?: EVA.Core.Management.GetLoyaltyPointPoliciesResponse;
3564
+ }
3565
+ /**
3566
+ * Get a LoyaltyProgram
3567
+ *
3568
+ * @export
3569
+ * @class GetLoyaltyProgram
3570
+ * @implements {EvaService}
3571
+ */
3572
+ class GetLoyaltyProgram implements IEvaServiceDefinition {
3573
+ name: string;
3574
+ path: string;
3575
+ request?: EVA.Core.Management.GetLoyaltyProgram;
3576
+ response?: EVA.Core.Management.GetLoyaltyProgramResponse;
3577
+ }
3461
3578
  /**
3462
3579
  * Get the available loyalty program handlers
3463
3580
  *
@@ -3653,6 +3770,19 @@ At this moment the supported DeviceTypes are:
3653
3770
  request?: EVA.Core.Management.GetPaymentTypesForFilter;
3654
3771
  response?: EVA.Core.Management.GetPaymentTypesForFilterResponse;
3655
3772
  }
3773
+ /**
3774
+ * Get loyalty point rule.
3775
+ *
3776
+ * @export
3777
+ * @class GetPointAwardingRule
3778
+ * @implements {EvaService}
3779
+ */
3780
+ class GetPointAwardingRule implements IEvaServiceDefinition {
3781
+ name: string;
3782
+ path: string;
3783
+ request?: EVA.Core.Management.GetPointAwardingRule;
3784
+ response?: EVA.Core.Management.GetPointAwardingRuleResponse;
3785
+ }
3656
3786
  /**
3657
3787
  * Get a PriceListAdjustment
3658
3788
  *
@@ -3846,19 +3976,6 @@ These handlers are custom build to fetch values for ProductRequirements from ext
3846
3976
  request?: EVA.Core.Management.GetRepair;
3847
3977
  response?: EVA.Core.Management.GetRepairResponse;
3848
3978
  }
3849
- /**
3850
- * Get all return reasons
3851
- *
3852
- * @export
3853
- * @class GetReturnReasons
3854
- * @implements {EvaService}
3855
- */
3856
- class GetReturnReasons implements IEvaServiceDefinition {
3857
- name: string;
3858
- path: string;
3859
- request?: EVA.Core.Management.GetReturnReasons;
3860
- response?: EVA.Core.Management.GetReturnReasonsResponse;
3861
- }
3862
3979
  /**
3863
3980
  * Get the reasons by type.
3864
3981
  *
@@ -4171,6 +4288,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
4171
4288
  request?: EVA.Core.Management.GetVisibilityGroupConfiguration;
4172
4289
  response?: EVA.Core.Management.GetVisibilityGroupConfigurationResponse;
4173
4290
  }
4291
+ /**
4292
+ * Get the wishlist by ID.
4293
+ *
4294
+ * @export
4295
+ * @class GetWishlist
4296
+ * @implements {EvaService}
4297
+ */
4298
+ class GetWishlist implements IEvaServiceDefinition {
4299
+ name: string;
4300
+ path: string;
4301
+ request?: EVA.Core.Management.GetWishlist;
4302
+ response?: EVA.Core.Management.GetWishlistResponse;
4303
+ }
4174
4304
  /**
4175
4305
  * Batch update/create settings through an Excel file (file can be retrieved by calling ExportSettings)
4176
4306
  *
@@ -4641,8 +4771,6 @@ or to get a specific product in an assortment by filtering on both.
4641
4771
  }
4642
4772
  /**
4643
4773
  * List the LoyaltyPrograms
4644
-
4645
- `LoyaltyProgram`: an item that describes the loyalty program properties
4646
4774
  *
4647
4775
  * @export
4648
4776
  * @class ListLoyaltyPrograms
@@ -4918,6 +5046,19 @@ All available filters are typed in the PageConfig.Filter property.
4918
5046
  request?: EVA.Core.Management.ListPaymentTypes;
4919
5047
  response?: EVA.Core.Management.ListPaymentTypesResponse;
4920
5048
  }
5049
+ /**
5050
+ * List loyalty point rules. Returns a paged response.
5051
+ *
5052
+ * @export
5053
+ * @class ListPointAwardingRules
5054
+ * @implements {EvaService}
5055
+ */
5056
+ class ListPointAwardingRules implements IEvaServiceDefinition {
5057
+ name: string;
5058
+ path: string;
5059
+ request?: EVA.Core.Management.ListPointAwardingRules;
5060
+ response?: EVA.Core.Management.ListPointAwardingRulesResponse;
5061
+ }
4921
5062
  /**
4922
5063
  * List the PriceListAdjustments
4923
5064
  *
@@ -5440,6 +5581,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
5440
5581
  request?: EVA.Core.Management.ListVisibilityGroups;
5441
5582
  response?: EVA.Core.Management.ListVisibilityGroupsResponse;
5442
5583
  }
5584
+ /**
5585
+ * List the wishlists.
5586
+ *
5587
+ * @export
5588
+ * @class ListWishlists
5589
+ * @implements {EvaService}
5590
+ */
5591
+ class ListWishlists implements IEvaServiceDefinition {
5592
+ name: string;
5593
+ path: string;
5594
+ request?: EVA.Core.Management.ListWishlists;
5595
+ response?: EVA.Core.Management.ListWishlistsResponse;
5596
+ }
5443
5597
  /**
5444
5598
  * Creates a localized Name and Description for the OpenCashDrawerReason.
5445
5599
  Language is required, Country is optional.
@@ -6504,6 +6658,19 @@ A ShippingMethod, OrganizationUnit and Priority are required
6504
6658
  request?: EVA.Core.Management.UpdatePaymentType;
6505
6659
  response?: EVA.Core.EmptyResponseMessage;
6506
6660
  }
6661
+ /**
6662
+ * Update a point awarding rule
6663
+ *
6664
+ * @export
6665
+ * @class UpdatePointAwardingRule
6666
+ * @implements {EvaService}
6667
+ */
6668
+ class UpdatePointAwardingRule implements IEvaServiceDefinition {
6669
+ name: string;
6670
+ path: string;
6671
+ request?: EVA.Core.Management.UpdatePointAwardingRule;
6672
+ response?: EVA.Core.EmptyResponseMessage;
6673
+ }
6507
6674
  /**
6508
6675
  * Update an existing PriceList
6509
6676
  *