@springtree/eva-services-core-management 1.92.0 → 1.93.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.
- package/lib/EVA.Core.Management.Services.d.ts +42 -3
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +45 -3
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +45 -3
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +45 -3
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
-
*
|
|
2453
|
+
* Deposit loyalty points to a user
|
|
2454
2454
|
*
|
|
2455
2455
|
* @export
|
|
2456
2456
|
* @class DepositLoyaltyPoints
|
|
@@ -2867,7 +2867,7 @@ A duplicated discount will not be Active and Verified.
|
|
|
2867
2867
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2868
2868
|
}
|
|
2869
2869
|
/**
|
|
2870
|
-
*
|
|
2870
|
+
* You can only export up to 100 products at a time.
|
|
2871
2871
|
*
|
|
2872
2872
|
* @export
|
|
2873
2873
|
* @class ExportProductCostPriceLedgerSummary
|
|
@@ -5703,6 +5703,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
5703
5703
|
request?: EVA.Core.Management.ListStockMutationUnitCostSourceLedger;
|
|
5704
5704
|
response?: EVA.Core.Management.ListStockMutationUnitCostSourceLedgerResponse;
|
|
5705
5705
|
}
|
|
5706
|
+
/**
|
|
5707
|
+
* List all users attached to a subscription. Requires View rights on Subscriptions and Customers functionalities.
|
|
5708
|
+
*
|
|
5709
|
+
* @export
|
|
5710
|
+
* @class ListSubscriptionUsers
|
|
5711
|
+
* @implements {EvaService}
|
|
5712
|
+
*/
|
|
5713
|
+
class ListSubscriptionUsers implements IEvaServiceDefinition {
|
|
5714
|
+
name: string;
|
|
5715
|
+
path: string;
|
|
5716
|
+
request?: EVA.Core.Management.ListSubscriptionUsers;
|
|
5717
|
+
response?: EVA.Core.Management.ListSubscriptionUsersResponse;
|
|
5718
|
+
}
|
|
5706
5719
|
/**
|
|
5707
5720
|
* List the Subscriptions
|
|
5708
5721
|
*
|
|
@@ -6003,6 +6016,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6003
6016
|
request?: EVA.Core.Management.PushUserSubscription;
|
|
6004
6017
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6005
6018
|
}
|
|
6019
|
+
/**
|
|
6020
|
+
* Rebalance loyalty points of a user
|
|
6021
|
+
*
|
|
6022
|
+
* @export
|
|
6023
|
+
* @class RebalanceLoyaltyPoints
|
|
6024
|
+
* @implements {EvaService}
|
|
6025
|
+
*/
|
|
6026
|
+
class RebalanceLoyaltyPoints implements IEvaServiceDefinition {
|
|
6027
|
+
name: string;
|
|
6028
|
+
path: string;
|
|
6029
|
+
request?: EVA.Core.Management.RebalanceLoyaltyPoints;
|
|
6030
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6031
|
+
}
|
|
6006
6032
|
/**
|
|
6007
6033
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6008
6034
|
*
|
|
@@ -7899,5 +7925,18 @@ The service will return an error if the same user without the right 'DiscountSel
|
|
|
7899
7925
|
request?: EVA.Core.Management.VerifyDiscount;
|
|
7900
7926
|
response?: EVA.Core.EmptyResponseMessage;
|
|
7901
7927
|
}
|
|
7928
|
+
/**
|
|
7929
|
+
* Withdraw loyalty points from a user
|
|
7930
|
+
*
|
|
7931
|
+
* @export
|
|
7932
|
+
* @class WithdrawLoyaltyPoints
|
|
7933
|
+
* @implements {EvaService}
|
|
7934
|
+
*/
|
|
7935
|
+
class WithdrawLoyaltyPoints implements IEvaServiceDefinition {
|
|
7936
|
+
name: string;
|
|
7937
|
+
path: string;
|
|
7938
|
+
request?: EVA.Core.Management.WithdrawLoyaltyPoints;
|
|
7939
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7940
|
+
}
|
|
7902
7941
|
}
|
|
7903
7942
|
//# sourceMappingURL=EVA.Core.Management.Services.d.ts.map
|