@springtree/eva-services-core-management 9.3.0 → 9.4.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.
@@ -9,10 +9,6 @@ export declare enum Errors {
9
9
  */
10
10
  CheckoutOptionCategory_CannotDeleteCheckoutOptionCategoryWithActiveCheckoutOptions = "CheckoutOptionCategory:CannotDeleteCheckoutOptionCategoryWithActiveCheckoutOptions",
11
11
  /**
12
- * The requested BackendID is already in use
13
- */
14
- ClientApplications_DuplicateBackendID = "ClientApplications:DuplicateBackendID",
15
- /**
16
12
  * This user already exists, use the UpdateUser service.
17
13
  */
18
14
  CreateEmployee_UserAlreadyExists = "CreateEmployee:UserAlreadyExists",
@@ -61,10 +57,6 @@ export declare enum Errors {
61
57
  */
62
58
  DiscountService_DiscountAdheresToCampaignTime = "DiscountService:DiscountAdheresToCampaignTime",
63
59
  /**
64
- * You don't have permission to set discount budget information.
65
- */
66
- DiscountService_NotAllowedToSetDiscountBudgetData = "DiscountService:NotAllowedToSetDiscountBudgetData",
67
- /**
68
60
  * An elevation skip reason with this name already exists
69
61
  */
70
62
  ElevationSkipReason_AlreadyExists = "ElevationSkipReason:AlreadyExists",
@@ -217,10 +209,6 @@ export declare enum Errors {
217
209
  */
218
210
  ProductBarcodes_BarcodeAlreadyExists = "ProductBarcodes:BarcodeAlreadyExists",
219
211
  /**
220
- * Product not found
221
- */
222
- ProductBarcodes_ProductNotFound = "ProductBarcodes:ProductNotFound",
223
- /**
224
212
  * UnitOfMeasure not found
225
213
  */
226
214
  ProductBarcodes_UnitOfMeasureNotFound = "ProductBarcodes:UnitOfMeasureNotFound",
@@ -313,14 +301,6 @@ export declare enum Errors {
313
301
  */
314
302
  StockLabels_AlreadyExists = "StockLabels:AlreadyExists",
315
303
  /**
316
- * StartDate ({0:string}) cannot be after EndDate: ({1:string})
317
- */
318
- TaxService_StartDateShouldBeBeforeEndDate = "TaxService:StartDateShouldBeBeforeEndDate",
319
- /**
320
- * StartDate cannot exist without EndDate and vice-versa
321
- */
322
- TaxService_StartAndEndDateRequired = "TaxService:StartAndEndDateRequired",
323
- /**
324
304
  * Validation of the Excel file failed: {0:string}
325
305
  */
326
306
  TaxService_InvalidExcelFile = "TaxService:InvalidExcelFile",
@@ -1745,6 +1725,19 @@ export interface CasesListCasesResponse_User<ID_TYPE = string> {
1745
1725
  LastName?: string;
1746
1726
  }
1747
1727
  /**
1728
+ * Print case receipt
1729
+ */
1730
+ export interface PrintCaseReceipt<ID_TYPE = string> {
1731
+ /**
1732
+ * Entity type: Case
1733
+ */
1734
+ CaseID: ID_TYPE;
1735
+ /**
1736
+ * Entity type: Station
1737
+ */
1738
+ StationID?: ID_TYPE;
1739
+ }
1740
+ /**
1748
1741
  * Push and import a case.
1749
1742
  */
1750
1743
  export interface PushCase<ID_TYPE = string> {