Skip to content

Commit 7a8ae6c

Browse files
authored
fix: Generate CloudQuery Go API Client from spec.json (#322)
This PR was created by a scheduled workflow to generate the CloudQuery Go API Client from `spec.json`
1 parent 1984765 commit 7a8ae6c

File tree

2 files changed

+109
-6
lines changed

2 files changed

+109
-6
lines changed

models.gen.go

Lines changed: 94 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6940,8 +6940,7 @@
69406940
"content" : {
69416941
"application/json" : {
69426942
"schema" : {
6943-
"additionalProperties" : { },
6944-
"properties" : { }
6943+
"$ref" : "#/components/schemas/AIOnboardingNewConversation_request"
69456944
}
69466945
}
69476946
}
@@ -12054,6 +12053,11 @@
1205412053
"conversation_id" : {
1205512054
"description" : "Optional conversation ID to continue an existing conversation",
1205612055
"x-go-name" : "ConversationID"
12056+
},
12057+
"chat_mode" : {
12058+
"description" : "Optional chat mode - \"web\" for markdown output, \"terminal\" for plain text output",
12059+
"enum" : [ "web", "terminal" ],
12060+
"x-go-name" : "ChatMode"
1205712061
}
1205812062
}
1205912063
},
@@ -12079,6 +12083,15 @@
1207912083
},
1208012084
"required" : [ "message" ]
1208112085
},
12086+
"AIOnboardingNewConversation_request" : {
12087+
"additionalProperties" : { },
12088+
"properties" : {
12089+
"try_resume" : {
12090+
"description" : "If true, resume existing conversation instead of starting a new one",
12091+
"x-go-name" : "TryResume"
12092+
}
12093+
}
12094+
},
1208212095
"AIOnboardingNewConversation_200_response" : {
1208312096
"additionalProperties" : { },
1208412097
"properties" : {

0 commit comments

Comments
 (0)