Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: minimum viable spec in quickstart #677

Merged
merged 16 commits into from
May 8, 2024

Conversation

chase-crumbaugh
Copy link
Member

@chase-crumbaugh chase-crumbaugh commented Apr 30, 2024

Depends on: https://github.com/speakeasy-api/openapi-generation/pull/1214

This implements minimum viable spec retries in quickstart. If a customers spec fails validation during run (in quickstart) we will best effort attempt to create an overlay for them of only minimum viable operations so they can get a working SDK.

go.mod Outdated Show resolved Hide resolved
@ryan-timothy-albert ryan-timothy-albert changed the title feat: add filter-operations functionality feat: minimum viable spec in quickstart May 1, 2024
@@ -308,7 +316,20 @@ func (w *Workflow) runTarget(ctx context.Context, target string) (*sourceResult,
if source != nil {
sourcePath, sourceRes, err = w.runSource(ctx, rootStep, t.Source, target, false)
if err != nil {
return nil, err
if w.FromQuickstart && sourceRes != nil && sourceRes.LintResult != nil && len(sourceRes.LintResult.ValidOperations) > 0 {
Copy link
Member

Choose a reason for hiding this comment

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

nit: Might be cleaner to prompt the user first (do you want to retry with the successful parts of your spec: y/N) given this is an interactive flow.

@ryan-timothy-albert ryan-timothy-albert merged commit 6de583a into main May 8, 2024
5 checks passed
@ryan-timothy-albert ryan-timothy-albert deleted the chase/filter-operations branch May 8, 2024 16:57
LukeHagar pushed a commit that referenced this pull request Jun 13, 2024
Co-authored-by: Ryan Albert <ryantimalbert@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants