Skip to content

Commit

Permalink
Update cmsSyncSource to be optional for space
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstonbl01 committed Oct 27, 2020
1 parent 4c41915 commit df2490e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nacelle/types",
"version": "4.0.0",
"version": "4.0.1",
"description": "Typescript & GraphQL types for use when creating Nacelle products",
"main": "build/index.js",
"module": "build/index.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export type NacelleSpace = {
buildHook?: Maybe<Scalars['String']>;
publicToken?: Maybe<Scalars['String']>;
pimSyncSourceDomain: Scalars['String'];
cmsSyncSourceDomain: Scalars['String'];
cmsSyncSourceDomain?: Maybe<Scalars['String']>;
linklists?: Maybe<Array<SpaceLinkList>>;
affinityLinklists?: Maybe<Array<SpaceAffinityLinkList>>;
metafields?: Maybe<Array<Metafield>>;
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/type-defs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export default `#graphql
)
publicToken: String
pimSyncSourceDomain: String!
cmsSyncSourceDomain: String!
cmsSyncSourceDomain: String
linklists: [SpaceLinkList!]
affinityLinklists: [SpaceAffinityLinkList!]
metafields: [Metafield!]
Expand Down

0 comments on commit df2490e

Please sign in to comment.