Skip to content

Commit

Permalink
update package and types
Browse files Browse the repository at this point in the history
  • Loading branch information
aderaaij committed Nov 11, 2020
1 parent 5658e65 commit 55c5572
Show file tree
Hide file tree
Showing 3 changed files with 1,278 additions and 816 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"classnames": "2.2.6",
"date-fns": "^2.16.1",
"eslint": "^7.11.0",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
"next": "^10.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.10",
Expand All @@ -48,7 +48,7 @@
"graphql-tag": "^2.11.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-flexbugs-fixes": "^5.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"tailwindcss": "^1.4.6",
Expand Down
20 changes: 10 additions & 10 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4125,9 +4125,9 @@ export enum MediaItemSizeEnum {
/** MediaItem with the thumbnail size */
Thumbnail = 'THUMBNAIL',
/** MediaItem with the 1536x1536 size */
_1536X1536 = '_1536X1536',
'1536X1536' = '_1536X1536',
/** MediaItem with the 2048x2048 size */
_2048X2048 = '_2048X2048',
'2048X2048' = '_2048X2048',
}

/** Connection between the ContentNode type and the User type */
Expand Down Expand Up @@ -4236,6 +4236,14 @@ export type MediaSize = {
width?: Maybe<Scalars['String']>;
};

/** The template assigned to a node of content */
export type ContentTemplate = {
/** The file the template uses */
templateFile?: Maybe<Scalars['String']>;
/** The name of the template */
templateName?: Maybe<Scalars['String']>;
};

/** Arguments for filtering the ContentNodeToTermNodeConnection connection */
export type ContentNodeToTermNodeConnectionWhereArgs = {
/** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */
Expand Down Expand Up @@ -10257,11 +10265,3 @@ export type MenuItemsWhereArgs = {
export type PostObjectUnion = Post | Page | MediaItem;

export type TermObjectUnion = Category | Tag | PostFormat;

/** The template assigned to a node of content */
export type ContentTemplate = {
/** The file the template uses */
templateFile?: Maybe<Scalars['String']>;
/** The name of the template */
templateName?: Maybe<Scalars['String']>;
};
Loading

1 comment on commit 55c5572

@vercel
Copy link

@vercel vercel bot commented on 55c5572 Nov 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.