chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
export type OAuthCallbackResult = {
code: string;
state: string;
};
export declare function generateCodeVerifier(): string;
export declare function generateCodeChallenge(verifier: string): string;
export declare function buildAuthorizationUrl(authorizationEndpoint: string, options: {
clientId: string;
redirectUri: string;
codeChallenge: string;
state: string;
scopes?: string[];
resource?: string;
}): string;
export declare function startCallbackServer(port: number): Promise<OAuthCallbackResult>;
export declare function runAuthorizationCodeRedirect(options: {
authorizationEndpoint: string;
callbackPort: number;
clientId: string;
redirectUri: string;
scopes?: string[];
resource?: string;
}): Promise<{
code: string;
verifier: string;
}>;