diff --git a/package.json b/package.json index 7515753..7fba3c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polyapi", - "version": "0.24.16", + "version": "0.24.17", "description": "Poly is a CLI tool to help create and manage your Poly definitions.", "license": "MIT", "repository": { diff --git a/src/commands/generate/schemaTypes.ts b/src/commands/generate/schemaTypes.ts index e13a178..99ef2fc 100644 --- a/src/commands/generate/schemaTypes.ts +++ b/src/commands/generate/schemaTypes.ts @@ -680,9 +680,9 @@ const fillInUnresolvedSchemas = (specs: SchemaSpec[]): SchemaSpec[] => { visibility: 'ENVIRONMENT', }, }; - shell.echo( - chalk.yellow(`WARNING: Schema '${unresolved.path}' referenced from '${spec.contextName}' is unresolved. Falling back to 'unknown' type for '${unresolved.path}'.`) - ); + // shell.echo( + // chalk.yellow(`WARNING: Schema '${unresolved.path}' referenced from '${spec.contextName}' is unresolved. Falling back to 'unknown' type for '${unresolved.path}'.`) + // ); schemas.set(unresolved.path, fillerSpec); } } @@ -709,9 +709,9 @@ const fillInUnresolvedSchemas = (specs: SchemaSpec[]): SchemaSpec[] => { visibility: 'ENVIRONMENT', }, }; - shell.echo( - chalk.yellow(`WARNING: Schema '${contextName}' referenced from '${spec.contextName}' is unresolved. Falling back to 'unknown' type for '${contextName}'.`) - ); + // shell.echo( + // chalk.yellow(`WARNING: Schema '${contextName}' referenced from '${spec.contextName}' is unresolved. Falling back to 'unknown' type for '${contextName}'.`) + // ); schemas.set(contextName, fillerSpec); } }