@springtree/eva-services-core-management 2.16.5 → 2.18.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.
@@ -6466,6 +6466,90 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6466
6466
  request?: EVA.Core.Management.PushCase;
6467
6467
  response?: EVA.Core.Management.PushCaseResponse;
6468
6468
  }
6469
+ /**
6470
+ * Push multiple companies at once.
6471
+ If a company doesn't exist it will be created, otherwise is will be updated.
6472
+ There is a limit (1000) of companies that can be pushed a once.
6473
+ *
6474
+ * @export
6475
+ * @class PushCompanies
6476
+ * @implements {EvaService}
6477
+ */
6478
+ class PushCompanies implements IEvaServiceDefinition {
6479
+ name: string;
6480
+ path: string;
6481
+ request?: EVA.Core.Management.PushCompanies;
6482
+ response?: EVA.Core.Management.PushCompaniesResponse;
6483
+ }
6484
+ /**
6485
+ * Push multiple companies at once.
6486
+ If a company doesn't exist it will be created, otherwise is will be updated.
6487
+ There is a limit (1000) of companies that can be pushed a once.
6488
+ *
6489
+ * @export
6490
+ * @class PushCompanies_Async
6491
+ * @implements {EvaService}
6492
+ */
6493
+ class PushCompanies_Async implements IEvaServiceDefinition {
6494
+ name: string;
6495
+ path: string;
6496
+ request?: EVA.Core.Management.PushCompanies;
6497
+ response?: EVA.Core.AsyncRequestResponse;
6498
+ }
6499
+ /**
6500
+ * Push multiple companies at once.
6501
+ If a company doesn't exist it will be created, otherwise is will be updated.
6502
+ There is a limit (1000) of companies that can be pushed a once.
6503
+ *
6504
+ * @export
6505
+ * @class PushCompanies_AsyncResult
6506
+ * @implements {EvaService}
6507
+ */
6508
+ class PushCompanies_AsyncResult implements IEvaServiceDefinition {
6509
+ name: string;
6510
+ path: string;
6511
+ request?: EVA.Core.AsyncRequestResultRequest;
6512
+ response?: EVA.Core.Management.PushCompaniesResponse;
6513
+ }
6514
+ /**
6515
+ * Push a company. If it doesn't exist it will be created, otherwise is will be updated.
6516
+ *
6517
+ * @export
6518
+ * @class PushCompany
6519
+ * @implements {EvaService}
6520
+ */
6521
+ class PushCompany implements IEvaServiceDefinition {
6522
+ name: string;
6523
+ path: string;
6524
+ request?: EVA.Core.Management.PushCompany;
6525
+ response?: EVA.Core.Management.PushCompanyResponse;
6526
+ }
6527
+ /**
6528
+ * Push a company. If it doesn't exist it will be created, otherwise is will be updated.
6529
+ *
6530
+ * @export
6531
+ * @class PushCompany_Async
6532
+ * @implements {EvaService}
6533
+ */
6534
+ class PushCompany_Async implements IEvaServiceDefinition {
6535
+ name: string;
6536
+ path: string;
6537
+ request?: EVA.Core.Management.PushCompany;
6538
+ response?: EVA.Core.AsyncRequestResponse;
6539
+ }
6540
+ /**
6541
+ * Push a company. If it doesn't exist it will be created, otherwise is will be updated.
6542
+ *
6543
+ * @export
6544
+ * @class PushCompany_AsyncResult
6545
+ * @implements {EvaService}
6546
+ */
6547
+ class PushCompany_AsyncResult implements IEvaServiceDefinition {
6548
+ name: string;
6549
+ path: string;
6550
+ request?: EVA.Core.AsyncRequestResultRequest;
6551
+ response?: EVA.Core.Management.PushCompanyResponse;
6552
+ }
6469
6553
  /**
6470
6554
  * Push a DiscountCoupon
6471
6555
  *
@@ -6656,6 +6740,51 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
6656
6740
  request?: EVA.Core.Management.RebalanceLoyaltyPoints;
6657
6741
  response?: EVA.Core.EmptyResponseMessage;
6658
6742
  }
6743
+ /**
6744
+ * Asynchronously rebalance loyalty points of multiple users for a loyalty program.
6745
+ This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
6746
+ The maximum amount of users that can be rebalanced in a single request is 10,000.
6747
+ *
6748
+ * @export
6749
+ * @class RebalanceLoyaltyPointsForUsers
6750
+ * @implements {EvaService}
6751
+ */
6752
+ class RebalanceLoyaltyPointsForUsers implements IEvaServiceDefinition {
6753
+ name: string;
6754
+ path: string;
6755
+ request?: EVA.Core.Management.RebalanceLoyaltyPointsForUsers;
6756
+ response?: EVA.Core.Management.RebalanceLoyaltyPointsForUsersResponse;
6757
+ }
6758
+ /**
6759
+ * Asynchronously rebalance loyalty points of multiple users for a loyalty program.
6760
+ This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
6761
+ The maximum amount of users that can be rebalanced in a single request is 10,000.
6762
+ *
6763
+ * @export
6764
+ * @class RebalanceLoyaltyPointsForUsers_Async
6765
+ * @implements {EvaService}
6766
+ */
6767
+ class RebalanceLoyaltyPointsForUsers_Async implements IEvaServiceDefinition {
6768
+ name: string;
6769
+ path: string;
6770
+ request?: EVA.Core.Management.RebalanceLoyaltyPointsForUsers;
6771
+ response?: EVA.Core.AsyncRequestResponse;
6772
+ }
6773
+ /**
6774
+ * Asynchronously rebalance loyalty points of multiple users for a loyalty program.
6775
+ This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
6776
+ The maximum amount of users that can be rebalanced in a single request is 10,000.
6777
+ *
6778
+ * @export
6779
+ * @class RebalanceLoyaltyPointsForUsers_AsyncResult
6780
+ * @implements {EvaService}
6781
+ */
6782
+ class RebalanceLoyaltyPointsForUsers_AsyncResult implements IEvaServiceDefinition {
6783
+ name: string;
6784
+ path: string;
6785
+ request?: EVA.Core.AsyncRequestResultRequest;
6786
+ response?: EVA.Core.Management.RebalanceLoyaltyPointsForUsersResponse;
6787
+ }
6659
6788
  /**
6660
6789
  * Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
6661
6790
  *