@open-tender/types 0.4.57 → 0.4.59
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.
|
@@ -295,3 +295,13 @@ export interface CheckoutTenderPos {
|
|
|
295
295
|
export interface OrderCreatePos extends Omit<OrderCreate, 'customer'> {
|
|
296
296
|
customer: CustomerIdentify | null;
|
|
297
297
|
}
|
|
298
|
+
export interface OrderCreateSendReceipt {
|
|
299
|
+
email: string | null;
|
|
300
|
+
phone: string | null;
|
|
301
|
+
}
|
|
302
|
+
export interface GratuityIncrement {
|
|
303
|
+
amount?: Money;
|
|
304
|
+
isDefault: boolean;
|
|
305
|
+
percentage: string;
|
|
306
|
+
}
|
|
307
|
+
export declare type GratuityIncrements = GratuityIncrement[];
|
|
@@ -295,3 +295,13 @@ export interface CheckoutTenderPos {
|
|
|
295
295
|
export interface OrderCreatePos extends Omit<OrderCreate, 'customer'> {
|
|
296
296
|
customer: CustomerIdentify | null;
|
|
297
297
|
}
|
|
298
|
+
export interface OrderCreateSendReceipt {
|
|
299
|
+
email: string | null;
|
|
300
|
+
phone: string | null;
|
|
301
|
+
}
|
|
302
|
+
export interface GratuityIncrement {
|
|
303
|
+
amount?: Money;
|
|
304
|
+
isDefault: boolean;
|
|
305
|
+
percentage: string;
|
|
306
|
+
}
|
|
307
|
+
export declare type GratuityIncrements = GratuityIncrement[];
|
package/package.json
CHANGED