File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/shop/src/schemas Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,10 @@ namespace ShopSchemas {
117117 category_group : string ;
118118 category : string ;
119119
120+ donation_allowed : boolean ;
121+ donation_min_price : number | null ;
122+ donation_max_price : number | null ;
123+
120124 option_groups : OptionGroup [ ] ;
121125 leftover_stock : number ;
122126 tag_names : string [ ] ;
@@ -135,7 +139,7 @@ namespace ShopSchemas {
135139 id : string ;
136140 status : OrderProductItemStatus ;
137141 price : number ;
138- additional_price : number ;
142+ donation_price : number ;
139143 not_refundable_reason : string | null ;
140144 product : {
141145 id : string ;
@@ -204,6 +208,7 @@ namespace ShopSchemas {
204208 product_option : string | null ;
205209 custom_response : string | null ;
206210 } [ ] ;
211+ donation_price ?: number ;
207212 } ;
208213 export type OneItemOrderRequest = CartItemAppendRequest & { customer_info : CustomerInfo } ;
209214
You can’t perform that action at this time.
0 commit comments