@azure/search-documents 12.0.0-beta.3 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.js +853 -2103
- package/dist/index.js.map +1 -1
- package/dist-esm/src/constants.js +1 -1
- package/dist-esm/src/constants.js.map +1 -1
- package/dist-esm/src/generated/data/models/index.js +40 -224
- package/dist-esm/src/generated/data/models/index.js.map +1 -1
- package/dist-esm/src/generated/data/models/mappers.js +96 -210
- package/dist-esm/src/generated/data/models/mappers.js.map +1 -1
- package/dist-esm/src/generated/data/models/parameters.js +38 -80
- package/dist-esm/src/generated/data/models/parameters.js.map +1 -1
- package/dist-esm/src/generated/data/operations/documents.js +5 -9
- package/dist-esm/src/generated/data/operations/documents.js.map +1 -1
- package/dist-esm/src/generated/data/searchClient.js +28 -2
- package/dist-esm/src/generated/data/searchClient.js.map +1 -1
- package/dist-esm/src/generated/service/models/index.js +165 -164
- package/dist-esm/src/generated/service/models/index.js.map +1 -1
- package/dist-esm/src/generated/service/models/mappers.js +86 -464
- package/dist-esm/src/generated/service/models/mappers.js.map +1 -1
- package/dist-esm/src/generated/service/models/parameters.js +1 -51
- package/dist-esm/src/generated/service/models/parameters.js.map +1 -1
- package/dist-esm/src/generated/service/operations/dataSources.js +1 -4
- package/dist-esm/src/generated/service/operations/dataSources.js.map +1 -1
- package/dist-esm/src/generated/service/operations/index.js +0 -1
- package/dist-esm/src/generated/service/operations/index.js.map +1 -1
- package/dist-esm/src/generated/service/operations/indexers.js +1 -29
- package/dist-esm/src/generated/service/operations/indexers.js.map +1 -1
- package/dist-esm/src/generated/service/operations/skillsets.js +1 -30
- package/dist-esm/src/generated/service/operations/skillsets.js.map +1 -1
- package/dist-esm/src/generated/service/operationsInterfaces/index.js +0 -1
- package/dist-esm/src/generated/service/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/generated/service/operationsInterfaces/indexers.js.map +1 -1
- package/dist-esm/src/generated/service/operationsInterfaces/skillsets.js.map +1 -1
- package/dist-esm/src/generated/service/searchServiceClient.js +29 -4
- package/dist-esm/src/generated/service/searchServiceClient.js.map +1 -1
- package/dist-esm/src/index.js +2 -3
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/indexDocumentsBatch.js.map +1 -1
- package/dist-esm/src/indexModels.js.map +1 -1
- package/dist-esm/src/searchClient.js +34 -31
- package/dist-esm/src/searchClient.js.map +1 -1
- package/dist-esm/src/searchIndexClient.js +11 -174
- package/dist-esm/src/searchIndexClient.js.map +1 -1
- package/dist-esm/src/searchIndexerClient.js +3 -49
- package/dist-esm/src/searchIndexerClient.js.map +1 -1
- package/dist-esm/src/searchIndexingBufferedSender.js.map +1 -1
- package/dist-esm/src/serviceModels.js.map +1 -1
- package/dist-esm/src/serviceUtils.js +49 -80
- package/dist-esm/src/serviceUtils.js.map +1 -1
- package/package.json +12 -11
- package/types/search-documents.d.ts +772 -2514
- package/dist-esm/src/generated/service/operations/aliases.js +0 -160
- package/dist-esm/src/generated/service/operations/aliases.js.map +0 -1
- package/dist-esm/src/generated/service/operationsInterfaces/aliases.js +0 -9
- package/dist-esm/src/generated/service/operationsInterfaces/aliases.js.map +0 -1
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
*/
|
|
8
|
-
/** Known values of {@link
|
|
9
|
-
export var
|
|
10
|
-
(function (
|
|
11
|
-
/** Api Version '2023-
|
|
12
|
-
|
|
13
|
-
})(
|
|
8
|
+
/** Known values of {@link ApiVersion20231101} that the service accepts. */
|
|
9
|
+
export var KnownApiVersion20231101;
|
|
10
|
+
(function (KnownApiVersion20231101) {
|
|
11
|
+
/** Api Version '2023-11-01' */
|
|
12
|
+
KnownApiVersion20231101["TwoThousandTwentyThree1101"] = "2023-11-01";
|
|
13
|
+
})(KnownApiVersion20231101 || (KnownApiVersion20231101 = {}));
|
|
14
14
|
/** Known values of {@link SearchIndexerDataSourceType} that the service accepts. */
|
|
15
15
|
export var KnownSearchIndexerDataSourceType;
|
|
16
16
|
(function (KnownSearchIndexerDataSourceType) {
|
|
@@ -38,9 +38,9 @@ export var KnownBlobIndexerParsingMode;
|
|
|
38
38
|
KnownBlobIndexerParsingMode["DelimitedText"] = "delimitedText";
|
|
39
39
|
/** Set to json to extract structured content from JSON files. */
|
|
40
40
|
KnownBlobIndexerParsingMode["Json"] = "json";
|
|
41
|
-
/** Set to jsonArray to extract individual elements of a JSON array as separate documents
|
|
41
|
+
/** Set to jsonArray to extract individual elements of a JSON array as separate documents. */
|
|
42
42
|
KnownBlobIndexerParsingMode["JsonArray"] = "jsonArray";
|
|
43
|
-
/** Set to jsonLines to extract individual JSON entities, separated by a new line, as separate documents
|
|
43
|
+
/** Set to jsonLines to extract individual JSON entities, separated by a new line, as separate documents. */
|
|
44
44
|
KnownBlobIndexerParsingMode["JsonLines"] = "jsonLines";
|
|
45
45
|
})(KnownBlobIndexerParsingMode || (KnownBlobIndexerParsingMode = {}));
|
|
46
46
|
/** Known values of {@link BlobIndexerDataToExtract} that the service accepts. */
|
|
@@ -74,25 +74,11 @@ export var KnownBlobIndexerPDFTextRotationAlgorithm;
|
|
|
74
74
|
/** Known values of {@link IndexerExecutionEnvironment} that the service accepts. */
|
|
75
75
|
export var KnownIndexerExecutionEnvironment;
|
|
76
76
|
(function (KnownIndexerExecutionEnvironment) {
|
|
77
|
-
/** Indicates that
|
|
77
|
+
/** Indicates that the search service can determine where the indexer should execute. This is the default environment when nothing is specified and is the recommended value. */
|
|
78
78
|
KnownIndexerExecutionEnvironment["Standard"] = "standard";
|
|
79
79
|
/** Indicates that the indexer should run with the environment provisioned specifically for the search service. This should only be specified as the execution environment if the indexer needs to access resources securely over shared private link resources. */
|
|
80
80
|
KnownIndexerExecutionEnvironment["Private"] = "private";
|
|
81
81
|
})(KnownIndexerExecutionEnvironment || (KnownIndexerExecutionEnvironment = {}));
|
|
82
|
-
/** Known values of {@link IndexerExecutionStatusDetail} that the service accepts. */
|
|
83
|
-
export var KnownIndexerExecutionStatusDetail;
|
|
84
|
-
(function (KnownIndexerExecutionStatusDetail) {
|
|
85
|
-
/** Indicates that the reset that occurred was for a call to ResetDocs. */
|
|
86
|
-
KnownIndexerExecutionStatusDetail["ResetDocs"] = "resetDocs";
|
|
87
|
-
})(KnownIndexerExecutionStatusDetail || (KnownIndexerExecutionStatusDetail = {}));
|
|
88
|
-
/** Known values of {@link IndexingMode} that the service accepts. */
|
|
89
|
-
export var KnownIndexingMode;
|
|
90
|
-
(function (KnownIndexingMode) {
|
|
91
|
-
/** The indexer is indexing all documents in the datasource. */
|
|
92
|
-
KnownIndexingMode["IndexingAllDocs"] = "indexingAllDocs";
|
|
93
|
-
/** The indexer is indexing selective, reset documents in the datasource. The documents being indexed are defined on indexer status. */
|
|
94
|
-
KnownIndexingMode["IndexingResetDocs"] = "indexingResetDocs";
|
|
95
|
-
})(KnownIndexingMode || (KnownIndexingMode = {}));
|
|
96
82
|
/** Known values of {@link SearchFieldDataType} that the service accepts. */
|
|
97
83
|
export var KnownSearchFieldDataType;
|
|
98
84
|
(function (KnownSearchFieldDataType) {
|
|
@@ -106,7 +92,7 @@ export var KnownSearchFieldDataType;
|
|
|
106
92
|
KnownSearchFieldDataType["Double"] = "Edm.Double";
|
|
107
93
|
/** Indicates that a field contains a Boolean value (true or false). */
|
|
108
94
|
KnownSearchFieldDataType["Boolean"] = "Edm.Boolean";
|
|
109
|
-
/** Indicates that a field contains a date
|
|
95
|
+
/** Indicates that a field contains a date\/time value, including timezone information. */
|
|
110
96
|
KnownSearchFieldDataType["DateTimeOffset"] = "Edm.DateTimeOffset";
|
|
111
97
|
/** Indicates that a field contains a geo-location in terms of longitude and latitude. */
|
|
112
98
|
KnownSearchFieldDataType["GeographyPoint"] = "Edm.GeographyPoint";
|
|
@@ -292,116 +278,35 @@ export var KnownLexicalAnalyzerName;
|
|
|
292
278
|
KnownLexicalAnalyzerName["ViMicrosoft"] = "vi.microsoft";
|
|
293
279
|
/** Standard Lucene analyzer. */
|
|
294
280
|
KnownLexicalAnalyzerName["StandardLucene"] = "standard.lucene";
|
|
295
|
-
/** Standard ASCII Folding Lucene analyzer. See https
|
|
281
|
+
/** Standard ASCII Folding Lucene analyzer. See https:\//docs.microsoft.com\/rest\/api\/searchservice\/Custom-analyzers-in-Azure-Search#Analyzers */
|
|
296
282
|
KnownLexicalAnalyzerName["StandardAsciiFoldingLucene"] = "standardasciifolding.lucene";
|
|
297
|
-
/** Treats the entire content of a field as a single token. This is useful for data like zip codes, ids, and some product names. See http
|
|
283
|
+
/** Treats the entire content of a field as a single token. This is useful for data like zip codes, ids, and some product names. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/KeywordAnalyzer.html */
|
|
298
284
|
KnownLexicalAnalyzerName["Keyword"] = "keyword";
|
|
299
|
-
/** Flexibly separates text into terms via a regular expression pattern. See http
|
|
285
|
+
/** Flexibly separates text into terms via a regular expression pattern. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/PatternAnalyzer.html */
|
|
300
286
|
KnownLexicalAnalyzerName["Pattern"] = "pattern";
|
|
301
|
-
/** Divides text at non-letters and converts them to lower case. See http
|
|
287
|
+
/** Divides text at non-letters and converts them to lower case. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/SimpleAnalyzer.html */
|
|
302
288
|
KnownLexicalAnalyzerName["Simple"] = "simple";
|
|
303
|
-
/** Divides text at non-letters; Applies the lowercase and stopword token filters. See http
|
|
289
|
+
/** Divides text at non-letters; Applies the lowercase and stopword token filters. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/StopAnalyzer.html */
|
|
304
290
|
KnownLexicalAnalyzerName["Stop"] = "stop";
|
|
305
|
-
/** An analyzer that uses the whitespace tokenizer. See http
|
|
291
|
+
/** An analyzer that uses the whitespace tokenizer. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/WhitespaceAnalyzer.html */
|
|
306
292
|
KnownLexicalAnalyzerName["Whitespace"] = "whitespace";
|
|
307
293
|
})(KnownLexicalAnalyzerName || (KnownLexicalAnalyzerName = {}));
|
|
308
|
-
/** Known values of {@link
|
|
309
|
-
export var
|
|
310
|
-
(function (
|
|
311
|
-
/**
|
|
312
|
-
|
|
313
|
-
/**
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
KnownLexicalNormalizerName["Lowercase"] = "lowercase";
|
|
317
|
-
/** Standard normalizer, which consists of lowercase and asciifolding. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/reverse/ReverseStringFilter.html */
|
|
318
|
-
KnownLexicalNormalizerName["Standard"] = "standard";
|
|
319
|
-
/** Normalizes token text to uppercase. See https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html */
|
|
320
|
-
KnownLexicalNormalizerName["Uppercase"] = "uppercase";
|
|
321
|
-
})(KnownLexicalNormalizerName || (KnownLexicalNormalizerName = {}));
|
|
322
|
-
/** Known values of {@link TokenFilterName} that the service accepts. */
|
|
323
|
-
export var KnownTokenFilterName;
|
|
324
|
-
(function (KnownTokenFilterName) {
|
|
325
|
-
/** A token filter that applies the Arabic normalizer to normalize the orthography. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ar/ArabicNormalizationFilter.html */
|
|
326
|
-
KnownTokenFilterName["ArabicNormalization"] = "arabic_normalization";
|
|
327
|
-
/** Strips all characters after an apostrophe (including the apostrophe itself). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/tr/ApostropheFilter.html */
|
|
328
|
-
KnownTokenFilterName["Apostrophe"] = "apostrophe";
|
|
329
|
-
/** Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if such equivalents exist. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html */
|
|
330
|
-
KnownTokenFilterName["AsciiFolding"] = "asciifolding";
|
|
331
|
-
/** Forms bigrams of CJK terms that are generated from the standard tokenizer. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html */
|
|
332
|
-
KnownTokenFilterName["CjkBigram"] = "cjk_bigram";
|
|
333
|
-
/** Normalizes CJK width differences. Folds fullwidth ASCII variants into the equivalent basic Latin, and half-width Katakana variants into the equivalent Kana. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKWidthFilter.html */
|
|
334
|
-
KnownTokenFilterName["CjkWidth"] = "cjk_width";
|
|
335
|
-
/** Removes English possessives, and dots from acronyms. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicFilter.html */
|
|
336
|
-
KnownTokenFilterName["Classic"] = "classic";
|
|
337
|
-
/** Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/commongrams/CommonGramsFilter.html */
|
|
338
|
-
KnownTokenFilterName["CommonGram"] = "common_grams";
|
|
339
|
-
/** Generates n-grams of the given size(s) starting from the front or the back of an input token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html */
|
|
340
|
-
KnownTokenFilterName["EdgeNGram"] = "edgeNGram_v2";
|
|
341
|
-
/** Removes elisions. For example, "l'avion" (the plane) will be converted to "avion" (plane). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html */
|
|
342
|
-
KnownTokenFilterName["Elision"] = "elision";
|
|
343
|
-
/** Normalizes German characters according to the heuristics of the German2 snowball algorithm. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/de/GermanNormalizationFilter.html */
|
|
344
|
-
KnownTokenFilterName["GermanNormalization"] = "german_normalization";
|
|
345
|
-
/** Normalizes text in Hindi to remove some differences in spelling variations. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/hi/HindiNormalizationFilter.html */
|
|
346
|
-
KnownTokenFilterName["HindiNormalization"] = "hindi_normalization";
|
|
347
|
-
/** Normalizes the Unicode representation of text in Indian languages. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/in/IndicNormalizationFilter.html */
|
|
348
|
-
KnownTokenFilterName["IndicNormalization"] = "indic_normalization";
|
|
349
|
-
/** Emits each incoming token twice, once as keyword and once as non-keyword. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordRepeatFilter.html */
|
|
350
|
-
KnownTokenFilterName["KeywordRepeat"] = "keyword_repeat";
|
|
351
|
-
/** A high-performance kstem filter for English. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/en/KStemFilter.html */
|
|
352
|
-
KnownTokenFilterName["KStem"] = "kstem";
|
|
353
|
-
/** Removes words that are too long or too short. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilter.html */
|
|
354
|
-
KnownTokenFilterName["Length"] = "length";
|
|
355
|
-
/** Limits the number of tokens while indexing. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html */
|
|
356
|
-
KnownTokenFilterName["Limit"] = "limit";
|
|
357
|
-
/** Normalizes token text to lower case. See https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/LowerCaseFilter.html */
|
|
358
|
-
KnownTokenFilterName["Lowercase"] = "lowercase";
|
|
359
|
-
/** Generates n-grams of the given size(s). See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html */
|
|
360
|
-
KnownTokenFilterName["NGram"] = "nGram_v2";
|
|
361
|
-
/** Applies normalization for Persian. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/fa/PersianNormalizationFilter.html */
|
|
362
|
-
KnownTokenFilterName["PersianNormalization"] = "persian_normalization";
|
|
363
|
-
/** Create tokens for phonetic matches. See https://lucene.apache.org/core/4_10_3/analyzers-phonetic/org/apache/lucene/analysis/phonetic/package-tree.html */
|
|
364
|
-
KnownTokenFilterName["Phonetic"] = "phonetic";
|
|
365
|
-
/** Uses the Porter stemming algorithm to transform the token stream. See http://tartarus.org/~martin/PorterStemmer */
|
|
366
|
-
KnownTokenFilterName["PorterStem"] = "porter_stem";
|
|
367
|
-
/** Reverses the token string. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/reverse/ReverseStringFilter.html */
|
|
368
|
-
KnownTokenFilterName["Reverse"] = "reverse";
|
|
369
|
-
/** Normalizes use of the interchangeable Scandinavian characters. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ScandinavianNormalizationFilter.html */
|
|
370
|
-
KnownTokenFilterName["ScandinavianNormalization"] = "scandinavian_normalization";
|
|
371
|
-
/** Folds Scandinavian characters åÅäæÄÆ->a and öÖøØ->o. It also discriminates against use of double vowels aa, ae, ao, oe and oo, leaving just the first one. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ScandinavianFoldingFilter.html */
|
|
372
|
-
KnownTokenFilterName["ScandinavianFoldingNormalization"] = "scandinavian_folding";
|
|
373
|
-
/** Creates combinations of tokens as a single token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html */
|
|
374
|
-
KnownTokenFilterName["Shingle"] = "shingle";
|
|
375
|
-
/** A filter that stems words using a Snowball-generated stemmer. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.html */
|
|
376
|
-
KnownTokenFilterName["Snowball"] = "snowball";
|
|
377
|
-
/** Normalizes the Unicode representation of Sorani text. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ckb/SoraniNormalizationFilter.html */
|
|
378
|
-
KnownTokenFilterName["SoraniNormalization"] = "sorani_normalization";
|
|
379
|
-
/** Language specific stemming filter. See https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#TokenFilters */
|
|
380
|
-
KnownTokenFilterName["Stemmer"] = "stemmer";
|
|
381
|
-
/** Removes stop words from a token stream. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html */
|
|
382
|
-
KnownTokenFilterName["Stopwords"] = "stopwords";
|
|
383
|
-
/** Trims leading and trailing whitespace from tokens. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TrimFilter.html */
|
|
384
|
-
KnownTokenFilterName["Trim"] = "trim";
|
|
385
|
-
/** Truncates the terms to a specific length. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TruncateTokenFilter.html */
|
|
386
|
-
KnownTokenFilterName["Truncate"] = "truncate";
|
|
387
|
-
/** Filters out tokens with same text as the previous token. See http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html */
|
|
388
|
-
KnownTokenFilterName["Unique"] = "unique";
|
|
389
|
-
/** Normalizes token text to upper case. See https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html */
|
|
390
|
-
KnownTokenFilterName["Uppercase"] = "uppercase";
|
|
391
|
-
/** Splits words into subwords and performs optional transformations on subword groups. */
|
|
392
|
-
KnownTokenFilterName["WordDelimiter"] = "word_delimiter";
|
|
393
|
-
})(KnownTokenFilterName || (KnownTokenFilterName = {}));
|
|
394
|
-
/** Known values of {@link CharFilterName} that the service accepts. */
|
|
395
|
-
export var KnownCharFilterName;
|
|
396
|
-
(function (KnownCharFilterName) {
|
|
397
|
-
/** A character filter that attempts to strip out HTML constructs. See https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/HTMLStripCharFilter.html */
|
|
398
|
-
KnownCharFilterName["HtmlStrip"] = "html_strip";
|
|
399
|
-
})(KnownCharFilterName || (KnownCharFilterName = {}));
|
|
294
|
+
/** Known values of {@link VectorSearchAlgorithmKind} that the service accepts. */
|
|
295
|
+
export var KnownVectorSearchAlgorithmKind;
|
|
296
|
+
(function (KnownVectorSearchAlgorithmKind) {
|
|
297
|
+
/** HNSW (Hierarchical Navigable Small World), a type of approximate nearest neighbors algorithm. */
|
|
298
|
+
KnownVectorSearchAlgorithmKind["Hnsw"] = "hnsw";
|
|
299
|
+
/** Exhaustive KNN algorithm which will perform brute-force search. */
|
|
300
|
+
KnownVectorSearchAlgorithmKind["ExhaustiveKnn"] = "exhaustiveKnn";
|
|
301
|
+
})(KnownVectorSearchAlgorithmKind || (KnownVectorSearchAlgorithmKind = {}));
|
|
400
302
|
/** Known values of {@link VectorSearchAlgorithmMetric} that the service accepts. */
|
|
401
303
|
export var KnownVectorSearchAlgorithmMetric;
|
|
402
304
|
(function (KnownVectorSearchAlgorithmMetric) {
|
|
305
|
+
/** Cosine */
|
|
403
306
|
KnownVectorSearchAlgorithmMetric["Cosine"] = "cosine";
|
|
307
|
+
/** Euclidean */
|
|
404
308
|
KnownVectorSearchAlgorithmMetric["Euclidean"] = "euclidean";
|
|
309
|
+
/** DotProduct */
|
|
405
310
|
KnownVectorSearchAlgorithmMetric["DotProduct"] = "dotProduct";
|
|
406
311
|
})(KnownVectorSearchAlgorithmMetric || (KnownVectorSearchAlgorithmMetric = {}));
|
|
407
312
|
/** Known values of {@link KeyPhraseExtractionSkillLanguage} that the service accepts. */
|
|
@@ -784,18 +689,6 @@ export var KnownOcrSkillLanguage;
|
|
|
784
689
|
/** Unknown (All) */
|
|
785
690
|
KnownOcrSkillLanguage["Unk"] = "unk";
|
|
786
691
|
})(KnownOcrSkillLanguage || (KnownOcrSkillLanguage = {}));
|
|
787
|
-
/** Known values of {@link LineEnding} that the service accepts. */
|
|
788
|
-
export var KnownLineEnding;
|
|
789
|
-
(function (KnownLineEnding) {
|
|
790
|
-
/** Lines are separated by a single space character. */
|
|
791
|
-
KnownLineEnding["Space"] = "space";
|
|
792
|
-
/** Lines are separated by a carriage return ('\r') character. */
|
|
793
|
-
KnownLineEnding["CarriageReturn"] = "carriageReturn";
|
|
794
|
-
/** Lines are separated by a single line feed ('\n') character. */
|
|
795
|
-
KnownLineEnding["LineFeed"] = "lineFeed";
|
|
796
|
-
/** Lines are separated by a carriage return and a line feed ('\r\n') character. */
|
|
797
|
-
KnownLineEnding["CarriageReturnLineFeed"] = "carriageReturnLineFeed";
|
|
798
|
-
})(KnownLineEnding || (KnownLineEnding = {}));
|
|
799
692
|
/** Known values of {@link ImageAnalysisSkillLanguage} that the service accepts. */
|
|
800
693
|
export var KnownImageAnalysisSkillLanguage;
|
|
801
694
|
(function (KnownImageAnalysisSkillLanguage) {
|
|
@@ -1043,6 +936,12 @@ export var KnownPIIDetectionSkillMaskingMode;
|
|
|
1043
936
|
/** Known values of {@link SplitSkillLanguage} that the service accepts. */
|
|
1044
937
|
export var KnownSplitSkillLanguage;
|
|
1045
938
|
(function (KnownSplitSkillLanguage) {
|
|
939
|
+
/** Amharic */
|
|
940
|
+
KnownSplitSkillLanguage["Am"] = "am";
|
|
941
|
+
/** Bosnian */
|
|
942
|
+
KnownSplitSkillLanguage["Bs"] = "bs";
|
|
943
|
+
/** Czech */
|
|
944
|
+
KnownSplitSkillLanguage["Cs"] = "cs";
|
|
1046
945
|
/** Danish */
|
|
1047
946
|
KnownSplitSkillLanguage["Da"] = "da";
|
|
1048
947
|
/** German */
|
|
@@ -1051,16 +950,58 @@ export var KnownSplitSkillLanguage;
|
|
|
1051
950
|
KnownSplitSkillLanguage["En"] = "en";
|
|
1052
951
|
/** Spanish */
|
|
1053
952
|
KnownSplitSkillLanguage["Es"] = "es";
|
|
953
|
+
/** Estonian */
|
|
954
|
+
KnownSplitSkillLanguage["Et"] = "et";
|
|
1054
955
|
/** Finnish */
|
|
1055
956
|
KnownSplitSkillLanguage["Fi"] = "fi";
|
|
1056
957
|
/** French */
|
|
1057
958
|
KnownSplitSkillLanguage["Fr"] = "fr";
|
|
959
|
+
/** Hebrew */
|
|
960
|
+
KnownSplitSkillLanguage["He"] = "he";
|
|
961
|
+
/** Hindi */
|
|
962
|
+
KnownSplitSkillLanguage["Hi"] = "hi";
|
|
963
|
+
/** Croatian */
|
|
964
|
+
KnownSplitSkillLanguage["Hr"] = "hr";
|
|
965
|
+
/** Hungarian */
|
|
966
|
+
KnownSplitSkillLanguage["Hu"] = "hu";
|
|
967
|
+
/** Indonesian */
|
|
968
|
+
KnownSplitSkillLanguage["Id"] = "id";
|
|
969
|
+
/** Icelandic */
|
|
970
|
+
KnownSplitSkillLanguage["Is"] = "is";
|
|
1058
971
|
/** Italian */
|
|
1059
972
|
KnownSplitSkillLanguage["It"] = "it";
|
|
973
|
+
/** Japanese */
|
|
974
|
+
KnownSplitSkillLanguage["Ja"] = "ja";
|
|
1060
975
|
/** Korean */
|
|
1061
976
|
KnownSplitSkillLanguage["Ko"] = "ko";
|
|
1062
|
-
/**
|
|
977
|
+
/** Latvian */
|
|
978
|
+
KnownSplitSkillLanguage["Lv"] = "lv";
|
|
979
|
+
/** Norwegian */
|
|
980
|
+
KnownSplitSkillLanguage["Nb"] = "nb";
|
|
981
|
+
/** Dutch */
|
|
982
|
+
KnownSplitSkillLanguage["Nl"] = "nl";
|
|
983
|
+
/** Polish */
|
|
984
|
+
KnownSplitSkillLanguage["Pl"] = "pl";
|
|
985
|
+
/** Portuguese (Portugal) */
|
|
1063
986
|
KnownSplitSkillLanguage["Pt"] = "pt";
|
|
987
|
+
/** Portuguese (Brazil) */
|
|
988
|
+
KnownSplitSkillLanguage["PtBr"] = "pt-br";
|
|
989
|
+
/** Russian */
|
|
990
|
+
KnownSplitSkillLanguage["Ru"] = "ru";
|
|
991
|
+
/** Slovak */
|
|
992
|
+
KnownSplitSkillLanguage["Sk"] = "sk";
|
|
993
|
+
/** Slovenian */
|
|
994
|
+
KnownSplitSkillLanguage["Sl"] = "sl";
|
|
995
|
+
/** Serbian */
|
|
996
|
+
KnownSplitSkillLanguage["Sr"] = "sr";
|
|
997
|
+
/** Swedish */
|
|
998
|
+
KnownSplitSkillLanguage["Sv"] = "sv";
|
|
999
|
+
/** Turkish */
|
|
1000
|
+
KnownSplitSkillLanguage["Tr"] = "tr";
|
|
1001
|
+
/** Urdu */
|
|
1002
|
+
KnownSplitSkillLanguage["Ur"] = "ur";
|
|
1003
|
+
/** Chinese (Simplified) */
|
|
1004
|
+
KnownSplitSkillLanguage["Zh"] = "zh";
|
|
1064
1005
|
})(KnownSplitSkillLanguage || (KnownSplitSkillLanguage = {}));
|
|
1065
1006
|
/** Known values of {@link TextSplitMode} that the service accepts. */
|
|
1066
1007
|
export var KnownTextSplitMode;
|
|
@@ -1159,10 +1100,6 @@ export var KnownTextTranslationSkillLanguage;
|
|
|
1159
1100
|
KnownTextTranslationSkillLanguage["Sw"] = "sw";
|
|
1160
1101
|
/** Klingon */
|
|
1161
1102
|
KnownTextTranslationSkillLanguage["Tlh"] = "tlh";
|
|
1162
|
-
/** Klingon (Latin script) */
|
|
1163
|
-
KnownTextTranslationSkillLanguage["TlhLatn"] = "tlh-Latn";
|
|
1164
|
-
/** Klingon (Klingon script) */
|
|
1165
|
-
KnownTextTranslationSkillLanguage["TlhPiqd"] = "tlh-Piqd";
|
|
1166
1103
|
/** Korean */
|
|
1167
1104
|
KnownTextTranslationSkillLanguage["Ko"] = "ko";
|
|
1168
1105
|
/** Latvian */
|
|
@@ -1183,10 +1120,6 @@ export var KnownTextTranslationSkillLanguage;
|
|
|
1183
1120
|
KnownTextTranslationSkillLanguage["Pl"] = "pl";
|
|
1184
1121
|
/** Portuguese */
|
|
1185
1122
|
KnownTextTranslationSkillLanguage["Pt"] = "pt";
|
|
1186
|
-
/** Portuguese (Brazil) */
|
|
1187
|
-
KnownTextTranslationSkillLanguage["PtBr"] = "pt-br";
|
|
1188
|
-
/** Portuguese (Portugal) */
|
|
1189
|
-
KnownTextTranslationSkillLanguage["PtPT"] = "pt-PT";
|
|
1190
1123
|
/** Queretaro Otomi */
|
|
1191
1124
|
KnownTextTranslationSkillLanguage["Otq"] = "otq";
|
|
1192
1125
|
/** Romanian */
|
|
@@ -1229,47 +1162,115 @@ export var KnownTextTranslationSkillLanguage;
|
|
|
1229
1162
|
KnownTextTranslationSkillLanguage["Cy"] = "cy";
|
|
1230
1163
|
/** Yucatec Maya */
|
|
1231
1164
|
KnownTextTranslationSkillLanguage["Yua"] = "yua";
|
|
1232
|
-
/** Irish */
|
|
1233
|
-
KnownTextTranslationSkillLanguage["Ga"] = "ga";
|
|
1234
|
-
/** Kannada */
|
|
1235
|
-
KnownTextTranslationSkillLanguage["Kn"] = "kn";
|
|
1236
|
-
/** Maori */
|
|
1237
|
-
KnownTextTranslationSkillLanguage["Mi"] = "mi";
|
|
1238
|
-
/** Malayalam */
|
|
1239
|
-
KnownTextTranslationSkillLanguage["Ml"] = "ml";
|
|
1240
|
-
/** Punjabi */
|
|
1241
|
-
KnownTextTranslationSkillLanguage["Pa"] = "pa";
|
|
1242
1165
|
})(KnownTextTranslationSkillLanguage || (KnownTextTranslationSkillLanguage = {}));
|
|
1243
1166
|
/** Known values of {@link LexicalTokenizerName} that the service accepts. */
|
|
1244
1167
|
export var KnownLexicalTokenizerName;
|
|
1245
1168
|
(function (KnownLexicalTokenizerName) {
|
|
1246
|
-
/** Grammar-based tokenizer that is suitable for processing most European-language documents. See http
|
|
1169
|
+
/** Grammar-based tokenizer that is suitable for processing most European-language documents. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/standard\/ClassicTokenizer.html */
|
|
1247
1170
|
KnownLexicalTokenizerName["Classic"] = "classic";
|
|
1248
|
-
/** Tokenizes the input from an edge into n-grams of the given size(s). See https
|
|
1171
|
+
/** Tokenizes the input from an edge into n-grams of the given size(s). See https:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ngram\/EdgeNGramTokenizer.html */
|
|
1249
1172
|
KnownLexicalTokenizerName["EdgeNGram"] = "edgeNGram";
|
|
1250
|
-
/** Emits the entire input as a single token. See http
|
|
1173
|
+
/** Emits the entire input as a single token. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/KeywordTokenizer.html */
|
|
1251
1174
|
KnownLexicalTokenizerName["Keyword"] = "keyword_v2";
|
|
1252
|
-
/** Divides text at non-letters. See http
|
|
1175
|
+
/** Divides text at non-letters. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/LetterTokenizer.html */
|
|
1253
1176
|
KnownLexicalTokenizerName["Letter"] = "letter";
|
|
1254
|
-
/** Divides text at non-letters and converts them to lower case. See http
|
|
1177
|
+
/** Divides text at non-letters and converts them to lower case. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/LowerCaseTokenizer.html */
|
|
1255
1178
|
KnownLexicalTokenizerName["Lowercase"] = "lowercase";
|
|
1256
1179
|
/** Divides text using language-specific rules. */
|
|
1257
1180
|
KnownLexicalTokenizerName["MicrosoftLanguageTokenizer"] = "microsoft_language_tokenizer";
|
|
1258
1181
|
/** Divides text using language-specific rules and reduces words to their base forms. */
|
|
1259
1182
|
KnownLexicalTokenizerName["MicrosoftLanguageStemmingTokenizer"] = "microsoft_language_stemming_tokenizer";
|
|
1260
|
-
/** Tokenizes the input into n-grams of the given size(s). See http
|
|
1183
|
+
/** Tokenizes the input into n-grams of the given size(s). See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ngram\/NGramTokenizer.html */
|
|
1261
1184
|
KnownLexicalTokenizerName["NGram"] = "nGram";
|
|
1262
|
-
/** Tokenizer for path-like hierarchies. See http
|
|
1185
|
+
/** Tokenizer for path-like hierarchies. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/path\/PathHierarchyTokenizer.html */
|
|
1263
1186
|
KnownLexicalTokenizerName["PathHierarchy"] = "path_hierarchy_v2";
|
|
1264
|
-
/** Tokenizer that uses regex pattern matching to construct distinct tokens. See http
|
|
1187
|
+
/** Tokenizer that uses regex pattern matching to construct distinct tokens. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/pattern\/PatternTokenizer.html */
|
|
1265
1188
|
KnownLexicalTokenizerName["Pattern"] = "pattern";
|
|
1266
|
-
/** Standard Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter. See http
|
|
1189
|
+
/** Standard Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/standard\/StandardTokenizer.html */
|
|
1267
1190
|
KnownLexicalTokenizerName["Standard"] = "standard_v2";
|
|
1268
|
-
/** Tokenizes urls and emails as one token. See http
|
|
1191
|
+
/** Tokenizes urls and emails as one token. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/standard\/UAX29URLEmailTokenizer.html */
|
|
1269
1192
|
KnownLexicalTokenizerName["UaxUrlEmail"] = "uax_url_email";
|
|
1270
|
-
/** Divides text at whitespace. See http
|
|
1193
|
+
/** Divides text at whitespace. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/WhitespaceTokenizer.html */
|
|
1271
1194
|
KnownLexicalTokenizerName["Whitespace"] = "whitespace";
|
|
1272
1195
|
})(KnownLexicalTokenizerName || (KnownLexicalTokenizerName = {}));
|
|
1196
|
+
/** Known values of {@link TokenFilterName} that the service accepts. */
|
|
1197
|
+
export var KnownTokenFilterName;
|
|
1198
|
+
(function (KnownTokenFilterName) {
|
|
1199
|
+
/** A token filter that applies the Arabic normalizer to normalize the orthography. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ar\/ArabicNormalizationFilter.html */
|
|
1200
|
+
KnownTokenFilterName["ArabicNormalization"] = "arabic_normalization";
|
|
1201
|
+
/** Strips all characters after an apostrophe (including the apostrophe itself). See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/tr\/ApostropheFilter.html */
|
|
1202
|
+
KnownTokenFilterName["Apostrophe"] = "apostrophe";
|
|
1203
|
+
/** Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if such equivalents exist. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/ASCIIFoldingFilter.html */
|
|
1204
|
+
KnownTokenFilterName["AsciiFolding"] = "asciifolding";
|
|
1205
|
+
/** Forms bigrams of CJK terms that are generated from the standard tokenizer. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/cjk\/CJKBigramFilter.html */
|
|
1206
|
+
KnownTokenFilterName["CjkBigram"] = "cjk_bigram";
|
|
1207
|
+
/** Normalizes CJK width differences. Folds fullwidth ASCII variants into the equivalent basic Latin, and half-width Katakana variants into the equivalent Kana. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/cjk\/CJKWidthFilter.html */
|
|
1208
|
+
KnownTokenFilterName["CjkWidth"] = "cjk_width";
|
|
1209
|
+
/** Removes English possessives, and dots from acronyms. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/standard\/ClassicFilter.html */
|
|
1210
|
+
KnownTokenFilterName["Classic"] = "classic";
|
|
1211
|
+
/** Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/commongrams\/CommonGramsFilter.html */
|
|
1212
|
+
KnownTokenFilterName["CommonGram"] = "common_grams";
|
|
1213
|
+
/** Generates n-grams of the given size(s) starting from the front or the back of an input token. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ngram\/EdgeNGramTokenFilter.html */
|
|
1214
|
+
KnownTokenFilterName["EdgeNGram"] = "edgeNGram_v2";
|
|
1215
|
+
/** Removes elisions. For example, "l'avion" (the plane) will be converted to "avion" (plane). See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/util\/ElisionFilter.html */
|
|
1216
|
+
KnownTokenFilterName["Elision"] = "elision";
|
|
1217
|
+
/** Normalizes German characters according to the heuristics of the German2 snowball algorithm. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/de\/GermanNormalizationFilter.html */
|
|
1218
|
+
KnownTokenFilterName["GermanNormalization"] = "german_normalization";
|
|
1219
|
+
/** Normalizes text in Hindi to remove some differences in spelling variations. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/hi\/HindiNormalizationFilter.html */
|
|
1220
|
+
KnownTokenFilterName["HindiNormalization"] = "hindi_normalization";
|
|
1221
|
+
/** Normalizes the Unicode representation of text in Indian languages. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/in\/IndicNormalizationFilter.html */
|
|
1222
|
+
KnownTokenFilterName["IndicNormalization"] = "indic_normalization";
|
|
1223
|
+
/** Emits each incoming token twice, once as keyword and once as non-keyword. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/KeywordRepeatFilter.html */
|
|
1224
|
+
KnownTokenFilterName["KeywordRepeat"] = "keyword_repeat";
|
|
1225
|
+
/** A high-performance kstem filter for English. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/en\/KStemFilter.html */
|
|
1226
|
+
KnownTokenFilterName["KStem"] = "kstem";
|
|
1227
|
+
/** Removes words that are too long or too short. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/LengthFilter.html */
|
|
1228
|
+
KnownTokenFilterName["Length"] = "length";
|
|
1229
|
+
/** Limits the number of tokens while indexing. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/LimitTokenCountFilter.html */
|
|
1230
|
+
KnownTokenFilterName["Limit"] = "limit";
|
|
1231
|
+
/** Normalizes token text to lower case. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/LowerCaseFilter.htm */
|
|
1232
|
+
KnownTokenFilterName["Lowercase"] = "lowercase";
|
|
1233
|
+
/** Generates n-grams of the given size(s). See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ngram\/NGramTokenFilter.html */
|
|
1234
|
+
KnownTokenFilterName["NGram"] = "nGram_v2";
|
|
1235
|
+
/** Applies normalization for Persian. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/fa\/PersianNormalizationFilter.html */
|
|
1236
|
+
KnownTokenFilterName["PersianNormalization"] = "persian_normalization";
|
|
1237
|
+
/** Create tokens for phonetic matches. See https:\//lucene.apache.org\/core\/4_10_3\/analyzers-phonetic\/org\/apache\/lucene\/analysis\/phonetic\/package-tree.html */
|
|
1238
|
+
KnownTokenFilterName["Phonetic"] = "phonetic";
|
|
1239
|
+
/** Uses the Porter stemming algorithm to transform the token stream. See http:\//tartarus.org\/~martin\/PorterStemmer */
|
|
1240
|
+
KnownTokenFilterName["PorterStem"] = "porter_stem";
|
|
1241
|
+
/** Reverses the token string. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/reverse\/ReverseStringFilter.html */
|
|
1242
|
+
KnownTokenFilterName["Reverse"] = "reverse";
|
|
1243
|
+
/** Normalizes use of the interchangeable Scandinavian characters. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/ScandinavianNormalizationFilter.html */
|
|
1244
|
+
KnownTokenFilterName["ScandinavianNormalization"] = "scandinavian_normalization";
|
|
1245
|
+
/** Folds Scandinavian characters åÅäæÄÆ->a and öÖøØ->o. It also discriminates against use of double vowels aa, ae, ao, oe and oo, leaving just the first one. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/ScandinavianFoldingFilter.html */
|
|
1246
|
+
KnownTokenFilterName["ScandinavianFoldingNormalization"] = "scandinavian_folding";
|
|
1247
|
+
/** Creates combinations of tokens as a single token. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/shingle\/ShingleFilter.html */
|
|
1248
|
+
KnownTokenFilterName["Shingle"] = "shingle";
|
|
1249
|
+
/** A filter that stems words using a Snowball-generated stemmer. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/snowball\/SnowballFilter.html */
|
|
1250
|
+
KnownTokenFilterName["Snowball"] = "snowball";
|
|
1251
|
+
/** Normalizes the Unicode representation of Sorani text. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/ckb\/SoraniNormalizationFilter.html */
|
|
1252
|
+
KnownTokenFilterName["SoraniNormalization"] = "sorani_normalization";
|
|
1253
|
+
/** Language specific stemming filter. See https:\//docs.microsoft.com\/rest\/api\/searchservice\/Custom-analyzers-in-Azure-Search#TokenFilters */
|
|
1254
|
+
KnownTokenFilterName["Stemmer"] = "stemmer";
|
|
1255
|
+
/** Removes stop words from a token stream. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/StopFilter.html */
|
|
1256
|
+
KnownTokenFilterName["Stopwords"] = "stopwords";
|
|
1257
|
+
/** Trims leading and trailing whitespace from tokens. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/TrimFilter.html */
|
|
1258
|
+
KnownTokenFilterName["Trim"] = "trim";
|
|
1259
|
+
/** Truncates the terms to a specific length. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/TruncateTokenFilter.html */
|
|
1260
|
+
KnownTokenFilterName["Truncate"] = "truncate";
|
|
1261
|
+
/** Filters out tokens with same text as the previous token. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/miscellaneous\/RemoveDuplicatesTokenFilter.html */
|
|
1262
|
+
KnownTokenFilterName["Unique"] = "unique";
|
|
1263
|
+
/** Normalizes token text to upper case. See http:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/core\/UpperCaseFilter.html */
|
|
1264
|
+
KnownTokenFilterName["Uppercase"] = "uppercase";
|
|
1265
|
+
/** Splits words into subwords and performs optional transformations on subword groups. */
|
|
1266
|
+
KnownTokenFilterName["WordDelimiter"] = "word_delimiter";
|
|
1267
|
+
})(KnownTokenFilterName || (KnownTokenFilterName = {}));
|
|
1268
|
+
/** Known values of {@link CharFilterName} that the service accepts. */
|
|
1269
|
+
export var KnownCharFilterName;
|
|
1270
|
+
(function (KnownCharFilterName) {
|
|
1271
|
+
/** A character filter that attempts to strip out HTML constructs. See https:\//lucene.apache.org\/core\/4_10_3\/analyzers-common\/org\/apache\/lucene\/analysis\/charfilter\/HTMLStripCharFilter.html */
|
|
1272
|
+
KnownCharFilterName["HtmlStrip"] = "html_strip";
|
|
1273
|
+
})(KnownCharFilterName || (KnownCharFilterName = {}));
|
|
1273
1274
|
/** Known values of {@link RegexFlags} that the service accepts. */
|
|
1274
1275
|
export var KnownRegexFlags;
|
|
1275
1276
|
(function (KnownRegexFlags) {
|