@figuredev/business-config-sdk
Advanced tools
Comparing version 0.5.0 to 0.6.0
{ | ||
"name": "@figuredev/business-config-sdk", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"license": "ISC", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -1,3 +0,23 @@ | ||
import { Printer } from "../src/domain/printer/types" | ||
export type PrinterSettingsDTO = { | ||
saleMerchantCopies: number | null | ||
saleCustomerCopies: number | null | ||
configIndividualizeItems: number | null | ||
} | ||
export type PrinterDTO = Printer | ||
export type PrinterDTO = { | ||
id: string | ||
name: string | ||
printCategories: string[] | ||
type: PrinterType | ||
kdsTerminalId: number | null | ||
terminalId: number | null | ||
macAddress: string | ||
settings: Partial<PrinterSettingsDTO> | ||
} | ||
export enum PrinterType { | ||
Main = "main", | ||
Kitchen = "kitchen", | ||
Tag = "tag", | ||
Label = "label", | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4360
127