Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jts/verji develop 2 merge #9

Merged
merged 14 commits into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8548,9 +8548,10 @@
* @param options.limit - the maximum number of results to return. The server will apply a limit if unspecified.
* @returns Promise which resolves: an array of results.
*/
public searchUserDirectory({ term, limit }: { term: string; limit?: number }): Promise<IUserDirectoryResponse> {
public searchUserDirectory({ term, limit }: { term: string; limit?: number }, extraBodyArgs: {[key:string]: string}|null = {}): Promise<IUserDirectoryResponse> {

Check failure on line 8551 in src/client.ts

View workflow job for this annotation

GitHub Actions / ESLint

Expected a space after the ':'
const body: Body = {
search_term: term,
search_term: term,
...extraBodyArgs

Check failure on line 8554 in src/client.ts

View workflow job for this annotation

GitHub Actions / ESLint

Missing trailing comma
};

if (limit !== undefined) {
Expand Down
Loading