fix: removed unefficient AI generated call pattern using one-use object types created for 2-3 variable passing.
Some checks failed
build / build (push) Failing after 13s
Some checks failed
build / build (push) Failing after 13s
This commit is contained in:
@@ -7,11 +7,19 @@
|
||||
*/
|
||||
|
||||
export { getCredential } from "./client-auth.ts";
|
||||
import { acquireResourceToken as acquireResourceTokenPca } from "./pca-auth.ts";
|
||||
export {
|
||||
loginInteractive,
|
||||
loginDeviceCode,
|
||||
login,
|
||||
logout,
|
||||
parseResources,
|
||||
acquireResourceTokenFromLogin,
|
||||
} from "./pca-auth.ts";
|
||||
|
||||
export async function acquireResourceToken(
|
||||
tenantId: string,
|
||||
clientId: string,
|
||||
resource: string,
|
||||
) {
|
||||
return acquireResourceTokenPca(tenantId, clientId, resource);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user