export type Auth = {
    access_token?: string;
    api_key?: string;
    connection_context?: any;
    credential_metadata?: any;
    fulfillment_provider_api_code: string;
    password?: string;
    url?: string;
    username?: string;
    [key: string]: any;
};
