From 8eaca2bca6413554a5c94762ddecf5f338740ae3 Mon Sep 17 00:00:00 2001 From: Eric Petzel Date: Thu, 17 Aug 2023 21:58:50 -0500 Subject: [PATCH] update generated docs --- js-client-sdk-common.api.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js-client-sdk-common.api.md b/js-client-sdk-common.api.md index 71820f5..baf2395 100644 --- a/js-client-sdk-common.api.md +++ b/js-client-sdk-common.api.md @@ -26,7 +26,7 @@ export class EppoClient implements IEppoClient { // (undocumented) getAssignment(subjectKey: string, experimentKey: string, subjectAttributes?: {}): string; // (undocumented) - getAssignmentWithHooks(subjectKey: string, experimentKey: string, subjectAttributes: {}, assignmentHooks: IAssignmentHooks): Promise; + getAssignmentWithHooks(subjectKey: string, experimentKey: string, assignmentHooks: IAssignmentHooks, subjectAttributes?: {}): Promise; // (undocumented) setLogger(logger: IAssignmentLogger): void; } @@ -80,6 +80,7 @@ export interface IConfigurationStore { // @public export interface IEppoClient { getAssignment(subjectKey: string, experimentKey: string, subjectAttributes?: Record): string; + getAssignmentWithHooks(subjectKey: string, experimentKey: string, assignmentHooks: IAssignmentHooks, subjectAttributes?: Record): Promise; } // @public (undocumented)