@springtree/eva-services-core-management 1.73.0 → 1.75.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 +108 -4
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +116 -4
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +116 -4
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +116 -4
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
import { IEvaServiceDefinition } from '@springtree/eva-services-core';
|
|
2
2
|
export declare namespace CoreManagement {
|
|
3
|
+
/**
|
|
4
|
+
* Add a blob to a case interacion.
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @class AddBlobToCaseInteraction
|
|
8
|
+
* @implements {EvaService}
|
|
9
|
+
*/
|
|
10
|
+
class AddBlobToCaseInteraction implements IEvaServiceDefinition {
|
|
11
|
+
name: string;
|
|
12
|
+
path: string;
|
|
13
|
+
request?: EVA.Core.Management.AddBlobToCaseInteraction;
|
|
14
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
15
|
+
}
|
|
3
16
|
/**
|
|
4
17
|
* Add a package to a carrier
|
|
5
18
|
*
|
|
@@ -43,7 +56,7 @@ But if the list is a mixed product list, all updates will be applied according t
|
|
|
43
56
|
response?: EVA.Core.EmptyResponseMessage;
|
|
44
57
|
}
|
|
45
58
|
/**
|
|
46
|
-
* Archive a
|
|
59
|
+
* Archive a case.
|
|
47
60
|
*
|
|
48
61
|
* @export
|
|
49
62
|
* @class ArchiveCase
|
|
@@ -530,9 +543,9 @@ An example of this might be tips left by a customer.
|
|
|
530
543
|
response?: EVA.Core.Management.CreateGiftCardConfigurationResponse;
|
|
531
544
|
}
|
|
532
545
|
/**
|
|
533
|
-
* Creates a new PIN login for
|
|
546
|
+
* Creates a new PIN login for current user.
|
|
534
547
|
|
|
535
|
-
This PIN will only be valid for the provided `OrganizationUnitID
|
|
548
|
+
This PIN will only be valid for a limited amount of time, and only for the provided `OrganizationUnitID` (or your current organization unit if left null).
|
|
536
549
|
*
|
|
537
550
|
* @export
|
|
538
551
|
* @class CreateIdentificationPinForEmployee
|
|
@@ -1034,6 +1047,32 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
|
|
|
1034
1047
|
request?: EVA.Core.Management.CreateRefundCorrectionReason;
|
|
1035
1048
|
response?: EVA.Core.Management.CreateRefundCorrectionReasonResponse;
|
|
1036
1049
|
}
|
|
1050
|
+
/**
|
|
1051
|
+
* Create repair user task
|
|
1052
|
+
*
|
|
1053
|
+
* @export
|
|
1054
|
+
* @class CreateRepair
|
|
1055
|
+
* @implements {EvaService}
|
|
1056
|
+
*/
|
|
1057
|
+
class CreateRepair implements IEvaServiceDefinition {
|
|
1058
|
+
name: string;
|
|
1059
|
+
path: string;
|
|
1060
|
+
request?: EVA.Core.Management.CreateRepair;
|
|
1061
|
+
response?: EVA.Core.Management.CreateRepairResponse;
|
|
1062
|
+
}
|
|
1063
|
+
/**
|
|
1064
|
+
* Creates a new case interaction associated with a specific repair
|
|
1065
|
+
*
|
|
1066
|
+
* @export
|
|
1067
|
+
* @class CreateRepairInteraction
|
|
1068
|
+
* @implements {EvaService}
|
|
1069
|
+
*/
|
|
1070
|
+
class CreateRepairInteraction implements IEvaServiceDefinition {
|
|
1071
|
+
name: string;
|
|
1072
|
+
path: string;
|
|
1073
|
+
request?: EVA.Core.Management.CreateRepairInteraction;
|
|
1074
|
+
response?: EVA.Core.Management.CreateRepairInteractionResponse;
|
|
1075
|
+
}
|
|
1037
1076
|
/**
|
|
1038
1077
|
* Create a return reason
|
|
1039
1078
|
*
|
|
@@ -2723,6 +2762,19 @@ A duplicated discount will not be Active and Verified.
|
|
|
2723
2762
|
request?: EVA.Core.Management.ExportUserSubscriptions;
|
|
2724
2763
|
response?: EVA.Core.ResourceResponseMessage;
|
|
2725
2764
|
}
|
|
2765
|
+
/**
|
|
2766
|
+
* TODO: Needs documentation
|
|
2767
|
+
*
|
|
2768
|
+
* @export
|
|
2769
|
+
* @class FinishRepair
|
|
2770
|
+
* @implements {EvaService}
|
|
2771
|
+
*/
|
|
2772
|
+
class FinishRepair implements IEvaServiceDefinition {
|
|
2773
|
+
name: string;
|
|
2774
|
+
path: string;
|
|
2775
|
+
request?: EVA.Core.Management.FinishRepair;
|
|
2776
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2777
|
+
}
|
|
2726
2778
|
/**
|
|
2727
2779
|
* Generate a batch DiscountCoupons, they will be emailed to the current user
|
|
2728
2780
|
*
|
|
@@ -3794,6 +3846,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
3794
3846
|
request?: EVA.Core.Management.GetRefundCorrectionReason;
|
|
3795
3847
|
response?: EVA.Core.Management.GetRefundCorrectionReasonResponse;
|
|
3796
3848
|
}
|
|
3849
|
+
/**
|
|
3850
|
+
* TODO: Needs documentation
|
|
3851
|
+
*
|
|
3852
|
+
* @export
|
|
3853
|
+
* @class GetRepair
|
|
3854
|
+
* @implements {EvaService}
|
|
3855
|
+
*/
|
|
3856
|
+
class GetRepair implements IEvaServiceDefinition {
|
|
3857
|
+
name: string;
|
|
3858
|
+
path: string;
|
|
3859
|
+
request?: EVA.Core.Management.GetRepair;
|
|
3860
|
+
response?: EVA.Core.Management.GetRepairResponse;
|
|
3861
|
+
}
|
|
3797
3862
|
/**
|
|
3798
3863
|
* Get all return reasons
|
|
3799
3864
|
*
|
|
@@ -5434,6 +5499,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
5434
5499
|
request?: EVA.Core.Management.ProcessUnshippedPurchaseOrdersFromExcel;
|
|
5435
5500
|
response?: EVA.Core.EmptyResponseMessage;
|
|
5436
5501
|
}
|
|
5502
|
+
/**
|
|
5503
|
+
* Push and import a case.
|
|
5504
|
+
*
|
|
5505
|
+
* @export
|
|
5506
|
+
* @class PushCase
|
|
5507
|
+
* @implements {EvaService}
|
|
5508
|
+
*/
|
|
5509
|
+
class PushCase implements IEvaServiceDefinition {
|
|
5510
|
+
name: string;
|
|
5511
|
+
path: string;
|
|
5512
|
+
request?: EVA.Core.Management.PushCase;
|
|
5513
|
+
response?: EVA.Core.Management.PushCaseResponse;
|
|
5514
|
+
}
|
|
5437
5515
|
/**
|
|
5438
5516
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
5439
5517
|
*
|
|
@@ -5463,7 +5541,7 @@ WARNING! If order(lines) are linked to the case, the product links will be remov
|
|
|
5463
5541
|
}
|
|
5464
5542
|
/**
|
|
5465
5543
|
* Relate products to the case.
|
|
5466
|
-
WARNING! If
|
|
5544
|
+
WARNING! If products are linked to the case, the order(line) links will be removed.
|
|
5467
5545
|
*
|
|
5468
5546
|
* @export
|
|
5469
5547
|
* @class RelateCaseProducts
|
|
@@ -5475,6 +5553,19 @@ WARNING! If Products are linked to the case, the order(line) links will be remov
|
|
|
5475
5553
|
request?: EVA.Core.Management.RelateCaseProducts;
|
|
5476
5554
|
response?: EVA.Core.EmptyResponseMessage;
|
|
5477
5555
|
}
|
|
5556
|
+
/**
|
|
5557
|
+
* Remove a blob from a case interaction.
|
|
5558
|
+
*
|
|
5559
|
+
* @export
|
|
5560
|
+
* @class RemoveCaseInteractionBlob
|
|
5561
|
+
* @implements {EvaService}
|
|
5562
|
+
*/
|
|
5563
|
+
class RemoveCaseInteractionBlob implements IEvaServiceDefinition {
|
|
5564
|
+
name: string;
|
|
5565
|
+
path: string;
|
|
5566
|
+
request?: EVA.Core.Management.RemoveCaseInteractionBlob;
|
|
5567
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
5568
|
+
}
|
|
5478
5569
|
/**
|
|
5479
5570
|
* Remove a package from a carrier
|
|
5480
5571
|
*
|
|
@@ -6464,6 +6555,19 @@ A ShippingMethod, OrganizationUnit and Priority are required
|
|
|
6464
6555
|
request?: EVA.Core.Management.UpdateRefundCorrectionReason;
|
|
6465
6556
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6466
6557
|
}
|
|
6558
|
+
/**
|
|
6559
|
+
* TODO: Needs documentation
|
|
6560
|
+
*
|
|
6561
|
+
* @export
|
|
6562
|
+
* @class UpdateRepair
|
|
6563
|
+
* @implements {EvaService}
|
|
6564
|
+
*/
|
|
6565
|
+
class UpdateRepair implements IEvaServiceDefinition {
|
|
6566
|
+
name: string;
|
|
6567
|
+
path: string;
|
|
6568
|
+
request?: EVA.Core.Management.UpdateRepair;
|
|
6569
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6570
|
+
}
|
|
6467
6571
|
/**
|
|
6468
6572
|
* Update a return reason
|
|
6469
6573
|
*
|