Skip to content

Commit a3bb68c

Browse files
committed
Regenerate
1 parent 443e1c6 commit a3bb68c

File tree

4 files changed

+107
-27
lines changed

4 files changed

+107
-27
lines changed

output/schema/schema.json

Lines changed: 102 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/ingest/_types/Processors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2222
import { Field, Fields, GrokPattern, Id, Name } from '@_types/common'
2323
import { GeoShapeRelation } from '@_types/Geo'
2424
import { double, integer, long } from '@_types/Numeric'
25-
import { SortOrder } from '@_types/sort'
2625
import { Script } from '@_types/Scripting'
26+
import { SortOrder } from '@_types/sort'
2727

2828
/**
2929
* @variants container

specification/sql/query/QuerySqlRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
* under the License.
1818
*/
1919

20+
import { QueryParameters } from '@sql/types'
2021
import { RequestBase } from '@_types/Base'
2122
import { RuntimeFields } from '@_types/mapping/RuntimeFields'
2223
import { integer } from '@_types/Numeric'
2324
import { QueryContainer } from '@_types/query_dsl/abstractions'
2425
import { Duration, TimeZone } from '@_types/Time'
25-
import { QueryParameters } from '@sql/types'
2626

2727
/**
2828
* @rest_spec_name sql.query

specification/sql/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ export class Column {
2828

2929
export type Row = UserDefinedValue[]
3030

31-
export type QueryParameters = Dictionary<string, UserDefinedValue> | UserDefinedValue[]
31+
export type QueryParameters =
32+
| Dictionary<string, UserDefinedValue>
33+
| UserDefinedValue[]

0 commit comments

Comments
 (0)