From 0c239ff6947bce7faea8b4f1f4eab92d9b4ad01e Mon Sep 17 00:00:00 2001 From: cloudant-sdks-automation <71659186+cloudant-sdks-automation@users.noreply.github.com> Date: Thu, 19 Feb 2026 10:43:20 +0000 Subject: [PATCH] feat(generated): update API definition to 1.0.0-dev0.1.34 Generated SDK source code using: - Generator version 3.111.0 - Specification version 1.0.0-dev0.1.34 - Automation (cloudant-sdks) version 7b856f8 --- cloudant/v1.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/cloudant/v1.ts b/cloudant/v1.ts index be491364a..ad543193a 100644 --- a/cloudant/v1.ts +++ b/cloudant/v1.ts @@ -12130,7 +12130,10 @@ namespace CloudantV1 { */ name: Analyzer.Constants.Name | string; - /** Custom stopwords to use with the named analyzer. */ + /** Custom stopwords to use with the named analyzer where supported. Not used for `keyword`, `simple`, + * `whitespace`, `simple_asciifolding` or `perfield` analyzers. Ensure stopwords match the folded case for + * analyzers that perform folding. + */ stopwords?: string[]; static serialize(obj): Analyzer.Transport { @@ -12228,7 +12231,10 @@ namespace CloudantV1 { */ name: AnalyzerConfiguration.Constants.Name | string; - /** Custom stopwords to use with the named analyzer. */ + /** Custom stopwords to use with the named analyzer where supported. Not used for `keyword`, `simple`, + * `whitespace`, `simple_asciifolding` or `perfield` analyzers. Ensure stopwords match the folded case for + * analyzers that perform folding. + */ stopwords?: string[]; /** Schema for a full text search analyzer. */ @@ -13922,8 +13928,8 @@ namespace CloudantV1 { * The validation function can abort the pending document write by throwing one of two error objects: * * ``` - * // user is not authorized to make the change but may re-authenticate throw({ unauthorized: 'Error message here.' - * }); + * // user is not authorized to make the change but may + * // re-authenticate throw({ unauthorized: 'Error message here.' }); * * // change is not allowed throw({ forbidden: 'Error message here.' }); * ```