@springtree/eva-services-core-management 1.92.0 → 1.94.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.
@@ -2292,7 +2292,7 @@ When it's SupplierBarcode all matching barcodes will be removed
2292
2292
  response?: EVA.Core.EmptyResponseMessage;
2293
2293
  }
2294
2294
  /**
2295
- * Delete a Subscription
2295
+ * Delete a Subscription.
2296
2296
  *
2297
2297
  * @export
2298
2298
  * @class DeleteSubscription
@@ -2450,7 +2450,7 @@ File in state processing or processed can't be deleted due to generated financia
2450
2450
  response?: EVA.Core.EmptyResponseMessage;
2451
2451
  }
2452
2452
  /**
2453
- * Depos. Must be at least 1.
2453
+ * Deposit loyalty points to a user
2454
2454
  *
2455
2455
  * @export
2456
2456
  * @class DepositLoyaltyPoints
@@ -2514,6 +2514,19 @@ File in state processing or processed can't be deleted due to generated financia
2514
2514
  request?: EVA.Core.Management.DownloadAssortmentProducts;
2515
2515
  response?: EVA.Core.ResourceResponseMessage;
2516
2516
  }
2517
+ /**
2518
+ * Exports the coupons for the given discount to Excel.
2519
+ *
2520
+ * @export
2521
+ * @class DownloadCouponExcel
2522
+ * @implements {EvaService}
2523
+ */
2524
+ class DownloadCouponExcel implements IEvaServiceDefinition {
2525
+ name: string;
2526
+ path: string;
2527
+ request?: EVA.Core.Management.DownloadCouponExcel;
2528
+ response?: EVA.Core.ResourceWithBlobIDResponseMessage;
2529
+ }
2517
2530
  /**
2518
2531
  * Download template to upload an excel with coupons.
2519
2532
  *
@@ -2527,6 +2540,32 @@ File in state processing or processed can't be deleted due to generated financia
2527
2540
  request?: EVA.Core.Management.DownloadCouponExcelTemplate;
2528
2541
  response?: EVA.Core.ResourceWithBlobIDResponseMessage;
2529
2542
  }
2543
+ /**
2544
+ * Exports the coupons for the given discount to Excel.
2545
+ *
2546
+ * @export
2547
+ * @class DownloadCouponExcel_Async
2548
+ * @implements {EvaService}
2549
+ */
2550
+ class DownloadCouponExcel_Async implements IEvaServiceDefinition {
2551
+ name: string;
2552
+ path: string;
2553
+ request?: EVA.Core.Management.DownloadCouponExcel;
2554
+ response?: EVA.Core.AsyncRequestResponse;
2555
+ }
2556
+ /**
2557
+ * Exports the coupons for the given discount to Excel.
2558
+ *
2559
+ * @export
2560
+ * @class DownloadCouponExcel_AsyncResult
2561
+ * @implements {EvaService}
2562
+ */
2563
+ class DownloadCouponExcel_AsyncResult implements IEvaServiceDefinition {
2564
+ name: string;
2565
+ path: string;
2566
+ request?: EVA.Core.AsyncRequestResultRequest;
2567
+ response?: EVA.Core.ResourceWithBlobIDResponseMessage;
2568
+ }
2530
2569
  /**
2531
2570
  * Download an Excel sample which can be filled with customers. The populated excel can be uploaded through the `UploadCustomers` service.
2532
2571
  *
@@ -2867,7 +2906,7 @@ A duplicated discount will not be Active and Verified.
2867
2906
  response?: EVA.Core.EmptyResponseMessage;
2868
2907
  }
2869
2908
  /**
2870
- * TODO: Needs documentation
2909
+ * You can only export up to 100 products at a time.
2871
2910
  *
2872
2911
  * @export
2873
2912
  * @class ExportProductCostPriceLedgerSummary
@@ -5703,6 +5742,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
5703
5742
  request?: EVA.Core.Management.ListStockMutationUnitCostSourceLedger;
5704
5743
  response?: EVA.Core.Management.ListStockMutationUnitCostSourceLedgerResponse;
5705
5744
  }
5745
+ /**
5746
+ * List all users attached to a subscription. Requires View rights on Subscriptions and Customers functionalities.
5747
+ *
5748
+ * @export
5749
+ * @class ListSubscriptionUsers
5750
+ * @implements {EvaService}
5751
+ */
5752
+ class ListSubscriptionUsers implements IEvaServiceDefinition {
5753
+ name: string;
5754
+ path: string;
5755
+ request?: EVA.Core.Management.ListSubscriptionUsers;
5756
+ response?: EVA.Core.Management.ListSubscriptionUsersResponse;
5757
+ }
5706
5758
  /**
5707
5759
  * List the Subscriptions
5708
5760
  *
@@ -6003,6 +6055,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
6003
6055
  request?: EVA.Core.Management.PushUserSubscription;
6004
6056
  response?: EVA.Core.EmptyResponseMessage;
6005
6057
  }
6058
+ /**
6059
+ * Rebalance loyalty points of a user
6060
+ *
6061
+ * @export
6062
+ * @class RebalanceLoyaltyPoints
6063
+ * @implements {EvaService}
6064
+ */
6065
+ class RebalanceLoyaltyPoints implements IEvaServiceDefinition {
6066
+ name: string;
6067
+ path: string;
6068
+ request?: EVA.Core.Management.RebalanceLoyaltyPoints;
6069
+ response?: EVA.Core.EmptyResponseMessage;
6070
+ }
6006
6071
  /**
6007
6072
  * Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
6008
6073
  *
@@ -7899,5 +7964,18 @@ The service will return an error if the same user without the right 'DiscountSel
7899
7964
  request?: EVA.Core.Management.VerifyDiscount;
7900
7965
  response?: EVA.Core.EmptyResponseMessage;
7901
7966
  }
7967
+ /**
7968
+ * Withdraw loyalty points from a user
7969
+ *
7970
+ * @export
7971
+ * @class WithdrawLoyaltyPoints
7972
+ * @implements {EvaService}
7973
+ */
7974
+ class WithdrawLoyaltyPoints implements IEvaServiceDefinition {
7975
+ name: string;
7976
+ path: string;
7977
+ request?: EVA.Core.Management.WithdrawLoyaltyPoints;
7978
+ response?: EVA.Core.EmptyResponseMessage;
7979
+ }
7902
7980
  }
7903
7981
  //# sourceMappingURL=EVA.Core.Management.Services.d.ts.map