From 762486cd45dcab7019b45e83c13a6df1a75f9d71 Mon Sep 17 00:00:00 2001 From: Elastic Machine Date: Thu, 11 Apr 2024 11:02:16 +0000 Subject: [PATCH] Update specification output --- output/openapi/elasticsearch-serverless-openapi.json | 10 +++++----- output/schema/schema.json | 10 +++++----- output/typescript/types.ts | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 4060ebaff2..a26f4519ff 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -49451,7 +49451,7 @@ "type": { "type": "string", "enum": [ - "\"less_than\"" + "less_than" ] }, "constraint": { @@ -49469,7 +49469,7 @@ "type": { "type": "string", "enum": [ - "\"greater_than\"" + "greater_than" ] }, "constraint": { @@ -49487,7 +49487,7 @@ "type": { "type": "string", "enum": [ - "\"list_type\"" + "list_type" ] }, "constraint": { @@ -49508,7 +49508,7 @@ "type": { "type": "string", "enum": [ - "\"included_in\"" + "included_in" ] }, "constraint": { @@ -49526,7 +49526,7 @@ "type": { "type": "string", "enum": [ - "\"regex\"" + "regex" ] }, "constraint": { diff --git a/output/schema/schema.json b/output/schema/schema.json index 0a9bfab9df..e724331592 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -106863,7 +106863,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"greater_than\"" + "value": "greater_than" } }, { @@ -106892,7 +106892,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"included_in\"" + "value": "included_in" } }, { @@ -106975,7 +106975,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"less_than\"" + "value": "less_than" } }, { @@ -107004,7 +107004,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"list_type\"" + "value": "list_type" } }, { @@ -107036,7 +107036,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"regex\"" + "value": "regex" } }, { diff --git a/output/typescript/types.ts b/output/typescript/types.ts index dac1ae1944..43a9cfc11d 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -9213,12 +9213,12 @@ export interface ConnectorFilteringValidation { export type ConnectorFilteringValidationState = 'edited' | 'invalid' | 'valid' export interface ConnectorGreaterThanValidation { - type: '"greater_than"' + type: 'greater_than' constraint: double } export interface ConnectorIncludedInValidation { - type: '"included_in"' + type: 'included_in' constraint: string } @@ -9230,17 +9230,17 @@ export interface ConnectorIngestPipelineParams { } export interface ConnectorLessThanValidation { - type: '"less_than"' + type: 'less_than' constraint: double } export interface ConnectorListTypeValidation { - type: '"list_type"' + type: 'list_type' constraint: ScalarValue[] } export interface ConnectorRegexValidation { - type: '"regex"' + type: 'regex' constraint: string }