@springtree/eva-services-core-management 2.3.4 → 2.4.0-beta.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.
@@ -1,5 +1,329 @@
1
- /**
2
- * Expose the service definitions
3
- */
4
- export * from './EVA.Core.Management.Services.js';
1
+ export var Errors;
2
+ (function (Errors) {
3
+ /**
4
+ * CashExpenseType {:string} already exists.
5
+ */
6
+ Errors["CashExpenseTypes_AlreadyExists"] = "CashExpenseTypes:AlreadyExists";
7
+ /**
8
+ * The requested BackendID is already in use
9
+ */
10
+ Errors["ClientApplications_DuplicateBackendID"] = "ClientApplications:DuplicateBackendID";
11
+ /**
12
+ * This user already exists, use the UpdateUser service.
13
+ */
14
+ Errors["CreateEmployee_UserAlreadyExists"] = "CreateEmployee:UserAlreadyExists";
15
+ /**
16
+ * There is already an existing customer.
17
+ */
18
+ Errors["CreateEmployee_ExistingCustomer"] = "CreateEmployee:ExistingCustomer";
19
+ /**
20
+ * Can't create OrderLedgerType because its name already exists
21
+ */
22
+ Errors["CreateOrderLedgerType_OrderLedgerTypeAlreadyExists"] = "CreateOrderLedgerType:OrderLedgerTypeAlreadyExists";
23
+ /**
24
+ * This currency already exists for this OrganizationUnit
25
+ */
26
+ Errors["Cultures_CurrencyAlreadyExists"] = "Cultures:CurrencyAlreadyExists";
27
+ /**
28
+ * The selected cashhandler is not available for the given currency
29
+ */
30
+ Errors["Cultures_CashHandlerCurrencyMismatch"] = "Cultures:CashHandlerCurrencyMismatch";
31
+ /**
32
+ * This language already exists for this organization unit
33
+ */
34
+ Errors["Cultures_LanguageAlreadyExists"] = "Cultures:LanguageAlreadyExists";
35
+ /**
36
+ * The organization unit must have at least one (inherited) language. Add a new language before removing this language.
37
+ */
38
+ Errors["Cultures_MustHaveAtLeastOneLanguage"] = "Cultures:MustHaveAtLeastOneLanguage";
39
+ /**
40
+ * This CustomerReturnReason already exists
41
+ */
42
+ Errors["CustomerReturnReasons_AlreadyExists"] = "CustomerReturnReasons:AlreadyExists";
43
+ /**
44
+ * Can't delete OrderLedgerType because it's not custom
45
+ */
46
+ Errors["DeleteOrderLedgerType_OrderLedgerTypeNotCustom"] = "DeleteOrderLedgerType:OrderLedgerTypeNotCustom";
47
+ /**
48
+ * UserID is required when logged in user is a Employee or API user.
49
+ */
50
+ Errors["DiscountCouponServices_UserIDRequired"] = "DiscountCouponServices:UserIDRequired";
51
+ /**
52
+ * Discount adheres to campaign start- and end date/time
53
+ */
54
+ Errors["DiscountService_DiscountAdheresToCampaignTime"] = "DiscountService:DiscountAdheresToCampaignTime";
55
+ /**
56
+ * You don't have permission to set discount budget information.
57
+ */
58
+ Errors["DiscountService_NotAllowedToSetDiscountBudgetData"] = "DiscountService:NotAllowedToSetDiscountBudgetData";
59
+ /**
60
+ * You can only export up to 100 products at a time.
61
+ */
62
+ Errors["ExportProductCostPriceLedgerSummary_TooManyProductsSelected"] = "ExportProductCostPriceLedgerSummary:TooManyProductsSelected";
63
+ /**
64
+ * Cannot generate identification codes for Single Sign-On users.
65
+ */
66
+ Errors["GenerateIdentificationCode_CannotGenerateIdentificationCodeForSingleSignOn"] = "GenerateIdentificationCode:CannotGenerateIdentificationCodeForSingleSignOn";
67
+ /**
68
+ * Handler is required
69
+ */
70
+ Errors["GiftCardConfigurations_MissingHandler"] = "GiftCardConfigurations:MissingHandler";
71
+ /**
72
+ * The given handler doesn't exist
73
+ */
74
+ Errors["GiftCardConfigurations_UnknownHandler"] = "GiftCardConfigurations:UnknownHandler";
75
+ /**
76
+ * The data is not in a valid format for the selected type
77
+ */
78
+ Errors["GiftCardConfigurations_InvalidData"] = "GiftCardConfigurations:InvalidData";
79
+ /**
80
+ * Usage type needs at least Sale or Payment, never None
81
+ */
82
+ Errors["GiftCardConfigurations_InvalidUsageType"] = "GiftCardConfigurations:InvalidUsageType";
83
+ /**
84
+ * The selected usage type is not supported for the selected handler
85
+ */
86
+ Errors["GiftCardConfigurations_InvalidUsageTypeForHandler"] = "GiftCardConfigurations:InvalidUsageTypeForHandler";
87
+ /**
88
+ * This product already has an giftcard product
89
+ */
90
+ Errors["GiftCards_ProductAlreadyExists"] = "GiftCards:ProductAlreadyExists";
91
+ /**
92
+ * Handler is required
93
+ */
94
+ Errors["GiftCards_MissingHandler"] = "GiftCards:MissingHandler";
95
+ /**
96
+ * The given type doesn't exist
97
+ */
98
+ Errors["GiftCards_UnknownType"] = "GiftCards:UnknownType";
99
+ /**
100
+ * The data is not in a valid format for the selected type
101
+ */
102
+ Errors["GiftCards_InvalidData"] = "GiftCards:InvalidData";
103
+ /**
104
+ * The given product isn't a giftcard
105
+ */
106
+ Errors["GiftCards_InvalidProductType"] = "GiftCards:InvalidProductType";
107
+ /**
108
+ * There already exists opening hours for organization {organizationUnitName:string} and day {dayOfWeek:EVA.Core.DayOfWeek}
109
+ */
110
+ Errors["OpeningHours_DuplicateOpeningHoursDayOfWeek"] = "OpeningHours:DuplicateOpeningHoursDayOfWeek";
111
+ /**
112
+ * There already exists opening hours for organization {organizationUnitName:string} and date {date:date}
113
+ */
114
+ Errors["OpeningHours_DuplicateOpeningHoursDate"] = "OpeningHours:DuplicateOpeningHoursDate";
115
+ /**
116
+ * This OpeningHoursType already exists
117
+ */
118
+ Errors["OpeningHoursTypes_AlreadyExists"] = "OpeningHoursTypes:AlreadyExists";
119
+ /**
120
+ * The name of an internal OpeningHoursType cannot be modified.
121
+ */
122
+ Errors["OpeningHoursTypes_NameOfInternalOpeningHourTypeCannotBeModified"] = "OpeningHoursTypes:NameOfInternalOpeningHourTypeCannotBeModified";
123
+ /**
124
+ * This OpeningHoursType is internal and cannot be deleted
125
+ */
126
+ Errors["OpeningHoursTypes_InternalTypesCannotBeDeleted"] = "OpeningHoursTypes:InternalTypesCannotBeDeleted";
127
+ /**
128
+ * This OpeningHoursType has (exception)templates attached and cannot be deleted
129
+ */
130
+ Errors["OpeningHoursTypes_TypeHasTemplatesAndCannotBeDeleted"] = "OpeningHoursTypes:TypeHasTemplatesAndCannotBeDeleted";
131
+ /**
132
+ * OrderField with name '{:string}' already exists.
133
+ */
134
+ Errors["OrderFields_AlreadyExists"] = "OrderFields:AlreadyExists";
135
+ /**
136
+ * Unknown data type: {:string}
137
+ */
138
+ Errors["OrderFields_UnknownDataType"] = "OrderFields:UnknownDataType";
139
+ /**
140
+ * The OrganizationUnitSetScope is still being used, cannot delete.
141
+ */
142
+ Errors["OrganizationUnitSets_CannotDeleteScopeInUse"] = "OrganizationUnitSets:CannotDeleteScopeInUse";
143
+ /**
144
+ * The OrganizationUnitSet is still being used, cannot delete.
145
+ */
146
+ Errors["OrganizationUnitSets_CannotDeleteInUse"] = "OrganizationUnitSets:CannotDeleteInUse";
147
+ /**
148
+ * Set {:string} is a set managed by EVA and cannot be modified.
149
+ */
150
+ Errors["OrganizationUnitSets_CannotModifySystemSet"] = "OrganizationUnitSets:CannotModifySystemSet";
151
+ /**
152
+ * It's not possible to use OrganizationUnitSetTypes.System to create new sets.
153
+ */
154
+ Errors["OrganizationUnitSets_CannotCreateSystemSet"] = "OrganizationUnitSets:CannotCreateSystemSet";
155
+ /**
156
+ * It's not possible to use an AdHoc set as a subset of another set.
157
+ */
158
+ Errors["OrganizationUnitSets_CannotUseAdHocSetsAsSubset"] = "OrganizationUnitSets:CannotUseAdHocSetsAsSubset";
159
+ /**
160
+ * Name is required when creating a non-AdHoc set.
161
+ */
162
+ Errors["OrganizationUnitSets_NameIsRequired"] = "OrganizationUnitSets:NameIsRequired";
163
+ /**
164
+ * OrganizationUnitShippingMethod already exists
165
+ */
166
+ Errors["OrganizationUnitShippingMethod_OrganizationUnitShippingMethodAlreadyExists"] = "OrganizationUnitShippingMethod:OrganizationUnitShippingMethodAlreadyExists";
167
+ /**
168
+ * This PaymentTransactionLedgerType already exists
169
+ */
170
+ Errors["PaymentTransactionLedgerTypes_AlreadyExists"] = "PaymentTransactionLedgerTypes:AlreadyExists";
171
+ /**
172
+ * This PaymentTransactionLedgerType is internal and can't be modified
173
+ */
174
+ Errors["PaymentTransactionLedgerTypes_IsInternal"] = "PaymentTransactionLedgerTypes:IsInternal";
175
+ /**
176
+ * Cannot create relation to historical price list
177
+ */
178
+ Errors["PriceLists_CannotCreateRelationToHistoricalPriceList"] = "PriceLists:CannotCreateRelationToHistoricalPriceList";
179
+ /**
180
+ * The given pricelist has a SpecialPriceListID, which is already attached to the given OU. SpecialPriceList is deprecated and should be remove from the pricelist.
181
+ */
182
+ Errors["PriceLists_SpecialPriceListIsAlreadyAttachedToOrganizationUnit"] = "PriceLists:SpecialPriceListIsAlreadyAttachedToOrganizationUnit";
183
+ /**
184
+ * A BackendID cannot be defined without a BackendSystemID and vice versa.
185
+ */
186
+ Errors["Pricing_BackendIdentifiersRequired"] = "Pricing:BackendIdentifiersRequired";
187
+ /**
188
+ * PriceList {:int64} has the same BackendID.
189
+ */
190
+ Errors["Pricing_DuplicateBackendID"] = "Pricing:DuplicateBackendID";
191
+ /**
192
+ * You do not have access to pricelist {:int64}.
193
+ */
194
+ Errors["Pricing_CannotViewPriceList"] = "Pricing:CannotViewPriceList";
195
+ /**
196
+ * Barcode {barcode:string} already exists for ProductID {productID:int64}
197
+ */
198
+ Errors["ProductBarcodes_BarcodeAlreadyExists"] = "ProductBarcodes:BarcodeAlreadyExists";
199
+ /**
200
+ * Product not found
201
+ */
202
+ Errors["ProductBarcodes_ProductNotFound"] = "ProductBarcodes:ProductNotFound";
203
+ /**
204
+ * UnitOfMeasure not found
205
+ */
206
+ Errors["ProductBarcodes_UnitOfMeasureNotFound"] = "ProductBarcodes:UnitOfMeasureNotFound";
207
+ /**
208
+ * The supplied backendid already exists.
209
+ */
210
+ Errors["ProductRequirements_DuplicateBackendID"] = "ProductRequirements:DuplicateBackendID";
211
+ /**
212
+ * Product not found
213
+ */
214
+ Errors["ProductUnitOfMeasures_ProductNotFound"] = "ProductUnitOfMeasures:ProductNotFound";
215
+ /**
216
+ * UnitOfMeasure not found
217
+ */
218
+ Errors["ProductUnitOfMeasures_UnitOfMeasureNotFound"] = "ProductUnitOfMeasures:UnitOfMeasureNotFound";
219
+ /**
220
+ * The Quantity should be greather than 0
221
+ */
222
+ Errors["ProductUnitOfMeasures_InvalidQuantity"] = "ProductUnitOfMeasures:InvalidQuantity";
223
+ /**
224
+ * RefundCorrectionReason with BackendID '{:string}' already exists.
225
+ */
226
+ Errors["RefundCorrectionReasons_AlreadyExists"] = "RefundCorrectionReasons:AlreadyExists";
227
+ /**
228
+ * This return reason already exists.
229
+ */
230
+ Errors["ReturnReasons_AlreadyExists"] = "ReturnReasons:AlreadyExists";
231
+ /**
232
+ * A role set with BackendID '{:string}' already exists
233
+ */
234
+ Errors["RoleSets_RoleSetWithBackendIDAlreadyExists"] = "RoleSets:RoleSetWithBackendIDAlreadyExists";
235
+ /**
236
+ * Role set '{:string}' is still attached to organization units
237
+ */
238
+ Errors["RoleSets_RoleSetIsStillAttached"] = "RoleSets:RoleSetIsStillAttached";
239
+ /**
240
+ * The code `{:string}` is preserved for system roles.
241
+ */
242
+ Errors["Roles_CodeIsPreservedForSystemRoles"] = "Roles:CodeIsPreservedForSystemRoles";
243
+ /**
244
+ * Cannot modify or delete New Black system roles.
245
+ */
246
+ Errors["Roles_CannotModifyOrDeleteNewBlackRole"] = "Roles:CannotModifyOrDeleteNewBlackRole";
247
+ /**
248
+ * OrganizationUnit with ID {:string} not found on row {:int32}
249
+ */
250
+ Errors["SettingsExcelImporter_OrganizationUnitByIDNotFound"] = "SettingsExcelImporter:OrganizationUnitByIDNotFound";
251
+ /**
252
+ * OrganizationUnit with BackendID {:string} not found on row {:int32}
253
+ */
254
+ Errors["SettingsExcelImporter_OrganizationUnitByBackendIDNotFound"] = "SettingsExcelImporter:OrganizationUnitByBackendIDNotFound";
255
+ /**
256
+ * No BackendID or OrganizationUnitID provided for row {:int64}
257
+ */
258
+ Errors["SettingsExcelImporter_NoOrganizationUnitIdentifier"] = "SettingsExcelImporter:NoOrganizationUnitIdentifier";
259
+ /**
260
+ * Value on row {:int64} looks like a masked value
261
+ */
262
+ Errors["SettingsExcelImporter_MaskedValueImport"] = "SettingsExcelImporter:MaskedValueImport";
263
+ /**
264
+ * Validation of the Excel file failed: {:string}
265
+ */
266
+ Errors["StockAllocationRules_UploadStockAllocationRuleValidationError"] = "StockAllocationRules:UploadStockAllocationRuleValidationError";
267
+ /**
268
+ * It's required to specify an OrganizationUnit to create this StockAllocationRule.
269
+ */
270
+ Errors["StockAllocations_OrganizationUnitRequired"] = "StockAllocations:OrganizationUnitRequired";
271
+ /**
272
+ * OrganizationUnit {:int64} is not directly supplied by OrganizationUnit {:int64}.
273
+ */
274
+ Errors["StockAllocations_InvalidOrganizationUnit"] = "StockAllocations:InvalidOrganizationUnit";
275
+ /**
276
+ * StockLabel with name '{:string}' already exists
277
+ */
278
+ Errors["StockLabels_AlreadyExists"] = "StockLabels:AlreadyExists";
279
+ /**
280
+ * StartDate ({:string}) cannot be after EndDate: ({:string})
281
+ */
282
+ Errors["TaxService_StartDateShouldBeBeforeEndDate"] = "TaxService:StartDateShouldBeBeforeEndDate";
283
+ /**
284
+ * StartDate cannot exist without EndDate and vice-versa
285
+ */
286
+ Errors["TaxService_StartAndEndDateRequired"] = "TaxService:StartAndEndDateRequired";
287
+ /**
288
+ * Validation of the Excel file failed: {:string}
289
+ */
290
+ Errors["TaxService_InvalidExcelFile"] = "TaxService:InvalidExcelFile";
291
+ /**
292
+ * This UnitOfMeasure already exists
293
+ */
294
+ Errors["UnitOfMeasures_AlreadyExists"] = "UnitOfMeasures:AlreadyExists";
295
+ /**
296
+ * UnitPriceCorrectionReason with BackendID '{:string}' already exists.
297
+ */
298
+ Errors["UnitPriceCorrectionReasons_AlreadyExists"] = "UnitPriceCorrectionReasons:AlreadyExists";
299
+ /**
300
+ * Can't update OrderLedgerType because it's not custom
301
+ */
302
+ Errors["UpdateOrderLedgerType_OrderLedgerTypeNotCustom"] = "UpdateOrderLedgerType:OrderLedgerTypeNotCustom";
303
+ /**
304
+ * Can't update OrderLedgerType because its name already exists
305
+ */
306
+ Errors["UpdateOrderLedgerType_OrderLedgerTypeAlreadyExists"] = "UpdateOrderLedgerType:OrderLedgerTypeAlreadyExists";
307
+ /**
308
+ * This UserOrigin already exists
309
+ */
310
+ Errors["UserOrigins_AlreadyExists"] = "UserOrigins:AlreadyExists";
311
+ })(Errors || (Errors = {}));
312
+ export var ConfigurationListSettingsTypedFilters;
313
+ (function (ConfigurationListSettingsTypedFilters) {
314
+ ConfigurationListSettingsTypedFilters[ConfigurationListSettingsTypedFilters["ShowAll"] = 0] = "ShowAll";
315
+ ConfigurationListSettingsTypedFilters[ConfigurationListSettingsTypedFilters["ShowTyped"] = 1] = "ShowTyped";
316
+ ConfigurationListSettingsTypedFilters[ConfigurationListSettingsTypedFilters["ShowUntyped"] = 2] = "ShowUntyped";
317
+ })(ConfigurationListSettingsTypedFilters || (ConfigurationListSettingsTypedFilters = {}));
318
+ export var OrganizationUnitSetsOrganizationSubsetOrdering;
319
+ (function (OrganizationUnitSetsOrganizationSubsetOrdering) {
320
+ OrganizationUnitSetsOrganizationSubsetOrdering[OrganizationUnitSetsOrganizationSubsetOrdering["Ascending"] = 0] = "Ascending";
321
+ OrganizationUnitSetsOrganizationSubsetOrdering[OrganizationUnitSetsOrganizationSubsetOrdering["Descending"] = 1] = "Descending";
322
+ })(OrganizationUnitSetsOrganizationSubsetOrdering || (OrganizationUnitSetsOrganizationSubsetOrdering = {}));
323
+ export var UsersEmployeesCreateEmployeeResults;
324
+ (function (UsersEmployeesCreateEmployeeResults) {
325
+ UsersEmployeesCreateEmployeeResults[UsersEmployeesCreateEmployeeResults["CreatedNewUser"] = 0] = "CreatedNewUser";
326
+ UsersEmployeesCreateEmployeeResults[UsersEmployeesCreateEmployeeResults["UpgradedExistingUser"] = 1] = "UpgradedExistingUser";
327
+ UsersEmployeesCreateEmployeeResults[UsersEmployeesCreateEmployeeResults["UpdatedExistingUser"] = 2] = "UpdatedExistingUser";
328
+ })(UsersEmployeesCreateEmployeeResults || (UsersEmployeesCreateEmployeeResults = {}));
5
329
  //# sourceMappingURL=eva-services-core-management.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"eva-services-core-management.js","sourceRoot":"","sources":["../src/eva-services-core-management.ts"],"names":[],"mappings":"AAAA;;EAEE;AACF,cAAc,mCAAmC,CAAC"}
1
+ {"version":3,"file":"eva-services-core-management.js","sourceRoot":"","sources":["../src/eva-services-core-management.ts"],"names":[],"mappings":"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"}