Skip to content

Commit 800f847

Browse files
committed
Java client issues batch 2 (#2440) without transientMetadata type change
1 parent 2f834aa commit 800f847

File tree

10 files changed

+93
-40
lines changed

10 files changed

+93
-40
lines changed

output/schema/schema.json

Lines changed: 67 additions & 23 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: 12 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_global/search/_types/hits.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export class InnerHits {
122122
fields?: Fields
123123
sort?: Sort
124124
_source?: SourceConfig
125-
stored_field?: Fields
125+
stored_fields?: Fields
126126
/** @server_default false */
127127
track_scores?: boolean
128128
version?: boolean

specification/_types/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export class InlineGet<TDocument>
292292
_seq_no?: SequenceNumber
293293
_primary_term?: long
294294
_routing?: Routing
295-
_source: TDocument
295+
_source?: TDocument
296296
}
297297

298298
/**

specification/_types/mapping/complex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class ObjectProperty extends CorePropertyBase {
4949

5050
export class DenseVectorProperty extends PropertyBase {
5151
type: 'dense_vector'
52-
dims: integer
52+
dims?: integer
5353
similarity?: string
5454
index?: boolean
5555
index_options?: DenseVectorIndexOptions

specification/_types/mapping/core.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ export class RankFeatureProperty extends PropertyBase {
221221
}
222222

223223
export class RankFeaturesProperty extends PropertyBase {
224+
positive_score_impact?: boolean
224225
type: 'rank_features'
225226
}
226227

0 commit comments

Comments
 (0)