Skip to content

Commit 8e80d1d

Browse files
authored
Merge pull request #6 from Eppo-exp/update-docs-assignment-with-hooks
Update generated docs
2 parents cf2fe14 + 8eaca2b commit 8e80d1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js-client-sdk-common.api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class EppoClient implements IEppoClient {
2626
// (undocumented)
2727
getAssignment(subjectKey: string, experimentKey: string, subjectAttributes?: {}): string;
2828
// (undocumented)
29-
getAssignmentWithHooks(subjectKey: string, experimentKey: string, subjectAttributes: {}, assignmentHooks: IAssignmentHooks): Promise<string>;
29+
getAssignmentWithHooks(subjectKey: string, experimentKey: string, assignmentHooks: IAssignmentHooks, subjectAttributes?: {}): Promise<string>;
3030
// (undocumented)
3131
setLogger(logger: IAssignmentLogger): void;
3232
}
@@ -80,6 +80,7 @@ export interface IConfigurationStore {
8080
// @public
8181
export interface IEppoClient {
8282
getAssignment(subjectKey: string, experimentKey: string, subjectAttributes?: Record<string, any>): string;
83+
getAssignmentWithHooks(subjectKey: string, experimentKey: string, assignmentHooks: IAssignmentHooks, subjectAttributes?: Record<string, any>): Promise<string>;
8384
}
8485

8586
// @public (undocumented)

0 commit comments

Comments
 (0)