diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index b73c98c5e5..b9474204bb 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -50044,7 +50044,7 @@ "type": { "type": "string", "enum": [ - "\"less_than\"" + "less_than" ] }, "constraint": { @@ -50062,7 +50062,7 @@ "type": { "type": "string", "enum": [ - "\"greater_than\"" + "greater_than" ] }, "constraint": { @@ -50080,7 +50080,7 @@ "type": { "type": "string", "enum": [ - "\"list_type\"" + "list_type" ] }, "constraint": { @@ -50101,7 +50101,7 @@ "type": { "type": "string", "enum": [ - "\"included_in\"" + "included_in" ] }, "constraint": { @@ -50119,7 +50119,7 @@ "type": { "type": "string", "enum": [ - "\"regex\"" + "regex" ] }, "constraint": { diff --git a/output/schema/schema.json b/output/schema/schema.json index 00d2c6b225..de5b24f1a5 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -107639,7 +107639,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"greater_than\"" + "value": "greater_than" } }, { @@ -107668,7 +107668,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"included_in\"" + "value": "included_in" } }, { @@ -107751,7 +107751,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"less_than\"" + "value": "less_than" } }, { @@ -107780,7 +107780,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"list_type\"" + "value": "list_type" } }, { @@ -107812,7 +107812,7 @@ "required": true, "type": { "kind": "literal_value", - "value": "\"regex\"" + "value": "regex" } }, { diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 022e141fff..a76fd41813 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -9256,12 +9256,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 } @@ -9273,17 +9273,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 }