@springtree/eva-services-core-management 3.0.0-beta.9 → 9.1.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-services-core-management.d.ts +14260 -8867
- package/lib/eva-services-core-management.d.ts.map +1 -1
- package/lib/eva-services-core-management.js +54 -32
- package/lib/eva-services-core-management.js.map +1 -1
- package/lib/eva-services-core-management.services.d.ts +2804 -1904
- package/lib/eva-services-core-management.services.d.ts.map +1 -1
- package/lib/eva-services-core-management.services.js +936 -36
- package/lib/eva-services-core-management.services.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
export var Errors;
|
|
2
2
|
(function (Errors) {
|
|
3
3
|
/**
|
|
4
|
-
* CashExpenseType {:string} already exists.
|
|
4
|
+
* CashExpenseType {0:string} already exists.
|
|
5
5
|
*/
|
|
6
6
|
Errors["CashExpenseTypes_AlreadyExists"] = "CashExpenseTypes:AlreadyExists";
|
|
7
7
|
/**
|
|
8
|
+
* Cannot delete CheckoutOptionCategory because it has active CheckoutOptions associated with it.
|
|
9
|
+
*/
|
|
10
|
+
Errors["CheckoutOptionCategory_CannotDeleteCheckoutOptionCategoryWithActiveCheckoutOptions"] = "CheckoutOptionCategory:CannotDeleteCheckoutOptionCategoryWithActiveCheckoutOptions";
|
|
11
|
+
/**
|
|
8
12
|
* The requested BackendID is already in use
|
|
9
13
|
*/
|
|
10
14
|
Errors["ClientApplications_DuplicateBackendID"] = "ClientApplications:DuplicateBackendID";
|
|
@@ -29,6 +33,10 @@ export var Errors;
|
|
|
29
33
|
*/
|
|
30
34
|
Errors["Cultures_CurrencyAlreadyExists"] = "Cultures:CurrencyAlreadyExists";
|
|
31
35
|
/**
|
|
36
|
+
* Additional currency must differ from main currency.
|
|
37
|
+
*/
|
|
38
|
+
Errors["Cultures_AdditionalCurrencyMustDifferFromMainCurrency"] = "Cultures:AdditionalCurrencyMustDifferFromMainCurrency";
|
|
39
|
+
/**
|
|
32
40
|
* The selected cashhandler is not available for the given currency
|
|
33
41
|
*/
|
|
34
42
|
Errors["Cultures_CashHandlerCurrencyMismatch"] = "Cultures:CashHandlerCurrencyMismatch";
|
|
@@ -41,10 +49,6 @@ export var Errors;
|
|
|
41
49
|
*/
|
|
42
50
|
Errors["Cultures_MustHaveAtLeastOneLanguage"] = "Cultures:MustHaveAtLeastOneLanguage";
|
|
43
51
|
/**
|
|
44
|
-
* This CustomerReturnReason already exists
|
|
45
|
-
*/
|
|
46
|
-
Errors["CustomerReturnReasons_AlreadyExists"] = "CustomerReturnReasons:AlreadyExists";
|
|
47
|
-
/**
|
|
48
52
|
* Can't delete OrderLedgerType because it's not custom
|
|
49
53
|
*/
|
|
50
54
|
Errors["DeleteOrderLedgerType_OrderLedgerTypeNotCustom"] = "DeleteOrderLedgerType:OrderLedgerTypeNotCustom";
|
|
@@ -89,7 +93,7 @@ export var Errors;
|
|
|
89
93
|
*/
|
|
90
94
|
Errors["GiftCardConfigurations_InvalidUsageTypeForHandler"] = "GiftCardConfigurations:InvalidUsageTypeForHandler";
|
|
91
95
|
/**
|
|
92
|
-
* This product already has
|
|
96
|
+
* This product already has a giftcard product
|
|
93
97
|
*/
|
|
94
98
|
Errors["GiftCards_ProductAlreadyExists"] = "GiftCards:ProductAlreadyExists";
|
|
95
99
|
/**
|
|
@@ -109,6 +113,10 @@ export var Errors;
|
|
|
109
113
|
*/
|
|
110
114
|
Errors["GiftCards_InvalidProductType"] = "GiftCards:InvalidProductType";
|
|
111
115
|
/**
|
|
116
|
+
* Field '{0:string}' is required for the creation of a new Loyalty Program.
|
|
117
|
+
*/
|
|
118
|
+
Errors["LoyaltyProgram_MissingFieldOnLoyaltyProgramCreation"] = "LoyaltyProgram:MissingFieldOnLoyaltyProgramCreation";
|
|
119
|
+
/**
|
|
112
120
|
* There already exists opening hours for organization {organizationUnitName:string} and day {dayOfWeek:EVA.Core.DayOfWeek}
|
|
113
121
|
*/
|
|
114
122
|
Errors["OpeningHours_DuplicateOpeningHoursDayOfWeek"] = "OpeningHours:DuplicateOpeningHoursDayOfWeek";
|
|
@@ -133,14 +141,6 @@ export var Errors;
|
|
|
133
141
|
*/
|
|
134
142
|
Errors["OpeningHoursTypes_TypeHasTemplatesAndCannotBeDeleted"] = "OpeningHoursTypes:TypeHasTemplatesAndCannotBeDeleted";
|
|
135
143
|
/**
|
|
136
|
-
* OrderField with name '{:string}' already exists.
|
|
137
|
-
*/
|
|
138
|
-
Errors["OrderFields_AlreadyExists"] = "OrderFields:AlreadyExists";
|
|
139
|
-
/**
|
|
140
|
-
* Unknown data type: {:string}
|
|
141
|
-
*/
|
|
142
|
-
Errors["OrderFields_UnknownDataType"] = "OrderFields:UnknownDataType";
|
|
143
|
-
/**
|
|
144
144
|
* The OrganizationUnitSetScope is still being used, cannot delete.
|
|
145
145
|
*/
|
|
146
146
|
Errors["OrganizationUnitSets_CannotDeleteScopeInUse"] = "OrganizationUnitSets:CannotDeleteScopeInUse";
|
|
@@ -149,7 +149,7 @@ export var Errors;
|
|
|
149
149
|
*/
|
|
150
150
|
Errors["OrganizationUnitSets_CannotDeleteInUse"] = "OrganizationUnitSets:CannotDeleteInUse";
|
|
151
151
|
/**
|
|
152
|
-
* Set {:string} is a set managed by EVA and cannot be modified.
|
|
152
|
+
* Set {0:string} is a set managed by EVA and cannot be modified.
|
|
153
153
|
*/
|
|
154
154
|
Errors["OrganizationUnitSets_CannotModifySystemSet"] = "OrganizationUnitSets:CannotModifySystemSet";
|
|
155
155
|
/**
|
|
@@ -177,6 +177,14 @@ export var Errors;
|
|
|
177
177
|
*/
|
|
178
178
|
Errors["PaymentTransactionLedgerTypes_IsInternal"] = "PaymentTransactionLedgerTypes:IsInternal";
|
|
179
179
|
/**
|
|
180
|
+
* The payment type category can be only `credit` for installments.
|
|
181
|
+
*/
|
|
182
|
+
Errors["PaymentType_InstallmentsShouldBeCredit"] = "PaymentType:InstallmentsShouldBeCredit";
|
|
183
|
+
/**
|
|
184
|
+
* The minimum number of installments should be lower than the maximum number of installments.
|
|
185
|
+
*/
|
|
186
|
+
Errors["PaymentType_InstallmentAmounts"] = "PaymentType:InstallmentAmounts";
|
|
187
|
+
/**
|
|
180
188
|
* Cannot create relation to historical price list
|
|
181
189
|
*/
|
|
182
190
|
Errors["PriceLists_CannotCreateRelationToHistoricalPriceList"] = "PriceLists:CannotCreateRelationToHistoricalPriceList";
|
|
@@ -189,15 +197,15 @@ export var Errors;
|
|
|
189
197
|
*/
|
|
190
198
|
Errors["Pricing_BackendIdentifiersRequired"] = "Pricing:BackendIdentifiersRequired";
|
|
191
199
|
/**
|
|
192
|
-
* PriceList {:
|
|
200
|
+
* PriceList {0:id} has the same BackendID.
|
|
193
201
|
*/
|
|
194
202
|
Errors["Pricing_DuplicateBackendID"] = "Pricing:DuplicateBackendID";
|
|
195
203
|
/**
|
|
196
|
-
* You do not have access to pricelist {:
|
|
204
|
+
* You do not have access to pricelist {0:id}.
|
|
197
205
|
*/
|
|
198
206
|
Errors["Pricing_CannotViewPriceList"] = "Pricing:CannotViewPriceList";
|
|
199
207
|
/**
|
|
200
|
-
* Barcode {barcode:string} already exists for ProductID {productID:
|
|
208
|
+
* Barcode {barcode:string} already exists for ProductID {productID:id}
|
|
201
209
|
*/
|
|
202
210
|
Errors["ProductBarcodes_BarcodeAlreadyExists"] = "ProductBarcodes:BarcodeAlreadyExists";
|
|
203
211
|
/**
|
|
@@ -225,23 +233,31 @@ export var Errors;
|
|
|
225
233
|
*/
|
|
226
234
|
Errors["ProductUnitOfMeasures_InvalidQuantity"] = "ProductUnitOfMeasures:InvalidQuantity";
|
|
227
235
|
/**
|
|
228
|
-
* RefundCorrectionReason with BackendID '{:string}' already exists.
|
|
236
|
+
* RefundCorrectionReason with BackendID '{0:string}' already exists.
|
|
229
237
|
*/
|
|
230
238
|
Errors["RefundCorrectionReasons_AlreadyExists"] = "RefundCorrectionReasons:AlreadyExists";
|
|
231
239
|
/**
|
|
240
|
+
* A resend reason with this name already exists
|
|
241
|
+
*/
|
|
242
|
+
Errors["ResendReason_AlreadyExists"] = "ResendReason:AlreadyExists";
|
|
243
|
+
/**
|
|
232
244
|
* This return reason already exists.
|
|
233
245
|
*/
|
|
234
246
|
Errors["ReturnReasons_AlreadyExists"] = "ReturnReasons:AlreadyExists";
|
|
235
247
|
/**
|
|
236
|
-
*
|
|
248
|
+
* Remark is required for this return reason.
|
|
249
|
+
*/
|
|
250
|
+
Errors["ReturnReasons_RemarkIsRequired"] = "ReturnReasons:RemarkIsRequired";
|
|
251
|
+
/**
|
|
252
|
+
* A role set with BackendID '{0:string}' already exists
|
|
237
253
|
*/
|
|
238
254
|
Errors["RoleSets_RoleSetWithBackendIDAlreadyExists"] = "RoleSets:RoleSetWithBackendIDAlreadyExists";
|
|
239
255
|
/**
|
|
240
|
-
* Role set '{:string}' is still attached to organization units
|
|
256
|
+
* Role set '{0:string}' is still attached to organization units
|
|
241
257
|
*/
|
|
242
258
|
Errors["RoleSets_RoleSetIsStillAttached"] = "RoleSets:RoleSetIsStillAttached";
|
|
243
259
|
/**
|
|
244
|
-
* The code `{:string}` is preserved for system roles.
|
|
260
|
+
* The code `{0:string}` is preserved for system roles.
|
|
245
261
|
*/
|
|
246
262
|
Errors["Roles_CodeIsPreservedForSystemRoles"] = "Roles:CodeIsPreservedForSystemRoles";
|
|
247
263
|
/**
|
|
@@ -249,23 +265,23 @@ export var Errors;
|
|
|
249
265
|
*/
|
|
250
266
|
Errors["Roles_CannotModifyOrDeleteNewBlackRole"] = "Roles:CannotModifyOrDeleteNewBlackRole";
|
|
251
267
|
/**
|
|
252
|
-
* OrganizationUnit with ID {:string} not found on row {:int32}
|
|
268
|
+
* OrganizationUnit with ID {0:string} not found on row {1:int32}
|
|
253
269
|
*/
|
|
254
270
|
Errors["SettingsExcelImporter_OrganizationUnitByIDNotFound"] = "SettingsExcelImporter:OrganizationUnitByIDNotFound";
|
|
255
271
|
/**
|
|
256
|
-
* OrganizationUnit with BackendID {:string} not found on row {:int32}
|
|
272
|
+
* OrganizationUnit with BackendID {0:string} not found on row {1:int32}
|
|
257
273
|
*/
|
|
258
274
|
Errors["SettingsExcelImporter_OrganizationUnitByBackendIDNotFound"] = "SettingsExcelImporter:OrganizationUnitByBackendIDNotFound";
|
|
259
275
|
/**
|
|
260
|
-
* No BackendID or OrganizationUnitID provided for row {:
|
|
276
|
+
* No BackendID or OrganizationUnitID provided for row {0:id}
|
|
261
277
|
*/
|
|
262
278
|
Errors["SettingsExcelImporter_NoOrganizationUnitIdentifier"] = "SettingsExcelImporter:NoOrganizationUnitIdentifier";
|
|
263
279
|
/**
|
|
264
|
-
* Value on row {:
|
|
280
|
+
* Value on row {0:id} looks like a masked value
|
|
265
281
|
*/
|
|
266
282
|
Errors["SettingsExcelImporter_MaskedValueImport"] = "SettingsExcelImporter:MaskedValueImport";
|
|
267
283
|
/**
|
|
268
|
-
* Validation of the Excel file failed: {:string}
|
|
284
|
+
* Validation of the Excel file failed: {0:string}
|
|
269
285
|
*/
|
|
270
286
|
Errors["StockAllocationRules_UploadStockAllocationRuleValidationError"] = "StockAllocationRules:UploadStockAllocationRuleValidationError";
|
|
271
287
|
/**
|
|
@@ -273,15 +289,15 @@ export var Errors;
|
|
|
273
289
|
*/
|
|
274
290
|
Errors["StockAllocations_OrganizationUnitRequired"] = "StockAllocations:OrganizationUnitRequired";
|
|
275
291
|
/**
|
|
276
|
-
* OrganizationUnit {:
|
|
292
|
+
* OrganizationUnit {0:id} is not directly supplied by OrganizationUnit {1:id}.
|
|
277
293
|
*/
|
|
278
294
|
Errors["StockAllocations_InvalidOrganizationUnit"] = "StockAllocations:InvalidOrganizationUnit";
|
|
279
295
|
/**
|
|
280
|
-
* StockLabel with name '{:string}' already exists
|
|
296
|
+
* StockLabel with name '{0:string}' already exists
|
|
281
297
|
*/
|
|
282
298
|
Errors["StockLabels_AlreadyExists"] = "StockLabels:AlreadyExists";
|
|
283
299
|
/**
|
|
284
|
-
* StartDate ({:string}) cannot be after EndDate: ({:string})
|
|
300
|
+
* StartDate ({0:string}) cannot be after EndDate: ({1:string})
|
|
285
301
|
*/
|
|
286
302
|
Errors["TaxService_StartDateShouldBeBeforeEndDate"] = "TaxService:StartDateShouldBeBeforeEndDate";
|
|
287
303
|
/**
|
|
@@ -289,7 +305,7 @@ export var Errors;
|
|
|
289
305
|
*/
|
|
290
306
|
Errors["TaxService_StartAndEndDateRequired"] = "TaxService:StartAndEndDateRequired";
|
|
291
307
|
/**
|
|
292
|
-
* Validation of the Excel file failed: {:string}
|
|
308
|
+
* Validation of the Excel file failed: {0:string}
|
|
293
309
|
*/
|
|
294
310
|
Errors["TaxService_InvalidExcelFile"] = "TaxService:InvalidExcelFile";
|
|
295
311
|
/**
|
|
@@ -297,7 +313,7 @@ export var Errors;
|
|
|
297
313
|
*/
|
|
298
314
|
Errors["UnitOfMeasures_AlreadyExists"] = "UnitOfMeasures:AlreadyExists";
|
|
299
315
|
/**
|
|
300
|
-
* UnitPriceCorrectionReason with BackendID '{:string}' already exists.
|
|
316
|
+
* UnitPriceCorrectionReason with BackendID '{0:string}' already exists.
|
|
301
317
|
*/
|
|
302
318
|
Errors["UnitPriceCorrectionReasons_AlreadyExists"] = "UnitPriceCorrectionReasons:AlreadyExists";
|
|
303
319
|
/**
|
|
@@ -319,6 +335,12 @@ export var ConfigurationListSettingsTypedFilters;
|
|
|
319
335
|
ConfigurationListSettingsTypedFilters[ConfigurationListSettingsTypedFilters["ShowTyped"] = 1] = "ShowTyped";
|
|
320
336
|
ConfigurationListSettingsTypedFilters[ConfigurationListSettingsTypedFilters["ShowUntyped"] = 2] = "ShowUntyped";
|
|
321
337
|
})(ConfigurationListSettingsTypedFilters || (ConfigurationListSettingsTypedFilters = {}));
|
|
338
|
+
export var LoyaltyLoyaltyPointAdjustmentType;
|
|
339
|
+
(function (LoyaltyLoyaltyPointAdjustmentType) {
|
|
340
|
+
LoyaltyLoyaltyPointAdjustmentType[LoyaltyLoyaltyPointAdjustmentType["Deposit"] = 0] = "Deposit";
|
|
341
|
+
LoyaltyLoyaltyPointAdjustmentType[LoyaltyLoyaltyPointAdjustmentType["Withdraw"] = 1] = "Withdraw";
|
|
342
|
+
LoyaltyLoyaltyPointAdjustmentType[LoyaltyLoyaltyPointAdjustmentType["Rebalance"] = 2] = "Rebalance";
|
|
343
|
+
})(LoyaltyLoyaltyPointAdjustmentType || (LoyaltyLoyaltyPointAdjustmentType = {}));
|
|
322
344
|
export var OrganizationUnitSetsOrganizationSubsetOrdering;
|
|
323
345
|
(function (OrganizationUnitSetsOrganizationSubsetOrdering) {
|
|
324
346
|
OrganizationUnitSetsOrganizationSubsetOrdering[OrganizationUnitSetsOrganizationSubsetOrdering["Ascending"] = 0] = "Ascending";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-services-core-management.js","sourceRoot":"","sources":["../src/eva-services-core-management.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eva-services-core-management.js","sourceRoot":"","sources":["../src/eva-services-core-management.ts"],"names":[],"mappings":"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"}
|