Skip to content

Commit

Permalink
Merge branch 'main' into inference-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle authored Nov 15, 2023
2 parents 13b9e8e + 126f6d1 commit 7dd93e6
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
output/dangling-types/dangling.csv linguist-generated=true
output/schema/schema.json linguist-generated=true
output/openapi/elasticsearch-serverless-openapi.json linguist-generated=true
output/schema/import-type-graph.json linguist-generated=true
output/schema/import-namespace-graph-compact.json linguist-generated=true
output/schema/import-namespace-graph-expanded.json linguist-generated=true
Expand Down
24 changes: 24 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 48 additions & 5 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions specification/_types/mapping/Property.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import {
ScaledFloatNumberProperty,
SearchAsYouTypeProperty,
ShortNumberProperty,
SparseVectorProperty,
TextProperty,
UnsignedLongNumberProperty,
VersionProperty,
Expand Down Expand Up @@ -117,6 +118,7 @@ export type Property =
// complex
| AggregateMetricDoubleProperty
| DenseVectorProperty
| SparseVectorProperty
| FlattenedProperty
| NestedProperty
| ObjectProperty
Expand Down
6 changes: 5 additions & 1 deletion specification/ingest/_types/Pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { VersionNumber } from '@_types/common'
import { VersionNumber, Metadata } from '@_types/common'
import { ProcessorContainer } from './Processors'

export class Pipeline {
Expand All @@ -38,6 +38,10 @@ export class Pipeline {
* Version number used by external systems to track ingest pipelines.
*/
version?: VersionNumber
/**
* Arbitrary metadata about the ingest pipeline. This map is not automatically generated by Elasticsearch.
*/
_meta: Metadata
}

// Unused .. but let's keep it for now
Expand Down

0 comments on commit 7dd93e6

Please sign in to comment.