ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.134.1

This commit is contained in:
speakeasybot
2024-01-10 00:28:53 +00:00
parent b9629abe33
commit ff9f3dc489
7 changed files with 27 additions and 12 deletions

View File

@@ -201,7 +201,12 @@ export function encodeDeepObject(
value: unknown,
options?: { charEncoding?: "percent" | "none" },
) {
if (value == null) {
return "";
}
let out = "";
const encodeString = (v: string) => {
return options?.charEncoding === "percent" ? encodeURIComponent(v) : v;
};