Skip to content

Commit 84fb4e1

Browse files
fix params type (#5046) (#5063)
(cherry picked from commit ccb9111) Co-authored-by: Laura Trotta <[email protected]>
1 parent 5864934 commit 84fb4e1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

specification/sql/query/QuerySqlRequest.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import { RuntimeFields } from '@_types/mapping/RuntimeFields'
2222
import { integer } from '@_types/Numeric'
2323
import { QueryContainer } from '@_types/query_dsl/abstractions'
2424
import { Duration, TimeZone } from '@_types/Time'
25-
import { Dictionary } from '@spec_utils/Dictionary'
2625
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2726

2827
/**
@@ -118,7 +117,7 @@ export interface Request extends RequestBase {
118117
/**
119118
* The values for parameters in the query.
120119
*/
121-
params?: Dictionary<string, UserDefinedValue>
120+
params?: UserDefinedValue[]
122121
/**
123122
* The SQL query to run.
124123
* @ext_doc_id sql-spec

0 commit comments

Comments
 (0)