Skip to content

Commit f18ca34

Browse files
Merge branch 'main' into updateDeleteInferenceEndpoint
2 parents 983a5a9 + 8490ee5 commit f18ca34

File tree

7 files changed

+270
-38
lines changed

7 files changed

+270
-38
lines changed

.gitattributes

Lines changed: 236 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,237 @@
1+
### Header #########################################################################################
2+
3+
# The filename patterns in '.gitattributes' are case-sensitive!
4+
5+
### Line Endings ###################################################################################
6+
7+
# Set default behavior to automatically normalize line endings
8+
* text=auto
9+
10+
# Force batch scripts to always use CRLF line endings
11+
*.bat text eol=crlf
12+
*.cmd text eol=crlf
13+
*.ps1 text eol=crlf
14+
15+
# Force bash scripts to always use LF line endings
16+
*.bash text eol=lf
17+
*.fish text eol=lf
18+
*.sh text eol=lf
19+
*.zsh text eol=lf
20+
21+
# Text files where line endings should be preserved
22+
*.patch -text
23+
24+
### Common #########################################################################################
25+
26+
# Configs
27+
.editorconfig text
28+
.gitattributes text export-ignore
29+
.gitignore text export-ignore
30+
.gitkeep text export-ignore
31+
*.json text
32+
*.toml text
33+
*.xml text
34+
*.yaml text
35+
*.yml text
36+
*.cnf text
37+
*.conf text
38+
*.config text
39+
*.ini text
40+
41+
# Documents
42+
*.markdown text diff=markdown
43+
*.md text diff=markdown
44+
*.mdwn text diff=markdown
45+
*.mdown text diff=markdown
46+
*.mkd text diff=markdown
47+
*.mkdn text diff=markdown
48+
*.mdtxt text
49+
*.mdtext text
50+
*.txt text
51+
*.tex text diff=tex
52+
*.adoc text
53+
*.textile text
54+
*.mustache text
55+
*.csv text eol=crlf
56+
*.tab text
57+
*.tsv text
58+
*.sql text
59+
*.epub diff=astextplain
60+
*.bibtex text diff=bibtex
61+
*.doc diff=astextplain
62+
*.docx diff=astextplain
63+
*.dot diff=astextplain
64+
*.pdf diff=astextplain
65+
*.rtf diff=astextplain
66+
67+
# Documentation
68+
AUTHORS text
69+
CHANGELOG text
70+
CHANGES text
71+
CONTRIBUTING text
72+
COPYING text
73+
copyright text
74+
*COPYRIGHT* text
75+
INSTALL text
76+
license text
77+
LICENSE text
78+
NEWS text
79+
readme text
80+
*README* text
81+
TODO text
82+
83+
# Graphics
84+
*.ai binary
85+
*.bmp binary
86+
*.eps binary
87+
*.gif binary
88+
*.gifv binary
89+
*.ico binary
90+
*.jng binary
91+
*.jp2 binary
92+
*.jpg binary
93+
*.jpeg binary
94+
*.jpx binary
95+
*.jxr binary
96+
*.pdf binary
97+
*.png binary
98+
*.psb binary
99+
*.psd binary
100+
*.svg text
101+
*.svgz binary
102+
*.tif binary
103+
*.tiff binary
104+
*.wbmp binary
105+
*.webp binary
106+
107+
# Audio
108+
*.kar binary
109+
*.m4a binary
110+
*.mid binary
111+
*.midi binary
112+
*.mp3 binary
113+
*.ogg binary
114+
*.ra binary
115+
116+
# Video
117+
*.3gpp binary
118+
*.3gp binary
119+
*.as binary
120+
*.asf binary
121+
*.asx binary
122+
*.avi binary
123+
*.fla binary
124+
*.flv binary
125+
*.m4v binary
126+
*.mng binary
127+
*.mov binary
128+
*.mp4 binary
129+
*.mpeg binary
130+
*.mpg binary
131+
*.ogv binary
132+
*.swc binary
133+
*.swf binary
134+
*.webm binary
135+
136+
# Archives
137+
*.7z binary
138+
*.gz binary
139+
*.jar binary
140+
*.rar binary
141+
*.tar binary
142+
*.zip binary
143+
144+
# Executables
145+
*.exe binary
146+
*.pyc binary
147+
148+
# Misc
149+
Makefile text
150+
Dockerfile text
151+
152+
### Web ############################################################################################
153+
154+
# Source code
155+
*.coffee text
156+
*.css text diff=css
157+
*.htm text diff=html
158+
*.html text diff=html
159+
*.inc text
160+
*.js text
161+
*.mjs text
162+
*.cjs text
163+
*.jsx text
164+
*.less text
165+
*.ls text
166+
*.map text -diff
167+
*.od text
168+
*.onlydata text
169+
*.php text diff=php
170+
*.pl text
171+
*.py text diff=python
172+
*.rb text diff=ruby
173+
*.sass text
174+
*.scm text
175+
*.scss text diff=css
176+
*.sh text eol=lf
177+
.husky/* text eol=lf
178+
*.styl text
179+
*.tag text
180+
*.ts text
181+
*.tsx text
182+
*.xml text
183+
*.xhtml text diff=html
184+
185+
# Configs
186+
.env text
187+
.htaccess text
188+
*.lock text -diff
189+
package.json text eol=lf
190+
package-lock.json text eol=lf -diff
191+
pnpm-lock.yaml text eol=lf -diff
192+
.prettierrc text
193+
yarn.lock text -diff
194+
browserslist text
195+
# Fixes syntax highlighting on GitHub to allow comments
196+
tsconfig.json linguist-language=JSON-with-Comments
197+
198+
# Templates
199+
*.dot text
200+
*.ejs text
201+
*.erb text
202+
*.haml text
203+
*.handlebars text
204+
*.hbs text
205+
*.hbt text
206+
*.jade text
207+
*.latte text
208+
*.mustache text
209+
*.njk text
210+
*.phtml text
211+
*.svelte text
212+
*.tmpl text
213+
*.tpl text
214+
*.twig text
215+
*.vue text
216+
217+
# Fonts
218+
*.ttf binary
219+
*.eot binary
220+
*.otf binary
221+
*.woff binary
222+
*.woff2 binary
223+
224+
# RC files (like .babelrc or .eslintrc)
225+
*.*rc text
226+
227+
# Ignore files (like .npmignore or .gitignore)
228+
*.*ignore text
229+
230+
# Prevents massive diffs from built files
231+
dist/* binary
232+
233+
### Linguist Overrides #############################################################################
234+
1235
output/dangling-types/dangling.csv linguist-generated=true
2236
output/schema/schema.json linguist-generated=true
3237
output/openapi/elasticsearch-serverless-openapi.json linguist-generated=true
@@ -6,3 +240,5 @@ output/schema/import-namespace-graph-compact.json linguist-generated=true
6240
output/schema/import-namespace-graph-expanded.json linguist-generated=true
7241
output/schema/validation-errors.json linguist-generated=true
8242
output/typescript/types.ts linguist-generated=true
243+
244+
####################################################################################################

output/openapi/elasticsearch-serverless-openapi.json

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

output/schema/validation-errors.json

Lines changed: 1 addition & 3 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 & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/mapping/specialized.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,6 @@ export class IcuCollationProperty extends DocValuesPropertyBase {
103103
* Accepts a string value which is substituted for any explicit null values. Defaults to null, which means the field is treated as missing.
104104
*/
105105
null_value?: string
106-
/**
107-
* Whether the field value should be stored and retrievable separately from the `_source` field.
108-
*/
109-
store?: boolean
110106
rules?: string
111107
language?: string
112108
country?: string

specification/ml/_types/inference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ export class InferenceResponseResult {
475475
* For regression models, its a numerical value
476476
* For classification models, it may be an integer, double, boolean or string depending on prediction type
477477
*/
478-
predicted_value?: PredictedValue[]
478+
predicted_value?: PredictedValue | PredictedValue[]
479479
/**
480480
* For fill mask tasks, the response contains the input text sequence with the mask token replaced by the predicted
481481
* value.

0 commit comments

Comments
 (0)