Skip to content

Commit

Permalink
chore(pickk-common): 🚀 release v1.7.21
Browse files Browse the repository at this point in the history
  • Loading branch information
greatSumini committed Aug 30, 2021
1 parent 7ee7cf1 commit 9dba276
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/pickk-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@
## v1.7.20

✨ update api to pickk-server v0.1.32

## v1.7.21

✨ update api to pickk-server v0.1.34
10 changes: 9 additions & 1 deletion packages/pickk-common/lib/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,14 @@ export type CreateItemDetailImageInput = {
urls: Array<Scalars['String']>;
};

export type CreateItemOpionValueInput = {
name: Scalars['String'];
priceVariant: Scalars['Int'];
};

export type CreateItemOptionInput = {
name: Scalars['String'];
values: Array<Scalars['String']>;
values: Array<CreateItemOpionValueInput>;
};

export type CreateItemOptionSetInput = {
Expand Down Expand Up @@ -873,6 +878,7 @@ export type ItemOptionValue = {
id: Scalars['Int'];
name: Scalars['String'];
order: Scalars['Float'];
priceVariant: Scalars['Int'];
updatedAt: Scalars['DateTime'];
};

Expand Down Expand Up @@ -1817,6 +1823,7 @@ export type OrderSheet = {
coupons: Array<Coupon>;
/** ApolloClient 최적화를 위한 필드입니다. order의 merchantUid와 같습니다. */
id: Scalars['String'];
me: User;
order: Order;
refundAccount?: Maybe<RefundAccount>;
shippingAddresses: Array<ShippingAddress>;
Expand Down Expand Up @@ -2046,6 +2053,7 @@ export type Product = {
item: Item;
itemId: Scalars['Int'];
itemOptionValues: Array<ItemOptionValue>;
priceVariant: Scalars['Int'];
shippingReservePolicy?: Maybe<ProductShippingReservePolicy>;
stock: Scalars['Int'];
/** 이 Product의 stock이 0이면 예약배송정책의 stock을 반환합니다. */
Expand Down
4 changes: 2 additions & 2 deletions packages/pickk-common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/pickk-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pickk/common",
"version": "1.7.20",
"version": "1.7.21",
"description": "common files for pickk development",
"keywords": [
"graphql",
Expand Down

0 comments on commit 9dba276

Please sign in to comment.