File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
docs/surfaces/point-of-sale/staticPages/pages
src/surfaces/point-of-sale/types Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @shopify/ui-extensions ' : patch
3
+ ---
4
+
5
+ add optional ` shippingLines.taxLines ` property.
Original file line number Diff line number Diff line change @@ -64,8 +64,9 @@ Refer to the [migration guide](/docs/api/pos-ui-extensions/migrating) for more i
64
64
- Added optional \`currency\` property to \`Discount\` interface.
65
65
- Added \`executedAt\` property to \`BaseTransactionComplete\` interface.
66
66
- Added optional \`exchangeId\` and \`returnId\` property to \`ReturnTransactionData\` interface.
67
- - Added optional \`onBlur\` handler to \`SearchBar\` component.
68
67
- Added required \`variantId\` property to \`ProductApi\` interface.
68
+ - Added optional \`taxLines\` property to \`ShippingLine\` interface.
69
+ - Added optional \`onBlur\` handler to \`SearchBar\` component.
69
70
70
71
` ,
71
72
} ,
Original file line number Diff line number Diff line change 1
1
import type { Money } from './money' ;
2
+ import type { TaxLine } from './tax-line' ;
2
3
3
4
export interface ShippingLine {
4
5
handle ?: string ;
5
6
price : Money ;
6
7
title ?: string ;
8
+ taxLines ?: TaxLine [ ] ;
7
9
}
8
10
9
11
export interface CalculatedShippingLine extends ShippingLine {
You can’t perform that action at this time.
0 commit comments