From 6d51fe3f29ddb37c3c59047c581225461866d973 Mon Sep 17 00:00:00 2001 From: twitchard Date: Fri, 4 Oct 2024 13:27:44 -0500 Subject: [PATCH] Supplier --- src/wrapper/HumeClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper/HumeClient.ts b/src/wrapper/HumeClient.ts index c871c30..b4fbd92 100644 --- a/src/wrapper/HumeClient.ts +++ b/src/wrapper/HumeClient.ts @@ -2,7 +2,7 @@ import { HumeClient as FernClient } from "../Client"; import { ExpressionMeasurement } from "./expressionMeasurement/ExpressionMeasurementClient"; export declare namespace HumeClient { - type Options = FernClient.Options & { secretKey?: string } & ({ accessToken: string } | { apiKey: string }); + type Options = FernClient.Options & { secretKey?: string } & ({ accessToken: FernClient.Options['accessToken'] } | { apiKey: FernClient.Options['apiKey'] }); } export class HumeClient extends FernClient {