Skip to content

Commit dbcbe5a

Browse files
committed
Fix style
1 parent 71ce3e6 commit dbcbe5a

File tree

6 files changed

+81
-16
lines changed

6 files changed

+81
-16
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 32 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 41 additions & 5 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: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -617,13 +617,6 @@
617617
],
618618
"response": []
619619
},
620-
"search_application.post_behavioral_analytics_event": {
621-
"request": [
622-
"Request: missing json spec query parameter 'debug'",
623-
"Request: should have a body definition"
624-
],
625-
"response": []
626-
},
627620
"search_mvt": {
628621
"request": [
629622
"Request: query parameter 'grid_agg' does not exist in the json spec",

output/typescript/types.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/search_application/post_behavioral_analytics_event/BehavioralAnalyticsEventPostRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
1920
import { RequestBase } from '@_types/Base'
2021
import { Name } from '@_types/common'
2122
import { EventType } from '../_types/AnalyticsEvent'
@@ -39,7 +40,6 @@ export interface Request extends RequestBase {
3940
*/
4041
event_type: EventType
4142
}
42-
}
4343
query_parameters: {
4444
/**
4545
* Whether the response type has to include more details
@@ -48,3 +48,4 @@ export interface Request extends RequestBase {
4848
}
4949
/** @codegen_name payload */
5050
body: UserDefinedValue
51+
}

specification/search_application/post_behavioral_analytics_event/BehavioralAnalyticsEventPostResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
export class Response {
2121
body: {
22-
accepted: boolean
23-
event?: UserDefinedValue
22+
accepted: boolean
23+
event?: UserDefinedValue
2424
}
2525
exceptions: [
2626
{

0 commit comments

Comments
 (0)