Skip to content

Commit

Permalink
chore(pickk-common): 🚀 release v1.7.20
Browse files Browse the repository at this point in the history
  • Loading branch information
greatSumini committed Aug 29, 2021
1 parent fcf9b22 commit 7ee7cf1
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
6 changes: 5 additions & 1 deletion packages/pickk-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@

## v1.7.19

✨ update api to pickk-server v0.1.30
✨ update api to pickk-server v0.1.30

## v1.7.20

✨ update api to pickk-server v0.1.32
27 changes: 23 additions & 4 deletions packages/pickk-common/lib/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,10 @@ export type Digest = {
hitCount: Scalars['Int'];
id: Scalars['Int'];
images: Array<DigestImage>;
/**
* read, list 호출 시 userId가 제공되면 liking 여부를 검사해 attach합니다.
* (true: 팔로잉, false: 팔로잉x, null: 유저정보 제공x)
*/
/** [MODEL ONLY] */
isLiking?: Maybe<Scalars['Boolean']>;
/** [MODEL ONLY] */
isMine?: Maybe<Scalars['Boolean']>;
item?: Maybe<Item>;
itemId?: Maybe<Scalars['Int']>;
itemPropertyValues: Array<ItemPropertyValue>;
Expand Down Expand Up @@ -928,6 +927,7 @@ export type ItemPropertyValue = {
name: Scalars['String'];
/** 표시될 순서. 최소 0, 최대 255입니다. */
order: Scalars['Float'];
property: ItemProperty;
updatedAt: Scalars['DateTime'];
};

Expand Down Expand Up @@ -1098,6 +1098,10 @@ export type Look = {
hitCount: Scalars['Int'];
id: Scalars['Int'];
images: Array<LookImage>;
/** [MODEL ONLY] */
isLiking?: Maybe<Scalars['Boolean']>;
/** [MODEL ONLY] */
isMine?: Maybe<Scalars['Boolean']>;
likeCount: Scalars['Int'];
score: Scalars['Float'];
styleTags: Array<StyleTag>;
Expand Down Expand Up @@ -2093,6 +2097,7 @@ export type Query = {
loginByOauth: JwtToken;
loginSellerByCode: JwtToken;
loginWithApple: JwtToken;
look: Look;
looks: Array<Look>;
me: User;
meFollowingUsers: Array<User>;
Expand Down Expand Up @@ -2129,6 +2134,7 @@ export type Query = {
sellers: Array<Seller>;
styleTags: Array<StyleTag>;
user: User;
video: Video;
videos: Array<Video>;
};

Expand Down Expand Up @@ -2243,6 +2249,10 @@ export type QueryLoginWithAppleArgs = {
getAppleProviderIdInput: LoginWithAppleInput;
};

export type QueryLookArgs = {
id: Scalars['Int'];
};

export type QueryLooksArgs = {
filter?: Maybe<LookFilter>;
pageInput?: Maybe<PageInput>;
Expand Down Expand Up @@ -2348,6 +2358,10 @@ export type QueryUserArgs = {
id: Scalars['Int'];
};

export type QueryVideoArgs = {
id: Scalars['Int'];
};

export type QueryVideosArgs = {
filter?: Maybe<VideoFilter>;
pageInput?: Maybe<PageInput>;
Expand Down Expand Up @@ -2863,6 +2877,7 @@ export type UpdateUserInput = {
name?: Maybe<Scalars['String']>;
/** 최대 11자 */
nickname?: Maybe<Scalars['String']>;
styleTagIds?: Maybe<Array<Scalars['Int']>>;
weight?: Maybe<Scalars['Int']>;
youtubeUrl?: Maybe<Scalars['String']>;
};
Expand Down Expand Up @@ -2926,6 +2941,10 @@ export type Video = {
digests: Array<Digest>;
hitCount: Scalars['Int'];
id: Scalars['Int'];
/** [MODEL ONLY] */
isLiking?: Maybe<Scalars['Boolean']>;
/** [MODEL ONLY] */
isMine?: Maybe<Scalars['Boolean']>;
likeCount: Scalars['Int'];
score: Scalars['Float'];
/** 최대 길이 127 */
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.19",
"version": "1.7.20",
"description": "common files for pickk development",
"keywords": [
"graphql",
Expand Down

0 comments on commit 7ee7cf1

Please sign in to comment.