Skip to content

Commit

Permalink
chore(pickk-common): 🚀 release v1.9.15
Browse files Browse the repository at this point in the history
  • Loading branch information
syoung125 committed Oct 23, 2021
1 parent c91f6d1 commit 24de592
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 85 deletions.
4 changes: 4 additions & 0 deletions packages/pickk-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,7 @@
## v1.9.14

✨ update api to pickk-server v1.0.48

## v1.9.15

✨ update api to pickk-server v1.0.52
160 changes: 78 additions & 82 deletions packages/pickk-common/lib/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,6 @@ export type AddItemPriceInput = {
startAt?: Maybe<Scalars['DateTime']>;
};

export type AddItemSizeChartInput = {
accDepth?: Maybe<Scalars['Float']>;
accHeight?: Maybe<Scalars['Float']>;
accWidth?: Maybe<Scalars['Float']>;
chestWidth?: Maybe<Scalars['Float']>;
crossStrapLength?: Maybe<Scalars['Float']>;
glassBridgeLength?: Maybe<Scalars['Float']>;
glassLegLength?: Maybe<Scalars['Float']>;
glassWidth?: Maybe<Scalars['Float']>;
hemWidth?: Maybe<Scalars['Float']>;
name: Scalars['String'];
riseHeight?: Maybe<Scalars['Float']>;
shoulderWidth?: Maybe<Scalars['Float']>;
sleeveLength?: Maybe<Scalars['Float']>;
thighWidth?: Maybe<Scalars['Float']>;
totalLength?: Maybe<Scalars['Float']>;
waistWidth?: Maybe<Scalars['Float']>;
watchBandDepth?: Maybe<Scalars['Float']>;
};

export type AddItemUrlInput = {
isPrimary: Scalars['Boolean'];
url: Scalars['String'];
Expand Down Expand Up @@ -422,6 +402,12 @@ export type CreateItemOptionSetInput = {
options: Array<CreateItemOptionInput>;
};

export type CreateItemSizeChartInput = {
labels: Array<Scalars['String']>;
recommendations?: Maybe<Array<ItemSizeRecommendationInput>>;
sizes: Array<ItemSizeInput>;
};

export type CreateLookDigestInput = {
itemId: Scalars['Int'];
size: Scalars['String'];
Expand Down Expand Up @@ -772,6 +758,12 @@ export type FindSaleStrategyInput = {
canUseMileage: Scalars['Boolean'];
};

export type FollowOutput = {
id: Scalars['Int'];
/** [MODEL ONLY] */
isFollowing?: Maybe<Scalars['Boolean']>;
};

export type GetAppleAuthCodeInput = {
clientType: AppleClientType;
code: Scalars['String'];
Expand Down Expand Up @@ -899,8 +891,7 @@ export type Item = {
sellPrice: Scalars['Float'];
/** 판매가능시점(=활성전환일) */
sellableAt?: Maybe<Scalars['DateTime']>;
sizeChartMetaDatas?: Maybe<Array<ItemSizeChartMetaData>>;
sizeCharts?: Maybe<Array<ItemSizeChart>>;
sizeChart?: Maybe<ItemSizeChart>;
updatedAt: Scalars['DateTime'];
urls: Array<ItemUrl>;
};
Expand Down Expand Up @@ -1031,33 +1022,35 @@ export type ItemSalePolicy = {
updatedAt: Scalars['DateTime'];
};

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

export type ItemSizeChart = {
accDepth?: Maybe<Scalars['Float']>;
accHeight?: Maybe<Scalars['Float']>;
accWidth?: Maybe<Scalars['Float']>;
chestWidth?: Maybe<Scalars['Float']>;
createdAt: Scalars['DateTime'];
crossStrapLength?: Maybe<Scalars['Float']>;
glassBridgeLength?: Maybe<Scalars['Float']>;
glassLegLength?: Maybe<Scalars['Float']>;
glassWidth?: Maybe<Scalars['Float']>;
hemWidth?: Maybe<Scalars['Float']>;
id: Scalars['Int'];
itemId: Scalars['Int'];
name: Scalars['String'];
riseHeight?: Maybe<Scalars['Float']>;
shoulderWidth?: Maybe<Scalars['Float']>;
sleeveLength?: Maybe<Scalars['Float']>;
thighWidth?: Maybe<Scalars['Float']>;
totalLength?: Maybe<Scalars['Float']>;
labels: Array<Scalars['String']>;
recommendations?: Maybe<Array<ItemSizeRecommendation>>;
sizes: Array<ItemSize>;
updatedAt: Scalars['DateTime'];
waistWidth?: Maybe<Scalars['Float']>;
watchBandDepth?: Maybe<Scalars['Float']>;
};

export type ItemSizeChartMetaData = {
columnName: Scalars['String'];
displayName: Scalars['String'];
export type ItemSizeInput = {
name: Scalars['String'];
values: Array<Scalars['String']>;
};

export type ItemSizeRecommendation = {
height: Scalars['Float'];
sizeName: Scalars['String'];
weight: Scalars['Float'];
};

export type ItemSizeRecommendationInput = {
height: Scalars['Float'];
sizeName: Scalars['String'];
weight: Scalars['Float'];
};

export type ItemUrl = {
Expand Down Expand Up @@ -1275,7 +1268,6 @@ export type Mutation = {
activateItemPrice: Item;
addItemDetailImages: Item;
addItemPrice: Item;
addItemSizeCharts: Item;
addItemUrl: ItemUrl;
addMeRefundAccount: RefundAccount;
addMeShippingAddress: ShippingAddress;
Expand Down Expand Up @@ -1307,17 +1299,18 @@ export type Mutation = {
createItemOptionSet: Item;
createLook: Look;
createMyCartItem: CartItem;
createRootSizeChart: Item;
createSeller: Seller;
createSellerSizeChart: Item;
createShippingReservePolicy: Product;
createUser: User;
createVideo: Video;
dodgeVbankOrder: BaseOrderOutput;
failOrder: BaseOrderOutput;
follow: Scalars['Boolean'];
follow: FollowOutput;
hit: Scalars['Boolean'];
like: Scalars['Boolean'];
manualCreateItem: Item;
modifyItemSizeCharts: Item;
own: Scalars['Boolean'];
registerExchangeRequest: ExchangeRequest;
registerOrder: BaseOrderOutput;
Expand All @@ -1326,11 +1319,12 @@ export type Mutation = {
removeInquiry: Scalars['Boolean'];
removeItemDetailImage: Item;
removeItemPrice: Item;
removeItemSizeChartsAll: Item;
removeLook: Scalars['Boolean'];
removeMeRefundAccount: Scalars['Boolean'];
removeMeShippingAddress: Scalars['Boolean'];
removeMyCartItems: Scalars['Boolean'];
removeRootSizeChart: Item;
removeSellerSizeChart: Item;
removeVideo: Scalars['Boolean'];
/** 정보에 오류가 있는 아이템을 신고합니다. */
reportItem: Scalars['Boolean'];
Expand All @@ -1342,7 +1336,7 @@ export type Mutation = {
shipMeSellerOrderItem: OrderItem;
startOrder: Order;
/** 여러번 구독된 상태였다면 모두 삭제됩니다. */
unfollow: Scalars['Boolean'];
unfollow: FollowOutput;
/** 여러번 좋아요한 상태였다면 모두 삭제됩니다. */
unlike: Scalars['Boolean'];
unown: Scalars['Boolean'];
Expand Down Expand Up @@ -1378,11 +1372,13 @@ export type Mutation = {
updateRootItemByCrawl: Item;
updateRootItemDetailImages: Item;
updateRootItemImageUrl: Item;
updateRootSizeChart: Item;
updateSellerItemByCrawl: Item;
updateSellerItemDetailImages: Item;
updateSellerItemImageUrl: Item;
/** Admin 이상의 권한이 필요합니다. */
updateSellerSaleStrategy: Seller;
updateSellerSizeChart: Item;
updateShippingReservePolicy: Product;
updateVideo: Video;
};
Expand All @@ -1402,11 +1398,6 @@ export type MutationAddItemPriceArgs = {
itemId: Scalars['Int'];
};

export type MutationAddItemSizeChartsArgs = {
addItemSizeChartInputs: Array<AddItemSizeChartInput>;
itemId: Scalars['Int'];
};

export type MutationAddItemUrlArgs = {
addItemUrlInput: AddItemUrlInput;
itemId: Scalars['Int'];
Expand Down Expand Up @@ -1539,10 +1530,20 @@ export type MutationCreateMyCartItemArgs = {
createCartItemInput: CreateCartItemInput;
};

export type MutationCreateRootSizeChartArgs = {
input: CreateItemSizeChartInput;
itemId: Scalars['Int'];
};

export type MutationCreateSellerArgs = {
createSellerInput: CreateSellerInput;
};

export type MutationCreateSellerSizeChartArgs = {
input: CreateItemSizeChartInput;
itemId: Scalars['Int'];
};

export type MutationCreateShippingReservePolicyArgs = {
createProductShippingReservePolicyInput: CreateProductShippingReservePolicyInput;
productId: Scalars['Int'];
Expand Down Expand Up @@ -1582,12 +1583,6 @@ export type MutationManualCreateItemArgs = {
input: ManualCreateItemInput;
};

export type MutationModifyItemSizeChartsArgs = {
itemId: Scalars['Int'];
removedChartIds?: Maybe<Array<Scalars['Int']>>;
updateItemSizeChartInput?: Maybe<Array<UpdateItemSizeChartInput>>;
};

export type MutationOwnArgs = {
keywordId: Scalars['Int'];
};
Expand Down Expand Up @@ -1623,10 +1618,6 @@ export type MutationRemoveItemPriceArgs = {
priceId: Scalars['Int'];
};

export type MutationRemoveItemSizeChartsAllArgs = {
itemId: Scalars['Int'];
};

export type MutationRemoveLookArgs = {
id: Scalars['Int'];
};
Expand All @@ -1639,6 +1630,14 @@ export type MutationRemoveMyCartItemsArgs = {
ids: Array<Scalars['Int']>;
};

export type MutationRemoveRootSizeChartArgs = {
itemId: Scalars['Int'];
};

export type MutationRemoveSellerSizeChartArgs = {
itemId: Scalars['Int'];
};

export type MutationRemoveVideoArgs = {
id: Scalars['Int'];
};
Expand Down Expand Up @@ -1824,6 +1823,11 @@ export type MutationUpdateRootItemImageUrlArgs = {
itemId: Scalars['Int'];
};

export type MutationUpdateRootSizeChartArgs = {
input: UpdateItemSizeChartInput;
itemId: Scalars['Int'];
};

export type MutationUpdateSellerItemByCrawlArgs = {
itemId: Scalars['Int'];
};
Expand All @@ -1841,6 +1845,11 @@ export type MutationUpdateSellerSaleStrategyArgs = {
updateSaleStrategyInput: FindSaleStrategyInput;
};

export type MutationUpdateSellerSizeChartArgs = {
input: UpdateItemSizeChartInput;
itemId: Scalars['Int'];
};

export type MutationUpdateShippingReservePolicyArgs = {
productId: Scalars['Int'];
updateProductShippingReservePolicyInput: UpdateProductShippingReservePolicyInput;
Expand Down Expand Up @@ -2024,7 +2033,9 @@ export type OrderItemSearchFilter = {
claimStatusIsNull?: Maybe<Scalars['Boolean']>;
confirmedAtBetween?: Maybe<Array<Scalars['DateTime']>>;
isConfirmed?: Maybe<Scalars['Boolean']>;
isProcessDelaying?: Maybe<Scalars['Boolean']>;
isSettled?: Maybe<Scalars['Boolean']>;
merchantUidMt?: Maybe<Scalars['String']>;
paidAtBetween?: Maybe<Array<Scalars['DateTime']>>;
sellerId?: Maybe<Scalars['Int']>;
settledAtBetween?: Maybe<Array<Scalars['DateTime']>>;
Expand Down Expand Up @@ -2437,7 +2448,7 @@ export type Query = {
meInquiry: Inquiry;
meOrder: Order;
meOrderItem: OrderItem;
/** VbankReady, Paid만 표시 */
/** VbankReady, VbankDodged, Paid만 표시 */
meOrders: Array<Order>;
meOwnsCount: OwnsCountOutput;
meSeller: Seller;
Expand Down Expand Up @@ -3260,24 +3271,9 @@ export type UpdateItemPriceInput = {
};

export type UpdateItemSizeChartInput = {
accDepth?: Maybe<Scalars['Float']>;
accHeight?: Maybe<Scalars['Float']>;
accWidth?: Maybe<Scalars['Float']>;
chestWidth?: Maybe<Scalars['Float']>;
crossStrapLength?: Maybe<Scalars['Float']>;
glassBridgeLength?: Maybe<Scalars['Float']>;
glassLegLength?: Maybe<Scalars['Float']>;
glassWidth?: Maybe<Scalars['Float']>;
hemWidth?: Maybe<Scalars['Float']>;
id?: Maybe<Scalars['Int']>;
name: Scalars['String'];
riseHeight?: Maybe<Scalars['Float']>;
shoulderWidth?: Maybe<Scalars['Float']>;
sleeveLength?: Maybe<Scalars['Float']>;
thighWidth?: Maybe<Scalars['Float']>;
totalLength?: Maybe<Scalars['Float']>;
waistWidth?: Maybe<Scalars['Float']>;
watchBandDepth?: Maybe<Scalars['Float']>;
labels: Array<Scalars['String']>;
recommendations?: Maybe<Array<ItemSizeRecommendationInput>>;
sizes: Array<ItemSizeInput>;
};

export type UpdateLookDigestInput = {
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.9.14",
"version": "1.9.15",
"description": "common files for pickk development",
"keywords": [
"graphql",
Expand Down

0 comments on commit 24de592

Please sign in to comment.