diff --git a/clients/javascript/lib/index.ts b/clients/javascript/lib/index.ts index c1c8cb3a..d3bdf0f9 100644 --- a/clients/javascript/lib/index.ts +++ b/clients/javascript/lib/index.ts @@ -84,6 +84,10 @@ export const NitteiUserClient = ( service: new NitteiServiceUserClient(axiosClient), schedule: new NitteiScheduleUserClient(axiosClient), user: new NitteiUserUserClient(axiosClient), + // Axios client exposed so that the user can use it + // - For adding interceptors + // - For making custom requests + axiosClient, }) } @@ -113,6 +117,10 @@ export const NitteiClient = async ( service: new NitteiServiceClient(axiosClient), schedule: new NitteiScheduleClient(axiosClient), health: new NitteiHealthClient(axiosClient), + // Axios client exposed so that the user can use it + // - For adding interceptors + // - For making custom requests + axiosClient, }) }