Skip to content

Commit 648b06f

Browse files
authored
fix(log-type-inner-queries): apply snake_case (#1166)
1 parent a8bb68a commit 648b06f

File tree

1 file changed

+3
-3
lines changed
  • packages/client-search/src/types

1 file changed

+3
-3
lines changed

packages/client-search/src/types/Log.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ export type Log = {
7676
/**
7777
* Index name of the query.
7878
*/
79-
readonly indexName: string;
79+
readonly index_name: string;
8080

8181
/**
8282
* Query ID of the query.
8383
*/
84-
readonly queryID?: string;
84+
readonly query_id?: string;
8585

8686
/**
8787
* The offset of the query.
@@ -91,6 +91,6 @@ export type Log = {
9191
/**
9292
* The user token of the query.
9393
*/
94-
readonly userToken: string;
94+
readonly user_token?: string;
9595
}>;
9696
};

0 commit comments

Comments
 (0)