washday-sdk 1.6.85 → 1.6.86
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.
package/package.json
CHANGED
|
@@ -16,7 +16,6 @@ type ForbiddenOutsourcedTicketKeys =
|
|
|
16
16
|
| "printQuantity"
|
|
17
17
|
| "orderFolioFontSizePx"
|
|
18
18
|
| "ticketLineMarginBlockPx"
|
|
19
|
-
| "groupProductsBySection"
|
|
20
19
|
| "showOutsourcedExternalOrderId"
|
|
21
20
|
| "showPartnerNotes";
|
|
22
21
|
type _OutsourcedTicketDoesNotExposeForbiddenKeys = AssertNever<
|
|
@@ -90,6 +89,7 @@ const outsourcedOrderTicketStructure: IOutsourcedOrderTicketStructure = {
|
|
|
90
89
|
showOrderNotes: false,
|
|
91
90
|
orderFolioFontSizePreset: "large",
|
|
92
91
|
ticketLineSpacingPreset: "medium",
|
|
92
|
+
groupProductsBySection: false,
|
|
93
93
|
showPartnerPhone: true,
|
|
94
94
|
};
|
|
95
95
|
|
|
@@ -138,7 +138,6 @@ for (const field of [
|
|
|
138
138
|
"printQuantity",
|
|
139
139
|
"orderFolioFontSizePx",
|
|
140
140
|
"ticketLineMarginBlockPx",
|
|
141
|
-
"groupProductsBySection",
|
|
142
141
|
"showOutsourcedExternalOrderId",
|
|
143
142
|
"showPartnerNotes",
|
|
144
143
|
]) {
|
package/src/interfaces/Store.ts
CHANGED
|
@@ -341,6 +341,7 @@ export interface IOutsourcedOrderTicketStructure {
|
|
|
341
341
|
printLogoOnTicket: Boolean,
|
|
342
342
|
showStoreName: Boolean,
|
|
343
343
|
showOrderNotes: Boolean,
|
|
344
|
+
groupProductsBySection?: Boolean,
|
|
344
345
|
orderFolioFontSizePreset?: TicketVisualPreset,
|
|
345
346
|
ticketLineSpacingPreset?: TicketVisualPreset,
|
|
346
347
|
showPartnerPhone?: Boolean,
|