Skip to content

Commit bce4649

Browse files
authored
s/elastic-client-generator/elasticsearch-specification (elastic#464)
* s/elastic-client-generator/elasticsearch-specification * Updated README.md
1 parent a71af2e commit bce4649

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/ISSUE_TEMPLATE/feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ labels: enhancement
88
and post an issue here that does not follow the instructions, your issue might be closed,
99
locked, and assigned the `invalid` label.**
1010

11-
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elastic-client-generator/labels/enhancement) at first before submitting a new one.
11+
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elasticsearch-specification/labels/enhancement) at first before submitting a new one.
1212

1313
## 🚀 Feature Proposal
1414

.github/ISSUE_TEMPLATE/missing-type.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ labels: missing type
88
and post an issue here that does not follow the instructions, your issue might be closed,
99
locked, and assigned the `invalid` label.**
1010

11-
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elastic-client-generator/labels/missing%20type) at first before submitting a new one.
11+
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elasticsearch-specification/labels/missing%20type) at first before submitting a new one.
1212

1313
If you want to try adding the type yourself, you are most welcome!
14-
Take a look at [our documentation](https://github.com/elastic/elastic-client-generator#how-to-validate-the-specification) to see how to do it.
14+
Take a look at [our documentation](https://github.com/elastic/elasticsearch-specification#how-to-validate-the-specification) to see how to do it.
1515

1616
## 🐛 Missing type
1717

@@ -20,4 +20,4 @@ The name of the API that is currently missing (for version 7.x), it can be a req
2020
## Definition
2121

2222
If possible provide a basic definition that we can use as base.
23-
You can see [here](https://github.com/elastic/elastic-client-generator/blob/master/docs/add-new-api.md) how to create a basic definition for any API.
23+
You can see [here](https://github.com/elastic/elasticsearch-specification/blob/master/docs/add-new-api.md) how to create a basic definition for any API.

.github/ISSUE_TEMPLATE/question.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ labels: question
66

77
## 💬 Questions and Help
88

9-
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elastic-client-generator/labels/question) at first before submitting a new one.
9+
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elasticsearch-specification/labels/question) at first before submitting a new one.

.github/ISSUE_TEMPLATE/wrong-type.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ labels: wrong type
88
and post an issue here that does not follow the instructions, your issue might be closed,
99
locked, and assigned the `invalid` label.**
1010

11-
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elastic-client-generator/labels/wrong%20type) at first before submitting a new one.
11+
It's not uncommon that somebody already opened an issue or in the best case it's already fixed but not merged. That's the reason why you should [search](https://github.com/elastic/elasticsearch-specification/labels/wrong%20type) at first before submitting a new one.
1212

1313
If you want to try fixing the type yourself, you are most welcome!
14-
Take a look at [our documentation](https://github.com/elastic/elastic-client-generator#how-to-validate-the-specification) to see how to do it.
14+
Take a look at [our documentation](https://github.com/elastic/elasticsearch-specification#how-to-validate-the-specification) to see how to do it.
1515

1616
## 🐛 Wrong type
1717

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# elastic client generator
1+
# Elasticsearch Specification
22

33
This repository contains the Elasticsearch request/response definitions in TypeScript,
44
you can find them inside [`/specification`](./specification).
@@ -29,7 +29,7 @@ nvm install 14
2929

3030
```
3131
# clone the project
32-
$ git clone https://github.com/elastic/elastic-client-generator.git
32+
$ git clone https://github.com/elastic/elasticsearch-specification.git
3333
3434
# install the dependencies
3535
$ npm install --prefix specification
@@ -187,10 +187,10 @@ how to generate a token.
187187
Once you have configured the environment, run the following commands:
188188

189189
```sh
190-
git clone https://github.com/elastic/elastic-client-generator.git
190+
git clone https://github.com/elastic/elasticsearch-specification.git
191191
git clone https://github.com/elastic/clients-flight-recorder.git
192192

193-
cd elastic-client-generator
193+
cd elasticsearch-specification
194194
./run-validations.sh
195195
```
196196

compiler/steps/add-info.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ import { JsonSpec } from '../model/json-spec'
2525
*/
2626
export default async function addInfo (model: model.Model, jsonSpec: Map<string, JsonSpec>): Promise<model.Model> {
2727
model._info = {
28-
version: '7.11.0',
28+
version: '7.13.0',
2929
title: 'Elasticsearch Request & Response Specification',
3030
license: {
3131
name: 'Apache 2.0',
32-
url: 'https://github.com/elastic/elastic-client-generator/blob/master/LICENSE'
32+
url: 'https://github.com/elastic/elasticsearch-specification/blob/master/LICENSE'
3333
}
3434
}
3535
return model

docs/modeling-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ type Indices = string | string[]
125125
...
126126
```
127127
128-
You can find the full list [here](https://github.com/elastic/elastic-client-generator/blob/update-docs/specification/specs/common.ts),
128+
You can find the full list [here](https://github.com/elastic/elasticsearch-specification/blob/update-docs/specification/specs/common.ts),
129129
feel free to add more if it feels appropriate!
130130
131131
### Dates

docs/validation-example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ expectAssignable<T.IndexRequest<any>>({
4646
```
4747

4848
You can play with the response to better understand where is the problem, once you have done it
49-
you should search inside `elastic-client-generator/specification` the type definition,
49+
you should search inside `elasticsearch-specification/specification` the type definition,
5050
open it with your favourite editor and perform the fix
5151

5252
```diff

output/schema/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"_info": {
33
"license": {
44
"name": "Apache 2.0",
5-
"url": "https://github.com/elastic/elastic-client-generator/blob/master/LICENSE"
5+
"url": "https://github.com/elastic/elasticsearch-specification/blob/master/LICENSE"
66
},
77
"title": "Elasticsearch Request & Response Specification",
8-
"version": "7.11.0"
8+
"version": "7.13.0"
99
},
1010
"endpoints": [
1111
{

specification/indices/simulate_index_template/IndicesSimulateIndexTemplateResponse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
import { AcknowledgedResponseBase } from '@_types/Base'
2222

23-
// https://github.com/elastic/elastic-client-generator/pull/373 is merged.
23+
// https://github.com/elastic/elasticsearch-specification/pull/373 is merged.
2424
export class Response extends AcknowledgedResponseBase {}

0 commit comments

Comments
 (0)