Skip to content

Commit 17c8dea

Browse files
authored
changed inference name to avoid duplicate (#2544)
1 parent 0f89005 commit 17c8dea

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

output/openapi/elasticsearch-serverless-openapi.json

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

specification/inference/_types/Services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class InferenceEndpoint {
4141
/**
4242
* Represents an inference endpoint as returned by the GET API
4343
*/
44-
export class InferenceEndpointContainer extends InferenceEndpoint {
44+
export class InferenceEndpointInfo extends InferenceEndpoint {
4545
/**
4646
* The inference Id
4747
*/

specification/inference/get/GetResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
* under the License.
1818
*/
1919

20-
import { InferenceEndpointContainer } from '@inference/_types/Services'
20+
import { InferenceEndpointInfo } from '@inference/_types/Services'
2121

2222
export class Response {
2323
body: {
24-
endpoints: Array<InferenceEndpointContainer>
24+
endpoints: Array<InferenceEndpointInfo>
2525
}
2626
}

specification/inference/put/PutResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
import { InferenceEndpointContainer } from '@inference/_types/Services'
20+
import { InferenceEndpointInfo } from '@inference/_types/Services'
2121

2222
export class Response {
23-
body: InferenceEndpointContainer
23+
body: InferenceEndpointInfo
2424
}

0 commit comments

Comments
 (0)