@springtree/eva-services-core-management 1.91.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 +81 -16
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +87 -17
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +87 -17
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +87 -17
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -2016,6 +2016,19 @@ It's not possible to delete a scope that is still in use by an OrganizationUnitS
|
|
|
2016
2016
|
request?: EVA.Core.Management.DeletePaymentType;
|
|
2017
2017
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2018
2018
|
}
|
|
2019
|
+
/**
|
|
2020
|
+
* Delete a PriceList
|
|
2021
|
+
*
|
|
2022
|
+
* @export
|
|
2023
|
+
* @class DeletePriceList
|
|
2024
|
+
* @implements {EvaService}
|
|
2025
|
+
*/
|
|
2026
|
+
class DeletePriceList implements IEvaServiceDefinition {
|
|
2027
|
+
name: string;
|
|
2028
|
+
path: string;
|
|
2029
|
+
request?: EVA.Core.Management.DeletePriceList;
|
|
2030
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2031
|
+
}
|
|
2019
2032
|
/**
|
|
2020
2033
|
* Delete an existing PriceListAdjustment
|
|
2021
2034
|
*
|
|
@@ -2279,7 +2292,7 @@ When it's SupplierBarcode all matching barcodes will be removed
|
|
|
2279
2292
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2280
2293
|
}
|
|
2281
2294
|
/**
|
|
2282
|
-
* Delete a Subscription
|
|
2295
|
+
* Delete a Subscription.
|
|
2283
2296
|
*
|
|
2284
2297
|
* @export
|
|
2285
2298
|
* @class DeleteSubscription
|
|
@@ -2437,7 +2450,7 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2437
2450
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2438
2451
|
}
|
|
2439
2452
|
/**
|
|
2440
|
-
*
|
|
2453
|
+
* Deposit loyalty points to a user
|
|
2441
2454
|
*
|
|
2442
2455
|
* @export
|
|
2443
2456
|
* @class DepositLoyaltyPoints
|
|
@@ -2854,7 +2867,7 @@ A duplicated discount will not be Active and Verified.
|
|
|
2854
2867
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2855
2868
|
}
|
|
2856
2869
|
/**
|
|
2857
|
-
*
|
|
2870
|
+
* You can only export up to 100 products at a time.
|
|
2858
2871
|
*
|
|
2859
2872
|
* @export
|
|
2860
2873
|
* @class ExportProductCostPriceLedgerSummary
|
|
@@ -3393,6 +3406,19 @@ At this moment the supported DeviceTypes are:
|
|
|
3393
3406
|
request?: EVA.Core.Management.GetCustomFieldByID;
|
|
3394
3407
|
response?: EVA.Core.Management.GetCustomFieldByIDResponse;
|
|
3395
3408
|
}
|
|
3409
|
+
/**
|
|
3410
|
+
* TODO: Needs documentation
|
|
3411
|
+
*
|
|
3412
|
+
* @export
|
|
3413
|
+
* @class GetCustomFieldMetadata
|
|
3414
|
+
* @implements {EvaService}
|
|
3415
|
+
*/
|
|
3416
|
+
class GetCustomFieldMetadata implements IEvaServiceDefinition {
|
|
3417
|
+
name: string;
|
|
3418
|
+
path: string;
|
|
3419
|
+
request?: EVA.Core.Management.GetCustomFieldMetadata;
|
|
3420
|
+
response?: EVA.Core.Management.GetCustomFieldMetadataResponse;
|
|
3421
|
+
}
|
|
3396
3422
|
/**
|
|
3397
3423
|
* Get the CustomFieldTypes
|
|
3398
3424
|
*
|
|
@@ -3562,19 +3588,6 @@ At this moment the supported DeviceTypes are:
|
|
|
3562
3588
|
request?: EVA.Core.Management.GetFraudItem;
|
|
3563
3589
|
response?: EVA.Core.Management.GetFraudItemResponse;
|
|
3564
3590
|
}
|
|
3565
|
-
/**
|
|
3566
|
-
* Retrieve the available and allocated functionalities for given user.
|
|
3567
|
-
*
|
|
3568
|
-
* @export
|
|
3569
|
-
* @class GetFunctionalitiesByUserID
|
|
3570
|
-
* @implements {EvaService}
|
|
3571
|
-
*/
|
|
3572
|
-
class GetFunctionalitiesByUserID implements IEvaServiceDefinition {
|
|
3573
|
-
name: string;
|
|
3574
|
-
path: string;
|
|
3575
|
-
request?: EVA.Core.Management.GetFunctionalitiesByUserID;
|
|
3576
|
-
response?: EVA.Core.Management.GetFunctionalitiesByUserIDResponse;
|
|
3577
|
-
}
|
|
3578
3591
|
/**
|
|
3579
3592
|
* Returns all available categories for functionalities
|
|
3580
3593
|
*
|
|
@@ -4793,6 +4806,19 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
4793
4806
|
request?: EVA.Core.Management.ListCustomFieldDataTypesOperators;
|
|
4794
4807
|
response?: EVA.Core.Management.ListCustomFieldDataTypeOperatorsResponse;
|
|
4795
4808
|
}
|
|
4809
|
+
/**
|
|
4810
|
+
* Get all eligibility fields for the given custom field type.
|
|
4811
|
+
*
|
|
4812
|
+
* @export
|
|
4813
|
+
* @class ListCustomFieldEligibilityScripts
|
|
4814
|
+
* @implements {EvaService}
|
|
4815
|
+
*/
|
|
4816
|
+
class ListCustomFieldEligibilityScripts implements IEvaServiceDefinition {
|
|
4817
|
+
name: string;
|
|
4818
|
+
path: string;
|
|
4819
|
+
request?: EVA.Core.Management.ListCustomFieldEligibilityScripts;
|
|
4820
|
+
response?: EVA.Core.Management.ListCustomFieldEligibilityScriptsResponse;
|
|
4821
|
+
}
|
|
4796
4822
|
/**
|
|
4797
4823
|
* List options for custom fields
|
|
4798
4824
|
*
|
|
@@ -5677,6 +5703,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
5677
5703
|
request?: EVA.Core.Management.ListStockMutationUnitCostSourceLedger;
|
|
5678
5704
|
response?: EVA.Core.Management.ListStockMutationUnitCostSourceLedgerResponse;
|
|
5679
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
|
+
}
|
|
5680
5719
|
/**
|
|
5681
5720
|
* List the Subscriptions
|
|
5682
5721
|
*
|
|
@@ -5977,6 +6016,19 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
5977
6016
|
request?: EVA.Core.Management.PushUserSubscription;
|
|
5978
6017
|
response?: EVA.Core.EmptyResponseMessage;
|
|
5979
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
|
+
}
|
|
5980
6032
|
/**
|
|
5981
6033
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
5982
6034
|
*
|
|
@@ -7873,5 +7925,18 @@ The service will return an error if the same user without the right 'DiscountSel
|
|
|
7873
7925
|
request?: EVA.Core.Management.VerifyDiscount;
|
|
7874
7926
|
response?: EVA.Core.EmptyResponseMessage;
|
|
7875
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
|
+
}
|
|
7876
7941
|
}
|
|
7877
7942
|
//# sourceMappingURL=EVA.Core.Management.Services.d.ts.map
|