@open-tender/types 0.4.58 → 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.
|
@@ -299,3 +299,9 @@ export interface OrderCreateSendReceipt {
|
|
|
299
299
|
email: string | null;
|
|
300
300
|
phone: string | null;
|
|
301
301
|
}
|
|
302
|
+
export interface GratuityIncrement {
|
|
303
|
+
amount?: Money;
|
|
304
|
+
isDefault: boolean;
|
|
305
|
+
percentage: string;
|
|
306
|
+
}
|
|
307
|
+
export declare type GratuityIncrements = GratuityIncrement[];
|
|
@@ -299,3 +299,9 @@ export interface OrderCreateSendReceipt {
|
|
|
299
299
|
email: string | null;
|
|
300
300
|
phone: string | null;
|
|
301
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