Skip to content

Commit af17691

Browse files
committed
fix: npm workspace publish
1 parent 867f65f commit af17691

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

packages/ghost-graphql/src/types/GhostPage.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const GhostPage = new GraphQLObjectType({
2626
excerpt: { type: GraphQLString },
2727
featureImage: { type: GraphQLString },
2828
featureImageAlt: { type: GraphQLString },
29+
featureImageCaption: { type: GraphQLString },
2930
html: { type: GraphQLString },
3031
id: { type: new GraphQLNonNull(GraphQLString) },
3132
metaDescription: { type: GraphQLString },

packages/ghost-graphql/src/types/GhostPost.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const GhostPost = new GraphQLObjectType({
2626
excerpt: { type: GraphQLString },
2727
featureImage: { type: GraphQLString },
2828
featureImageAlt: { type: GraphQLString },
29+
featureImageCaption: { type: GraphQLString },
2930
html: { type: GraphQLString },
3031
id: { type: new GraphQLNonNull(GraphQLString) },
3132
metaDescription: { type: GraphQLString },

packages/ghost-graphql/src/types/GhostTag.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const GhostTag = new GraphQLObjectType({
1313
description: { type: GraphQLString },
1414
featureImage: { type: GraphQLString },
1515
featureImageAlt: { type: GraphQLString },
16+
featureImageCaption: { type: GraphQLString },
1617
id: { type: new GraphQLNonNull(GraphQLString) },
1718
metaDescription: { type: GraphQLString },
1819
metaTitle: { type: GraphQLString },

0 commit comments

Comments
 (0)