Skip to content

Commit

Permalink
Merge pull request #35 from HyunsDev:develop
Browse files Browse the repository at this point in the history
fix: fix 항목 수정 1.0.35
  • Loading branch information
HyunsDev authored Mar 26, 2024
2 parents 957a931 + 960cc3b commit 0d239c5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,32 @@

# 변경사항

## `v1.0.35`

> 이전 버전 수정 포함
### Object

* `CouponPriceDiscount` 타입 변경 ⚠️

* before

```typescript
type CouponPriceDiscount = {
type: "price";
price: number | 'free';
};
```

* after

```typescript
type CouponPriceDiscount = {
type: "price";
price: number;
};
```

## `v1.0.34`

> 이전 버전 수정 포함
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unibook-client",
"version": "1.0.34",
"version": "1.0.35",
"repository": "https://github.com/HyunsDev/unibook-client.git",
"author": "혀느현스 <[email protected]>",
"license": "Unlicense",
Expand Down
2 changes: 1 addition & 1 deletion src/object/coupon.object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type CouponTarget = CouponBookTarget;
export type CouponDiscountType = "price" | "rate";
export type CouponPriceDiscount = {
type: "price";
price: number | "free";
price: number;
};
export type CouponRateDiscount = {
type: "rate";
Expand Down

0 comments on commit 0d239c5

Please sign in to comment.