Skip to content

Commit b6429e5

Browse files
committed
fix: 누락된 개인후원 스키마 추가
1 parent 98dc410 commit b6429e5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/shop/src/schemas/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)