From 98343f9a365a2f9d4db86190003d00b8682c71d9 Mon Sep 17 00:00:00 2001 From: "ct-sdks[bot]" <153784748+ct-sdks[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:22:02 +0000 Subject: [PATCH] Updated API from documentation release --- .../api/types/search/SearchExactExpression.raml | 2 +- api-specs/api/types/search/SearchExactValue.raml | 13 +++++++++++++ api-specs/api/types/types.raml | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 api-specs/api/types/search/SearchExactValue.raml diff --git a/api-specs/api/types/search/SearchExactExpression.raml b/api-specs/api/types/search/SearchExactExpression.raml index 2740075c9..90e5985dd 100644 --- a/api-specs/api/types/search/SearchExactExpression.raml +++ b/api-specs/api/types/search/SearchExactExpression.raml @@ -4,4 +4,4 @@ type: SearchQueryExpression displayName: SearchExactExpression properties: exact: - type: SearchAnyValue + type: SearchExactValue diff --git a/api-specs/api/types/search/SearchExactValue.raml b/api-specs/api/types/search/SearchExactValue.raml new file mode 100644 index 000000000..230b45f74 --- /dev/null +++ b/api-specs/api/types/search/SearchExactValue.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +displayName: SearchExactValue +properties: + value?: + type: any + values?: + type: any[] + language?: + type: Locale + caseInsensitive?: + type: boolean diff --git a/api-specs/api/types/types.raml b/api-specs/api/types/types.raml index fc0ab0180..4bf990219 100644 --- a/api-specs/api/types/types.raml +++ b/api-specs/api/types/types.raml @@ -2037,6 +2037,7 @@ SearchDateRangeValue: !include search/SearchDateRangeValue.raml SearchDateTimeRangeExpression: !include search/SearchDateTimeRangeExpression.raml SearchDateTimeRangeValue: !include search/SearchDateTimeRangeValue.raml SearchExactExpression: !include search/SearchExactExpression.raml +SearchExactValue: !include search/SearchExactValue.raml SearchExistsExpression: !include search/SearchExistsExpression.raml SearchExistsValue: !include search/SearchExistsValue.raml SearchFieldType: !include search/SearchFieldType.raml