@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
|
@@ -2166,6 +2166,20 @@ It's not possible to delete a scope that is still in use by an OrganizationUnitS
|
|
|
2166
2166
|
}
|
|
2167
2167
|
}
|
|
2168
2168
|
CoreManagement.DeletePaymentType = DeletePaymentType;
|
|
2169
|
+
/**
|
|
2170
|
+
* Delete a PriceList
|
|
2171
|
+
*
|
|
2172
|
+
* @export
|
|
2173
|
+
* @class DeletePriceList
|
|
2174
|
+
* @implements {EvaService}
|
|
2175
|
+
*/
|
|
2176
|
+
class DeletePriceList {
|
|
2177
|
+
constructor() {
|
|
2178
|
+
this.name = 'CoreManagement:DeletePriceList';
|
|
2179
|
+
this.path = '/message/DeletePriceList';
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
CoreManagement.DeletePriceList = DeletePriceList;
|
|
2169
2183
|
/**
|
|
2170
2184
|
* Delete an existing PriceListAdjustment
|
|
2171
2185
|
*
|
|
@@ -2449,7 +2463,7 @@ When it's SupplierBarcode all matching barcodes will be removed
|
|
|
2449
2463
|
}
|
|
2450
2464
|
CoreManagement.DeleteStockMutationReason = DeleteStockMutationReason;
|
|
2451
2465
|
/**
|
|
2452
|
-
* Delete a Subscription
|
|
2466
|
+
* Delete a Subscription.
|
|
2453
2467
|
*
|
|
2454
2468
|
* @export
|
|
2455
2469
|
* @class DeleteSubscription
|
|
@@ -2619,7 +2633,7 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2619
2633
|
}
|
|
2620
2634
|
CoreManagement.DeleteVisibilityGroupConfiguration = DeleteVisibilityGroupConfiguration;
|
|
2621
2635
|
/**
|
|
2622
|
-
*
|
|
2636
|
+
* Deposit loyalty points to a user
|
|
2623
2637
|
*
|
|
2624
2638
|
* @export
|
|
2625
2639
|
* @class DepositLoyaltyPoints
|
|
@@ -3068,7 +3082,7 @@ A duplicated discount will not be Active and Verified.
|
|
|
3068
3082
|
}
|
|
3069
3083
|
CoreManagement.ExportGeneralLedgerSummaryToExcel = ExportGeneralLedgerSummaryToExcel;
|
|
3070
3084
|
/**
|
|
3071
|
-
*
|
|
3085
|
+
* You can only export up to 100 products at a time.
|
|
3072
3086
|
*
|
|
3073
3087
|
* @export
|
|
3074
3088
|
* @class ExportProductCostPriceLedgerSummary
|
|
@@ -3648,6 +3662,20 @@ At this moment the supported DeviceTypes are:
|
|
|
3648
3662
|
}
|
|
3649
3663
|
}
|
|
3650
3664
|
CoreManagement.GetCustomFieldByID = GetCustomFieldByID;
|
|
3665
|
+
/**
|
|
3666
|
+
* TODO: Needs documentation
|
|
3667
|
+
*
|
|
3668
|
+
* @export
|
|
3669
|
+
* @class GetCustomFieldMetadata
|
|
3670
|
+
* @implements {EvaService}
|
|
3671
|
+
*/
|
|
3672
|
+
class GetCustomFieldMetadata {
|
|
3673
|
+
constructor() {
|
|
3674
|
+
this.name = 'CoreManagement:GetCustomFieldMetadata';
|
|
3675
|
+
this.path = '/message/GetCustomFieldMetadata';
|
|
3676
|
+
}
|
|
3677
|
+
}
|
|
3678
|
+
CoreManagement.GetCustomFieldMetadata = GetCustomFieldMetadata;
|
|
3651
3679
|
/**
|
|
3652
3680
|
* Get the CustomFieldTypes
|
|
3653
3681
|
*
|
|
@@ -3830,20 +3858,6 @@ At this moment the supported DeviceTypes are:
|
|
|
3830
3858
|
}
|
|
3831
3859
|
}
|
|
3832
3860
|
CoreManagement.GetFraudItem = GetFraudItem;
|
|
3833
|
-
/**
|
|
3834
|
-
* Retrieve the available and allocated functionalities for given user.
|
|
3835
|
-
*
|
|
3836
|
-
* @export
|
|
3837
|
-
* @class GetFunctionalitiesByUserID
|
|
3838
|
-
* @implements {EvaService}
|
|
3839
|
-
*/
|
|
3840
|
-
class GetFunctionalitiesByUserID {
|
|
3841
|
-
constructor() {
|
|
3842
|
-
this.name = 'CoreManagement:GetFunctionalitiesByUserID';
|
|
3843
|
-
this.path = '/message/GetFunctionalitiesByUserID';
|
|
3844
|
-
}
|
|
3845
|
-
}
|
|
3846
|
-
CoreManagement.GetFunctionalitiesByUserID = GetFunctionalitiesByUserID;
|
|
3847
3861
|
/**
|
|
3848
3862
|
* Returns all available categories for functionalities
|
|
3849
3863
|
*
|
|
@@ -5154,6 +5168,20 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5154
5168
|
}
|
|
5155
5169
|
}
|
|
5156
5170
|
CoreManagement.ListCustomFieldDataTypesOperators = ListCustomFieldDataTypesOperators;
|
|
5171
|
+
/**
|
|
5172
|
+
* Get all eligibility fields for the given custom field type.
|
|
5173
|
+
*
|
|
5174
|
+
* @export
|
|
5175
|
+
* @class ListCustomFieldEligibilityScripts
|
|
5176
|
+
* @implements {EvaService}
|
|
5177
|
+
*/
|
|
5178
|
+
class ListCustomFieldEligibilityScripts {
|
|
5179
|
+
constructor() {
|
|
5180
|
+
this.name = 'CoreManagement:ListCustomFieldEligibilityScripts';
|
|
5181
|
+
this.path = '/message/ListCustomFieldEligibilityScripts';
|
|
5182
|
+
}
|
|
5183
|
+
}
|
|
5184
|
+
CoreManagement.ListCustomFieldEligibilityScripts = ListCustomFieldEligibilityScripts;
|
|
5157
5185
|
/**
|
|
5158
5186
|
* List options for custom fields
|
|
5159
5187
|
*
|
|
@@ -6102,6 +6130,20 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
6102
6130
|
}
|
|
6103
6131
|
}
|
|
6104
6132
|
CoreManagement.ListStockMutationUnitCostSourceLedger = ListStockMutationUnitCostSourceLedger;
|
|
6133
|
+
/**
|
|
6134
|
+
* List all users attached to a subscription. Requires View rights on Subscriptions and Customers functionalities.
|
|
6135
|
+
*
|
|
6136
|
+
* @export
|
|
6137
|
+
* @class ListSubscriptionUsers
|
|
6138
|
+
* @implements {EvaService}
|
|
6139
|
+
*/
|
|
6140
|
+
class ListSubscriptionUsers {
|
|
6141
|
+
constructor() {
|
|
6142
|
+
this.name = 'CoreManagement:ListSubscriptionUsers';
|
|
6143
|
+
this.path = '/message/ListSubscriptionUsers';
|
|
6144
|
+
}
|
|
6145
|
+
}
|
|
6146
|
+
CoreManagement.ListSubscriptionUsers = ListSubscriptionUsers;
|
|
6105
6147
|
/**
|
|
6106
6148
|
* List the Subscriptions
|
|
6107
6149
|
*
|
|
@@ -6424,6 +6466,20 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6424
6466
|
}
|
|
6425
6467
|
}
|
|
6426
6468
|
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6469
|
+
/**
|
|
6470
|
+
* Rebalance loyalty points of a user
|
|
6471
|
+
*
|
|
6472
|
+
* @export
|
|
6473
|
+
* @class RebalanceLoyaltyPoints
|
|
6474
|
+
* @implements {EvaService}
|
|
6475
|
+
*/
|
|
6476
|
+
class RebalanceLoyaltyPoints {
|
|
6477
|
+
constructor() {
|
|
6478
|
+
this.name = 'CoreManagement:RebalanceLoyaltyPoints';
|
|
6479
|
+
this.path = '/message/RebalanceLoyaltyPoints';
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
6482
|
+
CoreManagement.RebalanceLoyaltyPoints = RebalanceLoyaltyPoints;
|
|
6427
6483
|
/**
|
|
6428
6484
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6429
6485
|
*
|
|
@@ -8458,6 +8514,20 @@ The service will return an error if the same user without the right 'DiscountSel
|
|
|
8458
8514
|
}
|
|
8459
8515
|
}
|
|
8460
8516
|
CoreManagement.VerifyDiscount = VerifyDiscount;
|
|
8517
|
+
/**
|
|
8518
|
+
* Withdraw loyalty points from a user
|
|
8519
|
+
*
|
|
8520
|
+
* @export
|
|
8521
|
+
* @class WithdrawLoyaltyPoints
|
|
8522
|
+
* @implements {EvaService}
|
|
8523
|
+
*/
|
|
8524
|
+
class WithdrawLoyaltyPoints {
|
|
8525
|
+
constructor() {
|
|
8526
|
+
this.name = 'CoreManagement:WithdrawLoyaltyPoints';
|
|
8527
|
+
this.path = '/message/WithdrawLoyaltyPoints';
|
|
8528
|
+
}
|
|
8529
|
+
}
|
|
8530
|
+
CoreManagement.WithdrawLoyaltyPoints = WithdrawLoyaltyPoints;
|
|
8461
8531
|
})(CoreManagement || (CoreManagement = {}));
|
|
8462
8532
|
|
|
8463
8533
|
export { CoreManagement };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-services-core-management.es5.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eva-services-core-management.es5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -2172,6 +2172,20 @@
|
|
|
2172
2172
|
}
|
|
2173
2173
|
}
|
|
2174
2174
|
CoreManagement.DeletePaymentType = DeletePaymentType;
|
|
2175
|
+
/**
|
|
2176
|
+
* Delete a PriceList
|
|
2177
|
+
*
|
|
2178
|
+
* @export
|
|
2179
|
+
* @class DeletePriceList
|
|
2180
|
+
* @implements {EvaService}
|
|
2181
|
+
*/
|
|
2182
|
+
class DeletePriceList {
|
|
2183
|
+
constructor() {
|
|
2184
|
+
this.name = 'CoreManagement:DeletePriceList';
|
|
2185
|
+
this.path = '/message/DeletePriceList';
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
CoreManagement.DeletePriceList = DeletePriceList;
|
|
2175
2189
|
/**
|
|
2176
2190
|
* Delete an existing PriceListAdjustment
|
|
2177
2191
|
*
|
|
@@ -2455,7 +2469,7 @@
|
|
|
2455
2469
|
}
|
|
2456
2470
|
CoreManagement.DeleteStockMutationReason = DeleteStockMutationReason;
|
|
2457
2471
|
/**
|
|
2458
|
-
* Delete a Subscription
|
|
2472
|
+
* Delete a Subscription.
|
|
2459
2473
|
*
|
|
2460
2474
|
* @export
|
|
2461
2475
|
* @class DeleteSubscription
|
|
@@ -2625,7 +2639,7 @@
|
|
|
2625
2639
|
}
|
|
2626
2640
|
CoreManagement.DeleteVisibilityGroupConfiguration = DeleteVisibilityGroupConfiguration;
|
|
2627
2641
|
/**
|
|
2628
|
-
*
|
|
2642
|
+
* Deposit loyalty points to a user
|
|
2629
2643
|
*
|
|
2630
2644
|
* @export
|
|
2631
2645
|
* @class DepositLoyaltyPoints
|
|
@@ -3074,7 +3088,7 @@
|
|
|
3074
3088
|
}
|
|
3075
3089
|
CoreManagement.ExportGeneralLedgerSummaryToExcel = ExportGeneralLedgerSummaryToExcel;
|
|
3076
3090
|
/**
|
|
3077
|
-
*
|
|
3091
|
+
* You can only export up to 100 products at a time.
|
|
3078
3092
|
*
|
|
3079
3093
|
* @export
|
|
3080
3094
|
* @class ExportProductCostPriceLedgerSummary
|
|
@@ -3654,6 +3668,20 @@
|
|
|
3654
3668
|
}
|
|
3655
3669
|
}
|
|
3656
3670
|
CoreManagement.GetCustomFieldByID = GetCustomFieldByID;
|
|
3671
|
+
/**
|
|
3672
|
+
* TODO: Needs documentation
|
|
3673
|
+
*
|
|
3674
|
+
* @export
|
|
3675
|
+
* @class GetCustomFieldMetadata
|
|
3676
|
+
* @implements {EvaService}
|
|
3677
|
+
*/
|
|
3678
|
+
class GetCustomFieldMetadata {
|
|
3679
|
+
constructor() {
|
|
3680
|
+
this.name = 'CoreManagement:GetCustomFieldMetadata';
|
|
3681
|
+
this.path = '/message/GetCustomFieldMetadata';
|
|
3682
|
+
}
|
|
3683
|
+
}
|
|
3684
|
+
CoreManagement.GetCustomFieldMetadata = GetCustomFieldMetadata;
|
|
3657
3685
|
/**
|
|
3658
3686
|
* Get the CustomFieldTypes
|
|
3659
3687
|
*
|
|
@@ -3836,20 +3864,6 @@
|
|
|
3836
3864
|
}
|
|
3837
3865
|
}
|
|
3838
3866
|
CoreManagement.GetFraudItem = GetFraudItem;
|
|
3839
|
-
/**
|
|
3840
|
-
* Retrieve the available and allocated functionalities for given user.
|
|
3841
|
-
*
|
|
3842
|
-
* @export
|
|
3843
|
-
* @class GetFunctionalitiesByUserID
|
|
3844
|
-
* @implements {EvaService}
|
|
3845
|
-
*/
|
|
3846
|
-
class GetFunctionalitiesByUserID {
|
|
3847
|
-
constructor() {
|
|
3848
|
-
this.name = 'CoreManagement:GetFunctionalitiesByUserID';
|
|
3849
|
-
this.path = '/message/GetFunctionalitiesByUserID';
|
|
3850
|
-
}
|
|
3851
|
-
}
|
|
3852
|
-
CoreManagement.GetFunctionalitiesByUserID = GetFunctionalitiesByUserID;
|
|
3853
3867
|
/**
|
|
3854
3868
|
* Returns all available categories for functionalities
|
|
3855
3869
|
*
|
|
@@ -5160,6 +5174,20 @@
|
|
|
5160
5174
|
}
|
|
5161
5175
|
}
|
|
5162
5176
|
CoreManagement.ListCustomFieldDataTypesOperators = ListCustomFieldDataTypesOperators;
|
|
5177
|
+
/**
|
|
5178
|
+
* Get all eligibility fields for the given custom field type.
|
|
5179
|
+
*
|
|
5180
|
+
* @export
|
|
5181
|
+
* @class ListCustomFieldEligibilityScripts
|
|
5182
|
+
* @implements {EvaService}
|
|
5183
|
+
*/
|
|
5184
|
+
class ListCustomFieldEligibilityScripts {
|
|
5185
|
+
constructor() {
|
|
5186
|
+
this.name = 'CoreManagement:ListCustomFieldEligibilityScripts';
|
|
5187
|
+
this.path = '/message/ListCustomFieldEligibilityScripts';
|
|
5188
|
+
}
|
|
5189
|
+
}
|
|
5190
|
+
CoreManagement.ListCustomFieldEligibilityScripts = ListCustomFieldEligibilityScripts;
|
|
5163
5191
|
/**
|
|
5164
5192
|
* List options for custom fields
|
|
5165
5193
|
*
|
|
@@ -6108,6 +6136,20 @@
|
|
|
6108
6136
|
}
|
|
6109
6137
|
}
|
|
6110
6138
|
CoreManagement.ListStockMutationUnitCostSourceLedger = ListStockMutationUnitCostSourceLedger;
|
|
6139
|
+
/**
|
|
6140
|
+
* List all users attached to a subscription. Requires View rights on Subscriptions and Customers functionalities.
|
|
6141
|
+
*
|
|
6142
|
+
* @export
|
|
6143
|
+
* @class ListSubscriptionUsers
|
|
6144
|
+
* @implements {EvaService}
|
|
6145
|
+
*/
|
|
6146
|
+
class ListSubscriptionUsers {
|
|
6147
|
+
constructor() {
|
|
6148
|
+
this.name = 'CoreManagement:ListSubscriptionUsers';
|
|
6149
|
+
this.path = '/message/ListSubscriptionUsers';
|
|
6150
|
+
}
|
|
6151
|
+
}
|
|
6152
|
+
CoreManagement.ListSubscriptionUsers = ListSubscriptionUsers;
|
|
6111
6153
|
/**
|
|
6112
6154
|
* List the Subscriptions
|
|
6113
6155
|
*
|
|
@@ -6430,6 +6472,20 @@
|
|
|
6430
6472
|
}
|
|
6431
6473
|
}
|
|
6432
6474
|
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6475
|
+
/**
|
|
6476
|
+
* Rebalance loyalty points of a user
|
|
6477
|
+
*
|
|
6478
|
+
* @export
|
|
6479
|
+
* @class RebalanceLoyaltyPoints
|
|
6480
|
+
* @implements {EvaService}
|
|
6481
|
+
*/
|
|
6482
|
+
class RebalanceLoyaltyPoints {
|
|
6483
|
+
constructor() {
|
|
6484
|
+
this.name = 'CoreManagement:RebalanceLoyaltyPoints';
|
|
6485
|
+
this.path = '/message/RebalanceLoyaltyPoints';
|
|
6486
|
+
}
|
|
6487
|
+
}
|
|
6488
|
+
CoreManagement.RebalanceLoyaltyPoints = RebalanceLoyaltyPoints;
|
|
6433
6489
|
/**
|
|
6434
6490
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6435
6491
|
*
|
|
@@ -8464,6 +8520,20 @@
|
|
|
8464
8520
|
}
|
|
8465
8521
|
}
|
|
8466
8522
|
CoreManagement.VerifyDiscount = VerifyDiscount;
|
|
8523
|
+
/**
|
|
8524
|
+
* Withdraw loyalty points from a user
|
|
8525
|
+
*
|
|
8526
|
+
* @export
|
|
8527
|
+
* @class WithdrawLoyaltyPoints
|
|
8528
|
+
* @implements {EvaService}
|
|
8529
|
+
*/
|
|
8530
|
+
class WithdrawLoyaltyPoints {
|
|
8531
|
+
constructor() {
|
|
8532
|
+
this.name = 'CoreManagement:WithdrawLoyaltyPoints';
|
|
8533
|
+
this.path = '/message/WithdrawLoyaltyPoints';
|
|
8534
|
+
}
|
|
8535
|
+
}
|
|
8536
|
+
CoreManagement.WithdrawLoyaltyPoints = WithdrawLoyaltyPoints;
|
|
8467
8537
|
})(exports.CoreManagement || (exports.CoreManagement = {}));
|
|
8468
8538
|
|
|
8469
8539
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-services-core-management.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eva-services-core-management.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springtree/eva-services-core-management",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.93.0",
|
|
4
4
|
"description": "The EVA service repository for EVA.Core.Management",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "SpringTree <info@springtree.nl>",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@springtree/eva-services-core": "^1.0.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "eed697f56ba8252523ec1e49d47c03b1c0d8057a"
|
|
37
37
|
}
|