File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1717 * under the License.
1818 */
1919
20- import { Dictionary } from '@spec_utils/Dictionary'
21- import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2220import { RequestBase } from '@_types/Base'
2321import { RuntimeFields } from '@_types/mapping/RuntimeFields'
2422import { integer } from '@_types/Numeric'
2523import { QueryContainer } from '@_types/query_dsl/abstractions'
2624import { Duration , TimeZone } from '@_types/Time'
25+ import { QueryParameters } from '@sql/types'
2726
2827/**
2928 * @rest_spec_name sql.query
@@ -102,7 +101,7 @@ export interface Request extends RequestBase {
102101 /**
103102 * Values for parameters in the query.
104103 */
105- params ?: Dictionary < string , UserDefinedValue >
104+ params ?: QueryParameters
106105 /**
107106 * Retention period for an async or saved synchronous search.
108107 * @server_default 5d
Original file line number Diff line number Diff line change 1717 * under the License.
1818 */
1919
20+ import { Dictionary } from '@spec_utils/Dictionary'
2021import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2122import { Name } from '@_types/common'
2223
@@ -26,3 +27,5 @@ export class Column {
2627}
2728
2829export type Row = UserDefinedValue [ ]
30+
31+ export type QueryParameters = Dictionary < string , UserDefinedValue > | UserDefinedValue [ ]
You can’t perform that action at this time.
0 commit comments