/**
 * Extension Auth object received from GenStudio
 */
export type ExtensionAuth = {
    /**
     * IMS Organization ID
     */
    imsOrgId: string;
    /**
     * IMS User Bearer Token
     */
    imsToken: string;
    /**
     * API Key
     */
    apiKey: string;
};
