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

[Bug][http-client-js]: @noAuth at namespace level is not properly supported #6847

Open
4 tasks done
qiaozha opened this issue Apr 3, 2025 · 0 comments
Open
4 tasks done
Labels
1_0_E2E bug Something isn't working emitter:client:js Issue for the JS client emitter: @typespec/http-client-js

Comments

@qiaozha
Copy link
Member

qiaozha commented Apr 3, 2025

Describe the bug

In todoApp, we have noAuth decorated on the namespace Users

@useAuth(NoAuth)
namespace Users { }

the generated ./src/api/usersClient/usersClientContext.ts file should pass undefined to getClient instead of an undefine credential

export function createUsersClientContext(
  endpoint: string,
  options?: UsersClientOptions,): UsersClientContext {
  const params: Record<string, any> = {
    endpoint: endpoint
  };
  const resolvedEndpoint = "{endpoint}".replace(/{([^}]+)}/g, (_, key) =>
    key in params ? String(params[key]) : (() => { throw new Error(`Missing parameter: ${key}`); })()
-  );;return getClient(resolvedEndpoint,credential,{
+  );;return getClient(resolvedEndpoint,undefined,{
    ...options,
  })
}

Reproduction

https://github.com/allenjzhang/typespec-e2e-demo/tree/main/todoApp/spec

Checklist

@qiaozha qiaozha added the bug Something isn't working label Apr 3, 2025
@qiaozha qiaozha added emitter:client:js Issue for the JS client emitter: @typespec/http-client-js 1_0_E2E labels Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1_0_E2E bug Something isn't working emitter:client:js Issue for the JS client emitter: @typespec/http-client-js
Projects
None yet
Development

No branches or pull requests

1 participant