Skip to content

Commit be51882

Browse files
committed
making response fields optional
1 parent 07c94ad commit be51882

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specification/indices/put_data_stream_mappings/IndicesPutDataStreamMappingsResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ export class UpdatedDataStreamMappings {
4242
/**
4343
* The mappings that are specfic to this data stream that will override any mappings from the matching index template.
4444
*/
45-
mappings: TypeMapping
45+
mappings?: TypeMapping
4646
/**
4747
* The mappings that are effective on this data stream, taking into account the mappings from the matching index
4848
* template and the mappings specific to this data stream.
4949
*/
50-
effective_mappings: TypeMapping
50+
effective_mappings?: TypeMapping
5151
}

0 commit comments

Comments
 (0)