@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,19 @@
|
|
|
1
1
|
var CoreManagement;
|
|
2
2
|
(function (CoreManagement) {
|
|
3
|
+
/**
|
|
4
|
+
* Add a blob to a case interacion.
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @class AddBlobToCaseInteraction
|
|
8
|
+
* @implements {EvaService}
|
|
9
|
+
*/
|
|
10
|
+
class AddBlobToCaseInteraction {
|
|
11
|
+
constructor() {
|
|
12
|
+
this.name = 'CoreManagement:AddBlobToCaseInteraction';
|
|
13
|
+
this.path = '/api/core/management/AddBlobToCaseInteraction';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
CoreManagement.AddBlobToCaseInteraction = AddBlobToCaseInteraction;
|
|
3
17
|
/**
|
|
4
18
|
* Add a package to a carrier
|
|
5
19
|
*
|
|
@@ -46,7 +60,7 @@ But if the list is a mixed product list, all updates will be applied according t
|
|
|
46
60
|
}
|
|
47
61
|
CoreManagement.AddRolesToManualDiscount = AddRolesToManualDiscount;
|
|
48
62
|
/**
|
|
49
|
-
* Archive a
|
|
63
|
+
* Archive a case.
|
|
50
64
|
*
|
|
51
65
|
* @export
|
|
52
66
|
* @class ArchiveCase
|
|
@@ -570,9 +584,9 @@ An example of this might be tips left by a customer.
|
|
|
570
584
|
}
|
|
571
585
|
CoreManagement.CreateGiftCardConfiguration = CreateGiftCardConfiguration;
|
|
572
586
|
/**
|
|
573
|
-
* Creates a new PIN login for
|
|
587
|
+
* Creates a new PIN login for current user.
|
|
574
588
|
|
|
575
|
-
This PIN will only be valid for the provided `OrganizationUnitID
|
|
589
|
+
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).
|
|
576
590
|
*
|
|
577
591
|
* @export
|
|
578
592
|
* @class CreateIdentificationPinForEmployee
|
|
@@ -1110,6 +1124,34 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
|
|
|
1110
1124
|
}
|
|
1111
1125
|
}
|
|
1112
1126
|
CoreManagement.CreateRefundCorrectionReason = CreateRefundCorrectionReason;
|
|
1127
|
+
/**
|
|
1128
|
+
* Create repair user task
|
|
1129
|
+
*
|
|
1130
|
+
* @export
|
|
1131
|
+
* @class CreateRepair
|
|
1132
|
+
* @implements {EvaService}
|
|
1133
|
+
*/
|
|
1134
|
+
class CreateRepair {
|
|
1135
|
+
constructor() {
|
|
1136
|
+
this.name = 'CoreManagement:CreateRepair';
|
|
1137
|
+
this.path = '/api/core/management/CreateRepair';
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
CoreManagement.CreateRepair = CreateRepair;
|
|
1141
|
+
/**
|
|
1142
|
+
* Creates a new case interaction associated with a specific repair
|
|
1143
|
+
*
|
|
1144
|
+
* @export
|
|
1145
|
+
* @class CreateRepairInteraction
|
|
1146
|
+
* @implements {EvaService}
|
|
1147
|
+
*/
|
|
1148
|
+
class CreateRepairInteraction {
|
|
1149
|
+
constructor() {
|
|
1150
|
+
this.name = 'CoreManagement:CreateRepairInteraction';
|
|
1151
|
+
this.path = '/api/core/management/CreateRepairInteraction';
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
CoreManagement.CreateRepairInteraction = CreateRepairInteraction;
|
|
1113
1155
|
/**
|
|
1114
1156
|
* Create a return reason
|
|
1115
1157
|
*
|
|
@@ -2927,6 +2969,20 @@ A duplicated discount will not be Active and Verified.
|
|
|
2927
2969
|
}
|
|
2928
2970
|
}
|
|
2929
2971
|
CoreManagement.ExportUserSubscriptions = ExportUserSubscriptions;
|
|
2972
|
+
/**
|
|
2973
|
+
* TODO: Needs documentation
|
|
2974
|
+
*
|
|
2975
|
+
* @export
|
|
2976
|
+
* @class FinishRepair
|
|
2977
|
+
* @implements {EvaService}
|
|
2978
|
+
*/
|
|
2979
|
+
class FinishRepair {
|
|
2980
|
+
constructor() {
|
|
2981
|
+
this.name = 'CoreManagement:FinishRepair';
|
|
2982
|
+
this.path = '/api/core/management/FinishRepair';
|
|
2983
|
+
}
|
|
2984
|
+
}
|
|
2985
|
+
CoreManagement.FinishRepair = FinishRepair;
|
|
2930
2986
|
/**
|
|
2931
2987
|
* Generate a batch DiscountCoupons, they will be emailed to the current user
|
|
2932
2988
|
*
|
|
@@ -4079,6 +4135,20 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4079
4135
|
}
|
|
4080
4136
|
}
|
|
4081
4137
|
CoreManagement.GetRefundCorrectionReason = GetRefundCorrectionReason;
|
|
4138
|
+
/**
|
|
4139
|
+
* TODO: Needs documentation
|
|
4140
|
+
*
|
|
4141
|
+
* @export
|
|
4142
|
+
* @class GetRepair
|
|
4143
|
+
* @implements {EvaService}
|
|
4144
|
+
*/
|
|
4145
|
+
class GetRepair {
|
|
4146
|
+
constructor() {
|
|
4147
|
+
this.name = 'CoreManagement:GetRepair';
|
|
4148
|
+
this.path = '/api/core/management/GetRepair';
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4151
|
+
CoreManagement.GetRepair = GetRepair;
|
|
4082
4152
|
/**
|
|
4083
4153
|
* Get all return reasons
|
|
4084
4154
|
*
|
|
@@ -5840,6 +5910,20 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
5840
5910
|
}
|
|
5841
5911
|
}
|
|
5842
5912
|
CoreManagement.ProcessUnshippedPurchaseOrdersFromExcel = ProcessUnshippedPurchaseOrdersFromExcel;
|
|
5913
|
+
/**
|
|
5914
|
+
* Push and import a case.
|
|
5915
|
+
*
|
|
5916
|
+
* @export
|
|
5917
|
+
* @class PushCase
|
|
5918
|
+
* @implements {EvaService}
|
|
5919
|
+
*/
|
|
5920
|
+
class PushCase {
|
|
5921
|
+
constructor() {
|
|
5922
|
+
this.name = 'CoreManagement:PushCase';
|
|
5923
|
+
this.path = '/api/core/management/PushCase';
|
|
5924
|
+
}
|
|
5925
|
+
}
|
|
5926
|
+
CoreManagement.PushCase = PushCase;
|
|
5843
5927
|
/**
|
|
5844
5928
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
5845
5929
|
*
|
|
@@ -5871,7 +5955,7 @@ WARNING! If order(lines) are linked to the case, the product links will be remov
|
|
|
5871
5955
|
CoreManagement.RelateCaseOrder = RelateCaseOrder;
|
|
5872
5956
|
/**
|
|
5873
5957
|
* Relate products to the case.
|
|
5874
|
-
WARNING! If
|
|
5958
|
+
WARNING! If products are linked to the case, the order(line) links will be removed.
|
|
5875
5959
|
*
|
|
5876
5960
|
* @export
|
|
5877
5961
|
* @class RelateCaseProducts
|
|
@@ -5884,6 +5968,20 @@ WARNING! If Products are linked to the case, the order(line) links will be remov
|
|
|
5884
5968
|
}
|
|
5885
5969
|
}
|
|
5886
5970
|
CoreManagement.RelateCaseProducts = RelateCaseProducts;
|
|
5971
|
+
/**
|
|
5972
|
+
* Remove a blob from a case interaction.
|
|
5973
|
+
*
|
|
5974
|
+
* @export
|
|
5975
|
+
* @class RemoveCaseInteractionBlob
|
|
5976
|
+
* @implements {EvaService}
|
|
5977
|
+
*/
|
|
5978
|
+
class RemoveCaseInteractionBlob {
|
|
5979
|
+
constructor() {
|
|
5980
|
+
this.name = 'CoreManagement:RemoveCaseInteractionBlob';
|
|
5981
|
+
this.path = '/api/core/management/RemoveCaseInteractionBlob';
|
|
5982
|
+
}
|
|
5983
|
+
}
|
|
5984
|
+
CoreManagement.RemoveCaseInteractionBlob = RemoveCaseInteractionBlob;
|
|
5887
5985
|
/**
|
|
5888
5986
|
* Remove a package from a carrier
|
|
5889
5987
|
*
|
|
@@ -6945,6 +7043,20 @@ A ShippingMethod, OrganizationUnit and Priority are required
|
|
|
6945
7043
|
}
|
|
6946
7044
|
}
|
|
6947
7045
|
CoreManagement.UpdateRefundCorrectionReason = UpdateRefundCorrectionReason;
|
|
7046
|
+
/**
|
|
7047
|
+
* TODO: Needs documentation
|
|
7048
|
+
*
|
|
7049
|
+
* @export
|
|
7050
|
+
* @class UpdateRepair
|
|
7051
|
+
* @implements {EvaService}
|
|
7052
|
+
*/
|
|
7053
|
+
class UpdateRepair {
|
|
7054
|
+
constructor() {
|
|
7055
|
+
this.name = 'CoreManagement:UpdateRepair';
|
|
7056
|
+
this.path = '/api/core/management/UpdateRepair';
|
|
7057
|
+
}
|
|
7058
|
+
}
|
|
7059
|
+
CoreManagement.UpdateRepair = UpdateRepair;
|
|
6948
7060
|
/**
|
|
6949
7061
|
* Update a return reason
|
|
6950
7062
|
*
|
|
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -6,6 +6,20 @@
|
|
|
6
6
|
|
|
7
7
|
exports.CoreManagement = void 0;
|
|
8
8
|
(function (CoreManagement) {
|
|
9
|
+
/**
|
|
10
|
+
* Add a blob to a case interacion.
|
|
11
|
+
*
|
|
12
|
+
* @export
|
|
13
|
+
* @class AddBlobToCaseInteraction
|
|
14
|
+
* @implements {EvaService}
|
|
15
|
+
*/
|
|
16
|
+
class AddBlobToCaseInteraction {
|
|
17
|
+
constructor() {
|
|
18
|
+
this.name = 'CoreManagement:AddBlobToCaseInteraction';
|
|
19
|
+
this.path = '/api/core/management/AddBlobToCaseInteraction';
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
CoreManagement.AddBlobToCaseInteraction = AddBlobToCaseInteraction;
|
|
9
23
|
/**
|
|
10
24
|
* Add a package to a carrier
|
|
11
25
|
*
|
|
@@ -52,7 +66,7 @@
|
|
|
52
66
|
}
|
|
53
67
|
CoreManagement.AddRolesToManualDiscount = AddRolesToManualDiscount;
|
|
54
68
|
/**
|
|
55
|
-
* Archive a
|
|
69
|
+
* Archive a case.
|
|
56
70
|
*
|
|
57
71
|
* @export
|
|
58
72
|
* @class ArchiveCase
|
|
@@ -576,9 +590,9 @@
|
|
|
576
590
|
}
|
|
577
591
|
CoreManagement.CreateGiftCardConfiguration = CreateGiftCardConfiguration;
|
|
578
592
|
/**
|
|
579
|
-
* Creates a new PIN login for
|
|
593
|
+
* Creates a new PIN login for current user.
|
|
580
594
|
|
|
581
|
-
This PIN will only be valid for the provided `OrganizationUnitID
|
|
595
|
+
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).
|
|
582
596
|
*
|
|
583
597
|
* @export
|
|
584
598
|
* @class CreateIdentificationPinForEmployee
|
|
@@ -1116,6 +1130,34 @@
|
|
|
1116
1130
|
}
|
|
1117
1131
|
}
|
|
1118
1132
|
CoreManagement.CreateRefundCorrectionReason = CreateRefundCorrectionReason;
|
|
1133
|
+
/**
|
|
1134
|
+
* Create repair user task
|
|
1135
|
+
*
|
|
1136
|
+
* @export
|
|
1137
|
+
* @class CreateRepair
|
|
1138
|
+
* @implements {EvaService}
|
|
1139
|
+
*/
|
|
1140
|
+
class CreateRepair {
|
|
1141
|
+
constructor() {
|
|
1142
|
+
this.name = 'CoreManagement:CreateRepair';
|
|
1143
|
+
this.path = '/api/core/management/CreateRepair';
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
CoreManagement.CreateRepair = CreateRepair;
|
|
1147
|
+
/**
|
|
1148
|
+
* Creates a new case interaction associated with a specific repair
|
|
1149
|
+
*
|
|
1150
|
+
* @export
|
|
1151
|
+
* @class CreateRepairInteraction
|
|
1152
|
+
* @implements {EvaService}
|
|
1153
|
+
*/
|
|
1154
|
+
class CreateRepairInteraction {
|
|
1155
|
+
constructor() {
|
|
1156
|
+
this.name = 'CoreManagement:CreateRepairInteraction';
|
|
1157
|
+
this.path = '/api/core/management/CreateRepairInteraction';
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
CoreManagement.CreateRepairInteraction = CreateRepairInteraction;
|
|
1119
1161
|
/**
|
|
1120
1162
|
* Create a return reason
|
|
1121
1163
|
*
|
|
@@ -2933,6 +2975,20 @@
|
|
|
2933
2975
|
}
|
|
2934
2976
|
}
|
|
2935
2977
|
CoreManagement.ExportUserSubscriptions = ExportUserSubscriptions;
|
|
2978
|
+
/**
|
|
2979
|
+
* TODO: Needs documentation
|
|
2980
|
+
*
|
|
2981
|
+
* @export
|
|
2982
|
+
* @class FinishRepair
|
|
2983
|
+
* @implements {EvaService}
|
|
2984
|
+
*/
|
|
2985
|
+
class FinishRepair {
|
|
2986
|
+
constructor() {
|
|
2987
|
+
this.name = 'CoreManagement:FinishRepair';
|
|
2988
|
+
this.path = '/api/core/management/FinishRepair';
|
|
2989
|
+
}
|
|
2990
|
+
}
|
|
2991
|
+
CoreManagement.FinishRepair = FinishRepair;
|
|
2936
2992
|
/**
|
|
2937
2993
|
* Generate a batch DiscountCoupons, they will be emailed to the current user
|
|
2938
2994
|
*
|
|
@@ -4085,6 +4141,20 @@
|
|
|
4085
4141
|
}
|
|
4086
4142
|
}
|
|
4087
4143
|
CoreManagement.GetRefundCorrectionReason = GetRefundCorrectionReason;
|
|
4144
|
+
/**
|
|
4145
|
+
* TODO: Needs documentation
|
|
4146
|
+
*
|
|
4147
|
+
* @export
|
|
4148
|
+
* @class GetRepair
|
|
4149
|
+
* @implements {EvaService}
|
|
4150
|
+
*/
|
|
4151
|
+
class GetRepair {
|
|
4152
|
+
constructor() {
|
|
4153
|
+
this.name = 'CoreManagement:GetRepair';
|
|
4154
|
+
this.path = '/api/core/management/GetRepair';
|
|
4155
|
+
}
|
|
4156
|
+
}
|
|
4157
|
+
CoreManagement.GetRepair = GetRepair;
|
|
4088
4158
|
/**
|
|
4089
4159
|
* Get all return reasons
|
|
4090
4160
|
*
|
|
@@ -5846,6 +5916,20 @@
|
|
|
5846
5916
|
}
|
|
5847
5917
|
}
|
|
5848
5918
|
CoreManagement.ProcessUnshippedPurchaseOrdersFromExcel = ProcessUnshippedPurchaseOrdersFromExcel;
|
|
5919
|
+
/**
|
|
5920
|
+
* Push and import a case.
|
|
5921
|
+
*
|
|
5922
|
+
* @export
|
|
5923
|
+
* @class PushCase
|
|
5924
|
+
* @implements {EvaService}
|
|
5925
|
+
*/
|
|
5926
|
+
class PushCase {
|
|
5927
|
+
constructor() {
|
|
5928
|
+
this.name = 'CoreManagement:PushCase';
|
|
5929
|
+
this.path = '/api/core/management/PushCase';
|
|
5930
|
+
}
|
|
5931
|
+
}
|
|
5932
|
+
CoreManagement.PushCase = PushCase;
|
|
5849
5933
|
/**
|
|
5850
5934
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
5851
5935
|
*
|
|
@@ -5877,7 +5961,7 @@
|
|
|
5877
5961
|
CoreManagement.RelateCaseOrder = RelateCaseOrder;
|
|
5878
5962
|
/**
|
|
5879
5963
|
* Relate products to the case.
|
|
5880
|
-
WARNING! If
|
|
5964
|
+
WARNING! If products are linked to the case, the order(line) links will be removed.
|
|
5881
5965
|
*
|
|
5882
5966
|
* @export
|
|
5883
5967
|
* @class RelateCaseProducts
|
|
@@ -5890,6 +5974,20 @@
|
|
|
5890
5974
|
}
|
|
5891
5975
|
}
|
|
5892
5976
|
CoreManagement.RelateCaseProducts = RelateCaseProducts;
|
|
5977
|
+
/**
|
|
5978
|
+
* Remove a blob from a case interaction.
|
|
5979
|
+
*
|
|
5980
|
+
* @export
|
|
5981
|
+
* @class RemoveCaseInteractionBlob
|
|
5982
|
+
* @implements {EvaService}
|
|
5983
|
+
*/
|
|
5984
|
+
class RemoveCaseInteractionBlob {
|
|
5985
|
+
constructor() {
|
|
5986
|
+
this.name = 'CoreManagement:RemoveCaseInteractionBlob';
|
|
5987
|
+
this.path = '/api/core/management/RemoveCaseInteractionBlob';
|
|
5988
|
+
}
|
|
5989
|
+
}
|
|
5990
|
+
CoreManagement.RemoveCaseInteractionBlob = RemoveCaseInteractionBlob;
|
|
5893
5991
|
/**
|
|
5894
5992
|
* Remove a package from a carrier
|
|
5895
5993
|
*
|
|
@@ -6951,6 +7049,20 @@
|
|
|
6951
7049
|
}
|
|
6952
7050
|
}
|
|
6953
7051
|
CoreManagement.UpdateRefundCorrectionReason = UpdateRefundCorrectionReason;
|
|
7052
|
+
/**
|
|
7053
|
+
* TODO: Needs documentation
|
|
7054
|
+
*
|
|
7055
|
+
* @export
|
|
7056
|
+
* @class UpdateRepair
|
|
7057
|
+
* @implements {EvaService}
|
|
7058
|
+
*/
|
|
7059
|
+
class UpdateRepair {
|
|
7060
|
+
constructor() {
|
|
7061
|
+
this.name = 'CoreManagement:UpdateRepair';
|
|
7062
|
+
this.path = '/api/core/management/UpdateRepair';
|
|
7063
|
+
}
|
|
7064
|
+
}
|
|
7065
|
+
CoreManagement.UpdateRepair = UpdateRepair;
|
|
6954
7066
|
/**
|
|
6955
7067
|
* Update a return reason
|
|
6956
7068
|
*
|
|
@@ -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.75.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": "b5c1d762ba1e60467044de3aedc22537f4ab32d8"
|
|
37
37
|
}
|