Skip to content

Commit

Permalink
chore(pickk-common): 🚀 release v1.9.21
Browse files Browse the repository at this point in the history
  • Loading branch information
syoung125 committed Nov 16, 2021
1 parent 80a8c8b commit de93e2f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/pickk-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,7 @@
## v1.9.20

✨ update api to pickk-server v1.0.74

## v1.9.21

✨ update api to pickk-server v1.0.76
17 changes: 17 additions & 0 deletions packages/pickk-common/lib/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,9 @@ export type DigestsExhibition = {
};

export type ExchangeRequest = {
/** 255자 이내로 적어주세요 */
cancelReason?: Maybe<Scalars['String']>;
canceledAt?: Maybe<Scalars['DateTime']>;
confirmedAt?: Maybe<Scalars['DateTime']>;
convertedAt?: Maybe<Scalars['DateTime']>;
faultOf: OrderClaimFaultOf;
Expand Down Expand Up @@ -767,6 +770,7 @@ export type ExchangeRequestSearchFilter = {

/** 교한신청 상태입니다. */
export enum ExchangeRequestStatus {
Canceled = 'Canceled',
Converted = 'Converted',
Pending = 'Pending',
Picked = 'Picked',
Expand Down Expand Up @@ -1356,6 +1360,7 @@ export type Mutation = {
bulkUpdateMeSellerItems: Scalars['Boolean'];
bulkUpdateRootItems: Scalars['Boolean'];
bulkUpdateRootOrderItems: Scalars['Boolean'];
cancelMeSellerExchangeRequest: ExchangeRequest;
/** 취소 사유는 "담당자 취소 처리"로 고정 */
cancelMeSellerOrderItem: OrderItem;
cancelOrder: Order;
Expand Down Expand Up @@ -1409,6 +1414,7 @@ export type Mutation = {
removeRootItemPrice: Item;
removeRootSizeChart: Item;
removeVideo: Scalars['Boolean'];
reportContent: Scalars['Boolean'];
/** 정보에 오류가 있는 아이템을 신고합니다. */
reportItem: Scalars['Boolean'];
requestAppInstallPoint: Scalars['Boolean'];
Expand Down Expand Up @@ -1571,6 +1577,11 @@ export type MutationBulkUpdateRootOrderItemsArgs = {
merchantUids: Array<Scalars['String']>;
};

export type MutationCancelMeSellerExchangeRequestArgs = {
merchantUid: Scalars['String'];
reason: Scalars['String'];
};

export type MutationCancelMeSellerOrderItemArgs = {
merchantUid: Scalars['String'];
restock: Scalars['Boolean'];
Expand Down Expand Up @@ -1793,6 +1804,10 @@ export type MutationRemoveVideoArgs = {
id: Scalars['Int'];
};

export type MutationReportContentArgs = {
url: Scalars['String'];
};

export type MutationReportItemArgs = {
id: Scalars['Int'];
reason: Scalars['String'];
Expand Down Expand Up @@ -3865,6 +3880,8 @@ export type Video = {
userId?: Maybe<Scalars['Int']>;
/** 최대 길이 40 */
youtubeCode: Scalars['String'];
youtubeDuration?: Maybe<Scalars['Int']>;
youtubeViewCount?: Maybe<Scalars['Int']>;
};

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

0 comments on commit de93e2f

Please sign in to comment.