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)