Conversation
Transitions query parameters to the body for endpoints consuming application/x-www-form-urlencoded, and normalizes /login in OpenAPI spec.
Executed 'yarn gen' against Looker 26.2
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request focuses on enhancing the robustness and accuracy of the SDKs by standardizing the handling of Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces significant changes to how form-urlencoded requests are handled across various SDKs (C#, Go, TypeScript, Swift). The core logic in the SDK codegen has been updated to correctly identify and process application/x-www-form-urlencoded methods, specifically for the /login endpoint. This involves a new isFormUrlEncoded property and logic to move query parameters into the request body for such methods. Additionally, the HTTP method for the /self_service_models/{model_name}/certification endpoint has been corrected from POST to PATCH in both documentation and method calls across the SDKs. New tests have been added to validate the isFormUrlEncoded functionality and the normalizeLogin process, which ensures backward compatibility for the /login endpoint by injecting client_id and client_secret parameters if missing. The changes appear to be well-implemented and consistent across the different language SDKs, addressing functional correctness and API specification alignment.
Codegen Tests442 tests 403 ✅ 41s ⏱️ Results for commit 15686d2. |
Typescript Tests 2 files 56 suites 1m 4s ⏱️ Results for commit 15686d2. |
This PR is for review only