Skip to content

Commit 0694fd2

Browse files
Merge remote-tracking branch 'origin/main' into feature/llama-embedding-completion
2 parents 207638f + f1534e2 commit 0694fd2

File tree

7 files changed

+17
-26
lines changed

7 files changed

+17
-26
lines changed

output/openapi/elasticsearch-openapi.json

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

output/openapi/elasticsearch-serverless-openapi.json

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

output/schema/schema.json

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

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/simulate/ingest/examples/request/SimulateIngestRequestExample1.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ description:
77
# type: request
88
value:
99
docs:
10-
- _id: 123
10+
- _id: '123'
1111
_index: my-index
1212
_source:
1313
foo: bar
14-
- _id: 456
14+
- _id: '456'
1515
_index: my-index
1616
_source:
1717
foo: rab

specification/simulate/ingest/examples/request/SimulateIngestRequestExample2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ description:
99
value:
1010
docs:
1111
- _index: my-index
12-
_id: 123
12+
_id: '123'
1313
_source:
1414
foo: bar
1515
- _index: my-index
16-
_id: 456
16+
_id: '456'
1717
_source:
1818
foo: rab
1919
pipeline_substitutions:

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)