@springtree/eva-services-core-management 2.42.7 → 2.43.1
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.
|
@@ -1352,6 +1352,19 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
|
|
|
1352
1352
|
request?: EVA.Core.Management.CreateRefundCorrectionReason;
|
|
1353
1353
|
response?: EVA.Core.Management.CreateRefundCorrectionReasonResponse;
|
|
1354
1354
|
}
|
|
1355
|
+
/**
|
|
1356
|
+
* TODO: Needs documentation
|
|
1357
|
+
*
|
|
1358
|
+
* @export
|
|
1359
|
+
* @class CreateResendReason
|
|
1360
|
+
* @implements {EvaService}
|
|
1361
|
+
*/
|
|
1362
|
+
class CreateResendReason implements IEvaServiceDefinition {
|
|
1363
|
+
name: string;
|
|
1364
|
+
path: string;
|
|
1365
|
+
request?: EVA.Core.Management.CreateResendReason;
|
|
1366
|
+
response?: EVA.Core.Management.CreateResendReasonResponse;
|
|
1367
|
+
}
|
|
1355
1368
|
/**
|
|
1356
1369
|
* Create a return reason
|
|
1357
1370
|
*
|
|
@@ -1613,6 +1626,19 @@ Name is required
|
|
|
1613
1626
|
request?: EVA.Core.Management.CreateUnitPriceCorrectionReason;
|
|
1614
1627
|
response?: EVA.Core.Management.CreateUnitPriceCorrectionReasonResponse;
|
|
1615
1628
|
}
|
|
1629
|
+
/**
|
|
1630
|
+
* Create a new UserAgreement
|
|
1631
|
+
*
|
|
1632
|
+
* @export
|
|
1633
|
+
* @class CreateUserAgreement
|
|
1634
|
+
* @implements {EvaService}
|
|
1635
|
+
*/
|
|
1636
|
+
class CreateUserAgreement implements IEvaServiceDefinition {
|
|
1637
|
+
name: string;
|
|
1638
|
+
path: string;
|
|
1639
|
+
request?: EVA.Core.Management.CreateUserAgreement;
|
|
1640
|
+
response?: EVA.Core.Management.CreateUserAgreementResponse;
|
|
1641
|
+
}
|
|
1616
1642
|
/**
|
|
1617
1643
|
* Create a new UserOrigin
|
|
1618
1644
|
*
|
|
@@ -2482,6 +2508,19 @@ When it's SupplierBarcode all matching barcodes will be removed
|
|
|
2482
2508
|
request?: EVA.Core.Management.DeleteRefundCorrectionReason;
|
|
2483
2509
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2484
2510
|
}
|
|
2511
|
+
/**
|
|
2512
|
+
* TODO: Needs documentation
|
|
2513
|
+
*
|
|
2514
|
+
* @export
|
|
2515
|
+
* @class DeleteResendReason
|
|
2516
|
+
* @implements {EvaService}
|
|
2517
|
+
*/
|
|
2518
|
+
class DeleteResendReason implements IEvaServiceDefinition {
|
|
2519
|
+
name: string;
|
|
2520
|
+
path: string;
|
|
2521
|
+
request?: EVA.Core.Management.DeleteResendReason;
|
|
2522
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2523
|
+
}
|
|
2485
2524
|
/**
|
|
2486
2525
|
* Delete a return reason
|
|
2487
2526
|
*
|
|
@@ -2718,6 +2757,19 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2718
2757
|
request?: EVA.Core.Management.DeleteUnprocessedPaymentSettlementFile;
|
|
2719
2758
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2720
2759
|
}
|
|
2760
|
+
/**
|
|
2761
|
+
* Delete a UserAgreement.
|
|
2762
|
+
*
|
|
2763
|
+
* @export
|
|
2764
|
+
* @class DeleteUserAgreement
|
|
2765
|
+
* @implements {EvaService}
|
|
2766
|
+
*/
|
|
2767
|
+
class DeleteUserAgreement implements IEvaServiceDefinition {
|
|
2768
|
+
name: string;
|
|
2769
|
+
path: string;
|
|
2770
|
+
request?: EVA.Core.Management.DeleteUserAgreement;
|
|
2771
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2772
|
+
}
|
|
2721
2773
|
/**
|
|
2722
2774
|
* Deletes a user bought product detail.
|
|
2723
2775
|
*
|
|
@@ -2861,6 +2913,32 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2861
2913
|
request?: EVA.Core.Management.DownloadAssortmentProducts;
|
|
2862
2914
|
response?: EVA.Core.ResourceResponseMessage;
|
|
2863
2915
|
}
|
|
2916
|
+
/**
|
|
2917
|
+
* Returns an Excel file that contains all products in an assortment, which can then be updated and reuploaded using UploadAssortmentProducts.
|
|
2918
|
+
*
|
|
2919
|
+
* @export
|
|
2920
|
+
* @class DownloadAssortmentProducts_Async
|
|
2921
|
+
* @implements {EvaService}
|
|
2922
|
+
*/
|
|
2923
|
+
class DownloadAssortmentProducts_Async implements IEvaServiceDefinition {
|
|
2924
|
+
name: string;
|
|
2925
|
+
path: string;
|
|
2926
|
+
request?: EVA.Core.Management.DownloadAssortmentProducts;
|
|
2927
|
+
response?: EVA.Core.AsyncRequestResponse;
|
|
2928
|
+
}
|
|
2929
|
+
/**
|
|
2930
|
+
* Returns an Excel file that contains all products in an assortment, which can then be updated and reuploaded using UploadAssortmentProducts.
|
|
2931
|
+
*
|
|
2932
|
+
* @export
|
|
2933
|
+
* @class DownloadAssortmentProducts_AsyncResult
|
|
2934
|
+
* @implements {EvaService}
|
|
2935
|
+
*/
|
|
2936
|
+
class DownloadAssortmentProducts_AsyncResult implements IEvaServiceDefinition {
|
|
2937
|
+
name: string;
|
|
2938
|
+
path: string;
|
|
2939
|
+
request?: EVA.Core.AsyncRequestResultRequest;
|
|
2940
|
+
response?: EVA.Core.ResourceResponseMessage;
|
|
2941
|
+
}
|
|
2864
2942
|
/**
|
|
2865
2943
|
* Exports the coupons for the given discount to Excel.
|
|
2866
2944
|
*
|
|
@@ -4710,6 +4788,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4710
4788
|
request?: EVA.Core.Management.GetRefundCorrectionReason;
|
|
4711
4789
|
response?: EVA.Core.Management.GetRefundCorrectionReasonResponse;
|
|
4712
4790
|
}
|
|
4791
|
+
/**
|
|
4792
|
+
* TODO: Needs documentation
|
|
4793
|
+
*
|
|
4794
|
+
* @export
|
|
4795
|
+
* @class GetResendReason
|
|
4796
|
+
* @implements {EvaService}
|
|
4797
|
+
*/
|
|
4798
|
+
class GetResendReason implements IEvaServiceDefinition {
|
|
4799
|
+
name: string;
|
|
4800
|
+
path: string;
|
|
4801
|
+
request?: EVA.Core.Management.GetResendReason;
|
|
4802
|
+
response?: EVA.Core.Management.GetResendReasonResponse;
|
|
4803
|
+
}
|
|
4713
4804
|
/**
|
|
4714
4805
|
* Get the reasons by type.
|
|
4715
4806
|
*
|
|
@@ -4801,6 +4892,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4801
4892
|
request?: EVA.Core.Management.GetSettingHistory;
|
|
4802
4893
|
response?: EVA.Core.Management.GetSettingHistoryResponse;
|
|
4803
4894
|
}
|
|
4895
|
+
/**
|
|
4896
|
+
* Service to get an indication of the impact that results from updating settings
|
|
4897
|
+
*
|
|
4898
|
+
* @export
|
|
4899
|
+
* @class GetSettingImpact
|
|
4900
|
+
* @implements {EvaService}
|
|
4901
|
+
*/
|
|
4902
|
+
class GetSettingImpact implements IEvaServiceDefinition {
|
|
4903
|
+
name: string;
|
|
4904
|
+
path: string;
|
|
4905
|
+
request?: EVA.Core.Management.GetSettingImpact;
|
|
4906
|
+
response?: EVA.Core.Management.GetSettingImpactResponse;
|
|
4907
|
+
}
|
|
4804
4908
|
/**
|
|
4805
4909
|
* Get a `ShippingCost`
|
|
4806
4910
|
*
|
|
@@ -4996,6 +5100,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4996
5100
|
request?: EVA.Core.Management.GetUnitOfMeasures;
|
|
4997
5101
|
response?: EVA.Core.Management.GetUnitOfMeasuresResponse;
|
|
4998
5102
|
}
|
|
5103
|
+
/**
|
|
5104
|
+
* Get the UserAgreement details
|
|
5105
|
+
*
|
|
5106
|
+
* @export
|
|
5107
|
+
* @class GetUserAgreementByID
|
|
5108
|
+
* @implements {EvaService}
|
|
5109
|
+
*/
|
|
5110
|
+
class GetUserAgreementByID implements IEvaServiceDefinition {
|
|
5111
|
+
name: string;
|
|
5112
|
+
path: string;
|
|
5113
|
+
request?: EVA.Core.Management.GetUserAgreementByID;
|
|
5114
|
+
response?: EVA.Core.Management.GetUserAgreementByIDResponse;
|
|
5115
|
+
}
|
|
4999
5116
|
/**
|
|
5000
5117
|
* Get the user bought product by ID.
|
|
5001
5118
|
*
|
|
@@ -6303,6 +6420,19 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
6303
6420
|
request?: EVA.Core.Management.ListRefundCorrectionReasons;
|
|
6304
6421
|
response?: EVA.Core.Management.ListRefundCorrectionReasonsResponse;
|
|
6305
6422
|
}
|
|
6423
|
+
/**
|
|
6424
|
+
* TODO: Needs documentation
|
|
6425
|
+
*
|
|
6426
|
+
* @export
|
|
6427
|
+
* @class ListResendReasons
|
|
6428
|
+
* @implements {EvaService}
|
|
6429
|
+
*/
|
|
6430
|
+
class ListResendReasons implements IEvaServiceDefinition {
|
|
6431
|
+
name: string;
|
|
6432
|
+
path: string;
|
|
6433
|
+
request?: EVA.Core.Management.ListResendReasons;
|
|
6434
|
+
response?: EVA.Core.Management.ListResendReasonsResponse;
|
|
6435
|
+
}
|
|
6306
6436
|
/**
|
|
6307
6437
|
* TODO: Needs documentation
|
|
6308
6438
|
*
|
|
@@ -6528,19 +6658,6 @@ If neither `OrganizationUnitIDs` nor `OrganizationUnitSetID` are specified, the
|
|
|
6528
6658
|
request?: EVA.Core.Management.ListSubscriptionOrganizationUnitSets;
|
|
6529
6659
|
response?: EVA.Core.Management.ListSubscriptionOrganizationUnitSetsResponse;
|
|
6530
6660
|
}
|
|
6531
|
-
/**
|
|
6532
|
-
* List all users attached to a subscription. Requires View rights on Subscriptions and Customers functionalities.
|
|
6533
|
-
*
|
|
6534
|
-
* @export
|
|
6535
|
-
* @class ListSubscriptionUsers
|
|
6536
|
-
* @implements {EvaService}
|
|
6537
|
-
*/
|
|
6538
|
-
class ListSubscriptionUsers implements IEvaServiceDefinition {
|
|
6539
|
-
name: string;
|
|
6540
|
-
path: string;
|
|
6541
|
-
request?: EVA.Core.Management.ListSubscriptionUsers;
|
|
6542
|
-
response?: EVA.Core.Management.ListSubscriptionUsersResponse;
|
|
6543
|
-
}
|
|
6544
6661
|
/**
|
|
6545
6662
|
* List the Subscriptions
|
|
6546
6663
|
*
|
|
@@ -6608,6 +6725,19 @@ If neither `OrganizationUnitIDs` nor `OrganizationUnitSetID` are specified, the
|
|
|
6608
6725
|
request?: EVA.Core.Management.ListUnitPriceCorrectionReasons;
|
|
6609
6726
|
response?: EVA.Core.Management.ListUnitPriceCorrectionReasonsResponse;
|
|
6610
6727
|
}
|
|
6728
|
+
/**
|
|
6729
|
+
* List the UserAgreements
|
|
6730
|
+
*
|
|
6731
|
+
* @export
|
|
6732
|
+
* @class ListUserAgreements
|
|
6733
|
+
* @implements {EvaService}
|
|
6734
|
+
*/
|
|
6735
|
+
class ListUserAgreements implements IEvaServiceDefinition {
|
|
6736
|
+
name: string;
|
|
6737
|
+
path: string;
|
|
6738
|
+
request?: EVA.Core.Management.ListUserAgreements;
|
|
6739
|
+
response?: EVA.Core.Management.ListUserAgreementsResponse;
|
|
6740
|
+
}
|
|
6611
6741
|
/**
|
|
6612
6742
|
* List the users bought products.
|
|
6613
6743
|
*
|
|
@@ -8763,6 +8893,19 @@ A ShippingMethod, OrganizationUnit and Priority are required
|
|
|
8763
8893
|
request?: EVA.Core.Management.UpdateRefundCorrectionReason;
|
|
8764
8894
|
response?: EVA.Core.EmptyResponseMessage;
|
|
8765
8895
|
}
|
|
8896
|
+
/**
|
|
8897
|
+
* TODO: Needs documentation
|
|
8898
|
+
*
|
|
8899
|
+
* @export
|
|
8900
|
+
* @class UpdateResendReason
|
|
8901
|
+
* @implements {EvaService}
|
|
8902
|
+
*/
|
|
8903
|
+
class UpdateResendReason implements IEvaServiceDefinition {
|
|
8904
|
+
name: string;
|
|
8905
|
+
path: string;
|
|
8906
|
+
request?: EVA.Core.Management.UpdateResendReason;
|
|
8907
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
8908
|
+
}
|
|
8766
8909
|
/**
|
|
8767
8910
|
* Update a return reason
|
|
8768
8911
|
*
|
|
@@ -9068,6 +9211,19 @@ After publishing you can no longer change the OrganizationUnitSetID, SurveyConte
|
|
|
9068
9211
|
request?: EVA.Core.Management.UpdateUnitPriceCorrectionReason;
|
|
9069
9212
|
response?: EVA.Core.EmptyResponseMessage;
|
|
9070
9213
|
}
|
|
9214
|
+
/**
|
|
9215
|
+
* Update an existing UserAgreement
|
|
9216
|
+
*
|
|
9217
|
+
* @export
|
|
9218
|
+
* @class UpdateUserAgreement
|
|
9219
|
+
* @implements {EvaService}
|
|
9220
|
+
*/
|
|
9221
|
+
class UpdateUserAgreement implements IEvaServiceDefinition {
|
|
9222
|
+
name: string;
|
|
9223
|
+
path: string;
|
|
9224
|
+
request?: EVA.Core.Management.UpdateUserAgreement;
|
|
9225
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
9226
|
+
}
|
|
9071
9227
|
/**
|
|
9072
9228
|
* Register user bought product.
|
|
9073
9229
|
*
|