AuthCodeData
import type { AuthCodeData } from "https://googleapis.deno.dev/v1/connectors:v2.ts";
AuthCodeData contains the data the runtime plane will give the connector backend in exchange for access and refresh tokens.
interface AuthCodeData {
authCode?: string;
pkceVerifier?: string;
redirectUri?: string;
scopes?: string[];
}