@azure/search-documents 12.0.0-alpha.20230926.1 → 12.0.0-alpha.20231009.1
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/dist/index.js +160 -157
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var tslib = require('tslib');
|
|
6
4
|
var coreRestPipeline = require('@azure/core-rest-pipeline');
|
|
7
5
|
var coreHttpCompat = require('@azure/core-http-compat');
|
|
@@ -13,10 +11,7 @@ var EventEmitter = require('events');
|
|
|
13
11
|
var util = require('util');
|
|
14
12
|
var fs = require('fs');
|
|
15
13
|
|
|
16
|
-
function
|
|
17
|
-
|
|
18
|
-
function _interopNamespace(e) {
|
|
19
|
-
if (e && e.__esModule) return e;
|
|
14
|
+
function _interopNamespaceDefault(e) {
|
|
20
15
|
var n = Object.create(null);
|
|
21
16
|
if (e) {
|
|
22
17
|
Object.keys(e).forEach(function (k) {
|
|
@@ -29,14 +24,13 @@ function _interopNamespace(e) {
|
|
|
29
24
|
}
|
|
30
25
|
});
|
|
31
26
|
}
|
|
32
|
-
n
|
|
27
|
+
n.default = e;
|
|
33
28
|
return Object.freeze(n);
|
|
34
29
|
}
|
|
35
30
|
|
|
36
|
-
var coreHttpCompat__namespace = /*#__PURE__*/
|
|
37
|
-
var coreClient__namespace = /*#__PURE__*/
|
|
38
|
-
var
|
|
39
|
-
var fs__namespace = /*#__PURE__*/_interopNamespace(fs);
|
|
31
|
+
var coreHttpCompat__namespace = /*#__PURE__*/_interopNamespaceDefault(coreHttpCompat);
|
|
32
|
+
var coreClient__namespace = /*#__PURE__*/_interopNamespaceDefault(coreClient);
|
|
33
|
+
var fs__namespace = /*#__PURE__*/_interopNamespaceDefault(fs);
|
|
40
34
|
|
|
41
35
|
/*
|
|
42
36
|
* Copyright (c) Microsoft Corporation.
|
|
@@ -1014,28 +1008,28 @@ const AutocompleteRequest = {
|
|
|
1014
1008
|
|
|
1015
1009
|
var Mappers$1 = /*#__PURE__*/Object.freeze({
|
|
1016
1010
|
__proto__: null,
|
|
1017
|
-
SearchError: SearchError$1,
|
|
1018
|
-
SearchDocumentsResult: SearchDocumentsResult,
|
|
1019
|
-
FacetResult: FacetResult,
|
|
1020
1011
|
AnswerResult: AnswerResult,
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1012
|
+
AutocompleteItem: AutocompleteItem,
|
|
1013
|
+
AutocompleteRequest: AutocompleteRequest,
|
|
1014
|
+
AutocompleteResult: AutocompleteResult,
|
|
1024
1015
|
CaptionResult: CaptionResult,
|
|
1025
1016
|
DocumentDebugInfo: DocumentDebugInfo,
|
|
1026
|
-
|
|
1027
|
-
QueryResultDocumentSemanticField: QueryResultDocumentSemanticField,
|
|
1028
|
-
QueryResultDocumentRerankerInput: QueryResultDocumentRerankerInput,
|
|
1029
|
-
SuggestDocumentsResult: SuggestDocumentsResult,
|
|
1030
|
-
SuggestResult: SuggestResult,
|
|
1031
|
-
SuggestRequest: SuggestRequest,
|
|
1032
|
-
IndexBatch: IndexBatch,
|
|
1017
|
+
FacetResult: FacetResult,
|
|
1033
1018
|
IndexAction: IndexAction,
|
|
1019
|
+
IndexBatch: IndexBatch,
|
|
1034
1020
|
IndexDocumentsResult: IndexDocumentsResult,
|
|
1035
1021
|
IndexingResult: IndexingResult,
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1022
|
+
QueryResultDocumentRerankerInput: QueryResultDocumentRerankerInput,
|
|
1023
|
+
QueryResultDocumentSemanticField: QueryResultDocumentSemanticField,
|
|
1024
|
+
SearchDocumentsResult: SearchDocumentsResult,
|
|
1025
|
+
SearchError: SearchError$1,
|
|
1026
|
+
SearchRequest: SearchRequest,
|
|
1027
|
+
SearchResult: SearchResult,
|
|
1028
|
+
SemanticDebugInfo: SemanticDebugInfo,
|
|
1029
|
+
SuggestDocumentsResult: SuggestDocumentsResult,
|
|
1030
|
+
SuggestRequest: SuggestRequest,
|
|
1031
|
+
SuggestResult: SuggestResult,
|
|
1032
|
+
Vector: Vector
|
|
1039
1033
|
});
|
|
1040
1034
|
|
|
1041
1035
|
/*
|
|
@@ -1953,7 +1947,7 @@ const autocompletePostOperationSpec = {
|
|
|
1953
1947
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
1954
1948
|
*/
|
|
1955
1949
|
/** @internal */
|
|
1956
|
-
|
|
1950
|
+
let SearchClient$1 = class SearchClient extends coreHttpCompat__namespace.ExtendedServiceClient {
|
|
1957
1951
|
/**
|
|
1958
1952
|
* Initializes a new instance of the SearchClient class.
|
|
1959
1953
|
* @param endpoint The endpoint URL of the search service.
|
|
@@ -1993,7 +1987,7 @@ class SearchClient$1 extends coreHttpCompat__namespace.ExtendedServiceClient {
|
|
|
1993
1987
|
this.apiVersion = apiVersion;
|
|
1994
1988
|
this.documents = new DocumentsImpl(this);
|
|
1995
1989
|
}
|
|
1996
|
-
}
|
|
1990
|
+
};
|
|
1997
1991
|
|
|
1998
1992
|
// Copyright (c) Microsoft Corporation.
|
|
1999
1993
|
// Licensed under the MIT license.
|
|
@@ -2016,12 +2010,14 @@ function createSearchApiKeyCredentialPolicy(credential) {
|
|
|
2016
2010
|
}
|
|
2017
2011
|
|
|
2018
2012
|
// Copyright (c) Microsoft Corporation.
|
|
2013
|
+
// Licensed under the MIT license.
|
|
2019
2014
|
/**
|
|
2020
2015
|
* The `@azure/logger` configuration for this package.
|
|
2021
2016
|
*/
|
|
2022
2017
|
const logger = logger$1.createClientLogger("search");
|
|
2023
2018
|
|
|
2024
2019
|
// Copyright (c) Microsoft Corporation.
|
|
2020
|
+
// Licensed under the MIT license.
|
|
2025
2021
|
/**
|
|
2026
2022
|
* Creates a tracing client using the global tracer.
|
|
2027
2023
|
* @internal
|
|
@@ -2061,6 +2057,7 @@ class GeographyPoint {
|
|
|
2061
2057
|
}
|
|
2062
2058
|
|
|
2063
2059
|
// Copyright (c) Microsoft Corporation.
|
|
2060
|
+
// Licensed under the MIT license.
|
|
2064
2061
|
const ISO8601DateRegex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,3})?Z$/i;
|
|
2065
2062
|
const GeoJSONPointTypeName = "Point";
|
|
2066
2063
|
const WorldGeodeticSystem1984 = "EPSG:4326"; // See https://epsg.io/4326
|
|
@@ -2986,6 +2983,7 @@ exports.KnownAnalyzerNames = void 0;
|
|
|
2986
2983
|
// END manually modified generated interfaces
|
|
2987
2984
|
|
|
2988
2985
|
// Copyright (c) Microsoft Corporation.
|
|
2986
|
+
// Licensed under the MIT license.
|
|
2989
2987
|
function convertSkillsToPublic(skills) {
|
|
2990
2988
|
if (!skills) {
|
|
2991
2989
|
return skills;
|
|
@@ -3495,6 +3493,7 @@ exports.KnownSearchAudience = void 0;
|
|
|
3495
3493
|
})(exports.KnownSearchAudience || (exports.KnownSearchAudience = {}));
|
|
3496
3494
|
|
|
3497
3495
|
// Copyright (c) Microsoft Corporation.
|
|
3496
|
+
// Licensed under the MIT license.
|
|
3498
3497
|
/**
|
|
3499
3498
|
* Class used to perform operations against a search index,
|
|
3500
3499
|
* including querying documents in the index as well as
|
|
@@ -4102,6 +4101,7 @@ class SearchClient {
|
|
|
4102
4101
|
}
|
|
4103
4102
|
|
|
4104
4103
|
// Copyright (c) Microsoft Corporation.
|
|
4104
|
+
// Licensed under the MIT license.
|
|
4105
4105
|
/**
|
|
4106
4106
|
* Default Batch Size
|
|
4107
4107
|
*/
|
|
@@ -4135,7 +4135,7 @@ class SearchIndexingBufferedSender {
|
|
|
4135
4135
|
/**
|
|
4136
4136
|
* Event emitter/publisher used in the Buffered Sender
|
|
4137
4137
|
*/
|
|
4138
|
-
this.emitter = new
|
|
4138
|
+
this.emitter = new EventEmitter();
|
|
4139
4139
|
this.client = client;
|
|
4140
4140
|
this.documentKeyRetriever = documentKeyRetriever;
|
|
4141
4141
|
// General Configuration properties
|
|
@@ -9685,161 +9685,161 @@ let discriminators = {
|
|
|
9685
9685
|
|
|
9686
9686
|
var Mappers = /*#__PURE__*/Object.freeze({
|
|
9687
9687
|
__proto__: null,
|
|
9688
|
-
SearchIndexerDataSource: SearchIndexerDataSource,
|
|
9689
|
-
DataSourceCredentials: DataSourceCredentials,
|
|
9690
|
-
SearchIndexerDataContainer: SearchIndexerDataContainer,
|
|
9691
|
-
SearchIndexerDataIdentity: SearchIndexerDataIdentity,
|
|
9692
|
-
DataChangeDetectionPolicy: DataChangeDetectionPolicy,
|
|
9693
|
-
DataDeletionDetectionPolicy: DataDeletionDetectionPolicy,
|
|
9694
|
-
SearchResourceEncryptionKey: SearchResourceEncryptionKey,
|
|
9695
|
-
AzureActiveDirectoryApplicationCredentials: AzureActiveDirectoryApplicationCredentials,
|
|
9696
|
-
SearchError: SearchError,
|
|
9697
|
-
ListDataSourcesResult: ListDataSourcesResult,
|
|
9698
|
-
DocumentKeysOrIds: DocumentKeysOrIds,
|
|
9699
|
-
SearchIndexer: SearchIndexer,
|
|
9700
|
-
IndexingSchedule: IndexingSchedule,
|
|
9701
|
-
IndexingParameters: IndexingParameters,
|
|
9702
|
-
IndexingParametersConfiguration: IndexingParametersConfiguration,
|
|
9703
|
-
FieldMapping: FieldMapping,
|
|
9704
|
-
FieldMappingFunction: FieldMappingFunction,
|
|
9705
|
-
SearchIndexerCache: SearchIndexerCache,
|
|
9706
|
-
ListIndexersResult: ListIndexersResult,
|
|
9707
|
-
SearchIndexerStatus: SearchIndexerStatus,
|
|
9708
|
-
IndexerExecutionResult: IndexerExecutionResult,
|
|
9709
|
-
IndexerState: IndexerState,
|
|
9710
|
-
SearchIndexerError: SearchIndexerError,
|
|
9711
|
-
SearchIndexerWarning: SearchIndexerWarning,
|
|
9712
|
-
SearchIndexerLimits: SearchIndexerLimits,
|
|
9713
|
-
SearchIndexerSkillset: SearchIndexerSkillset,
|
|
9714
|
-
SearchIndexerSkill: SearchIndexerSkill,
|
|
9715
|
-
InputFieldMappingEntry: InputFieldMappingEntry,
|
|
9716
|
-
OutputFieldMappingEntry: OutputFieldMappingEntry,
|
|
9717
|
-
CognitiveServicesAccount: CognitiveServicesAccount,
|
|
9718
|
-
SearchIndexerKnowledgeStore: SearchIndexerKnowledgeStore,
|
|
9719
|
-
SearchIndexerKnowledgeStoreProjection: SearchIndexerKnowledgeStoreProjection,
|
|
9720
|
-
SearchIndexerKnowledgeStoreProjectionSelector: SearchIndexerKnowledgeStoreProjectionSelector,
|
|
9721
|
-
ListSkillsetsResult: ListSkillsetsResult,
|
|
9722
|
-
SkillNames: SkillNames,
|
|
9723
|
-
SynonymMap: SynonymMap,
|
|
9724
|
-
ListSynonymMapsResult: ListSynonymMapsResult,
|
|
9725
|
-
SearchIndex: SearchIndex,
|
|
9726
|
-
SearchField: SearchField,
|
|
9727
|
-
ScoringProfile: ScoringProfile,
|
|
9728
|
-
TextWeights: TextWeights,
|
|
9729
|
-
ScoringFunction: ScoringFunction,
|
|
9730
|
-
CorsOptions: CorsOptions,
|
|
9731
|
-
Suggester: Suggester,
|
|
9732
|
-
LexicalAnalyzer: LexicalAnalyzer,
|
|
9733
|
-
LexicalTokenizer: LexicalTokenizer,
|
|
9734
|
-
TokenFilter: TokenFilter,
|
|
9735
|
-
CharFilter: CharFilter,
|
|
9736
|
-
LexicalNormalizer: LexicalNormalizer,
|
|
9737
|
-
Similarity: Similarity,
|
|
9738
|
-
SemanticSettings: SemanticSettings,
|
|
9739
|
-
SemanticConfiguration: SemanticConfiguration,
|
|
9740
|
-
PrioritizedFields: PrioritizedFields,
|
|
9741
|
-
SemanticField: SemanticField,
|
|
9742
|
-
VectorSearch: VectorSearch,
|
|
9743
|
-
VectorSearchAlgorithmConfiguration: VectorSearchAlgorithmConfiguration,
|
|
9744
|
-
ListIndexesResult: ListIndexesResult,
|
|
9745
|
-
GetIndexStatisticsResult: GetIndexStatisticsResult,
|
|
9746
9688
|
AnalyzeRequest: AnalyzeRequest,
|
|
9747
9689
|
AnalyzeResult: AnalyzeResult,
|
|
9748
9690
|
AnalyzedTokenInfo: AnalyzedTokenInfo,
|
|
9749
|
-
|
|
9750
|
-
|
|
9751
|
-
|
|
9752
|
-
|
|
9753
|
-
|
|
9754
|
-
|
|
9755
|
-
|
|
9756
|
-
|
|
9757
|
-
|
|
9758
|
-
|
|
9759
|
-
|
|
9691
|
+
AsciiFoldingTokenFilter: AsciiFoldingTokenFilter,
|
|
9692
|
+
AzureActiveDirectoryApplicationCredentials: AzureActiveDirectoryApplicationCredentials,
|
|
9693
|
+
AzureMachineLearningSkill: AzureMachineLearningSkill,
|
|
9694
|
+
BM25Similarity: BM25Similarity,
|
|
9695
|
+
CharFilter: CharFilter,
|
|
9696
|
+
CjkBigramTokenFilter: CjkBigramTokenFilter,
|
|
9697
|
+
ClassicSimilarity: ClassicSimilarity,
|
|
9698
|
+
ClassicTokenizer: ClassicTokenizer,
|
|
9699
|
+
CognitiveServicesAccount: CognitiveServicesAccount,
|
|
9700
|
+
CognitiveServicesAccountKey: CognitiveServicesAccountKey,
|
|
9701
|
+
CommonGramTokenFilter: CommonGramTokenFilter,
|
|
9702
|
+
ConditionalSkill: ConditionalSkill,
|
|
9703
|
+
CorsOptions: CorsOptions,
|
|
9704
|
+
CustomAnalyzer: CustomAnalyzer,
|
|
9760
9705
|
CustomEntity: CustomEntity,
|
|
9761
9706
|
CustomEntityAlias: CustomEntityAlias,
|
|
9762
|
-
SearchIndexerDataNoneIdentity: SearchIndexerDataNoneIdentity,
|
|
9763
|
-
SearchIndexerDataUserAssignedIdentity: SearchIndexerDataUserAssignedIdentity,
|
|
9764
|
-
HighWaterMarkChangeDetectionPolicy: HighWaterMarkChangeDetectionPolicy,
|
|
9765
|
-
SqlIntegratedChangeTrackingPolicy: SqlIntegratedChangeTrackingPolicy,
|
|
9766
|
-
SoftDeleteColumnDeletionDetectionPolicy: SoftDeleteColumnDeletionDetectionPolicy,
|
|
9767
|
-
ConditionalSkill: ConditionalSkill,
|
|
9768
|
-
KeyPhraseExtractionSkill: KeyPhraseExtractionSkill,
|
|
9769
|
-
OcrSkill: OcrSkill,
|
|
9770
|
-
ImageAnalysisSkill: ImageAnalysisSkill,
|
|
9771
|
-
LanguageDetectionSkill: LanguageDetectionSkill,
|
|
9772
|
-
ShaperSkill: ShaperSkill,
|
|
9773
|
-
MergeSkill: MergeSkill,
|
|
9774
|
-
EntityRecognitionSkill: EntityRecognitionSkill,
|
|
9775
|
-
SentimentSkill: SentimentSkill,
|
|
9776
|
-
SentimentSkillV3: SentimentSkillV3,
|
|
9777
|
-
EntityLinkingSkill: EntityLinkingSkill,
|
|
9778
|
-
EntityRecognitionSkillV3: EntityRecognitionSkillV3,
|
|
9779
|
-
PIIDetectionSkill: PIIDetectionSkill,
|
|
9780
|
-
SplitSkill: SplitSkill,
|
|
9781
9707
|
CustomEntityLookupSkill: CustomEntityLookupSkill,
|
|
9782
|
-
|
|
9783
|
-
|
|
9784
|
-
|
|
9785
|
-
|
|
9708
|
+
CustomNormalizer: CustomNormalizer,
|
|
9709
|
+
DataChangeDetectionPolicy: DataChangeDetectionPolicy,
|
|
9710
|
+
DataDeletionDetectionPolicy: DataDeletionDetectionPolicy,
|
|
9711
|
+
DataSourceCredentials: DataSourceCredentials,
|
|
9786
9712
|
DefaultCognitiveServicesAccount: DefaultCognitiveServicesAccount,
|
|
9787
|
-
CognitiveServicesAccountKey: CognitiveServicesAccountKey,
|
|
9788
|
-
SearchIndexerKnowledgeStoreTableProjectionSelector: SearchIndexerKnowledgeStoreTableProjectionSelector,
|
|
9789
|
-
SearchIndexerKnowledgeStoreBlobProjectionSelector: SearchIndexerKnowledgeStoreBlobProjectionSelector,
|
|
9790
|
-
DistanceScoringFunction: DistanceScoringFunction,
|
|
9791
|
-
FreshnessScoringFunction: FreshnessScoringFunction,
|
|
9792
|
-
MagnitudeScoringFunction: MagnitudeScoringFunction,
|
|
9793
|
-
TagScoringFunction: TagScoringFunction,
|
|
9794
|
-
CustomAnalyzer: CustomAnalyzer,
|
|
9795
|
-
PatternAnalyzer: PatternAnalyzer,
|
|
9796
|
-
LuceneStandardAnalyzer: LuceneStandardAnalyzer,
|
|
9797
|
-
StopAnalyzer: StopAnalyzer,
|
|
9798
|
-
ClassicTokenizer: ClassicTokenizer,
|
|
9799
|
-
EdgeNGramTokenizer: EdgeNGramTokenizer,
|
|
9800
|
-
KeywordTokenizer: KeywordTokenizer,
|
|
9801
|
-
KeywordTokenizerV2: KeywordTokenizerV2,
|
|
9802
|
-
MicrosoftLanguageTokenizer: MicrosoftLanguageTokenizer,
|
|
9803
|
-
MicrosoftLanguageStemmingTokenizer: MicrosoftLanguageStemmingTokenizer,
|
|
9804
|
-
NGramTokenizer: NGramTokenizer,
|
|
9805
|
-
PathHierarchyTokenizerV2: PathHierarchyTokenizerV2,
|
|
9806
|
-
PatternTokenizer: PatternTokenizer,
|
|
9807
|
-
LuceneStandardTokenizer: LuceneStandardTokenizer,
|
|
9808
|
-
LuceneStandardTokenizerV2: LuceneStandardTokenizerV2,
|
|
9809
|
-
UaxUrlEmailTokenizer: UaxUrlEmailTokenizer,
|
|
9810
|
-
AsciiFoldingTokenFilter: AsciiFoldingTokenFilter,
|
|
9811
|
-
CjkBigramTokenFilter: CjkBigramTokenFilter,
|
|
9812
|
-
CommonGramTokenFilter: CommonGramTokenFilter,
|
|
9813
9713
|
DictionaryDecompounderTokenFilter: DictionaryDecompounderTokenFilter,
|
|
9714
|
+
DistanceScoringFunction: DistanceScoringFunction,
|
|
9715
|
+
DistanceScoringParameters: DistanceScoringParameters,
|
|
9716
|
+
DocumentExtractionSkill: DocumentExtractionSkill,
|
|
9717
|
+
DocumentKeysOrIds: DocumentKeysOrIds,
|
|
9814
9718
|
EdgeNGramTokenFilter: EdgeNGramTokenFilter,
|
|
9815
9719
|
EdgeNGramTokenFilterV2: EdgeNGramTokenFilterV2,
|
|
9720
|
+
EdgeNGramTokenizer: EdgeNGramTokenizer,
|
|
9816
9721
|
ElisionTokenFilter: ElisionTokenFilter,
|
|
9722
|
+
EntityLinkingSkill: EntityLinkingSkill,
|
|
9723
|
+
EntityRecognitionSkill: EntityRecognitionSkill,
|
|
9724
|
+
EntityRecognitionSkillV3: EntityRecognitionSkillV3,
|
|
9725
|
+
FieldMapping: FieldMapping,
|
|
9726
|
+
FieldMappingFunction: FieldMappingFunction,
|
|
9727
|
+
FreshnessScoringFunction: FreshnessScoringFunction,
|
|
9728
|
+
FreshnessScoringParameters: FreshnessScoringParameters,
|
|
9729
|
+
GetIndexStatisticsResult: GetIndexStatisticsResult,
|
|
9730
|
+
HighWaterMarkChangeDetectionPolicy: HighWaterMarkChangeDetectionPolicy,
|
|
9731
|
+
HnswParameters: HnswParameters,
|
|
9732
|
+
HnswVectorSearchAlgorithmConfiguration: HnswVectorSearchAlgorithmConfiguration,
|
|
9733
|
+
ImageAnalysisSkill: ImageAnalysisSkill,
|
|
9734
|
+
IndexerExecutionResult: IndexerExecutionResult,
|
|
9735
|
+
IndexerState: IndexerState,
|
|
9736
|
+
IndexingParameters: IndexingParameters,
|
|
9737
|
+
IndexingParametersConfiguration: IndexingParametersConfiguration,
|
|
9738
|
+
IndexingSchedule: IndexingSchedule,
|
|
9739
|
+
InputFieldMappingEntry: InputFieldMappingEntry,
|
|
9817
9740
|
KeepTokenFilter: KeepTokenFilter,
|
|
9741
|
+
KeyPhraseExtractionSkill: KeyPhraseExtractionSkill,
|
|
9818
9742
|
KeywordMarkerTokenFilter: KeywordMarkerTokenFilter,
|
|
9743
|
+
KeywordTokenizer: KeywordTokenizer,
|
|
9744
|
+
KeywordTokenizerV2: KeywordTokenizerV2,
|
|
9745
|
+
LanguageDetectionSkill: LanguageDetectionSkill,
|
|
9819
9746
|
LengthTokenFilter: LengthTokenFilter,
|
|
9747
|
+
LexicalAnalyzer: LexicalAnalyzer,
|
|
9748
|
+
LexicalNormalizer: LexicalNormalizer,
|
|
9749
|
+
LexicalTokenizer: LexicalTokenizer,
|
|
9820
9750
|
LimitTokenFilter: LimitTokenFilter,
|
|
9751
|
+
ListAliasesResult: ListAliasesResult,
|
|
9752
|
+
ListDataSourcesResult: ListDataSourcesResult,
|
|
9753
|
+
ListIndexersResult: ListIndexersResult,
|
|
9754
|
+
ListIndexesResult: ListIndexesResult,
|
|
9755
|
+
ListSkillsetsResult: ListSkillsetsResult,
|
|
9756
|
+
ListSynonymMapsResult: ListSynonymMapsResult,
|
|
9757
|
+
LuceneStandardAnalyzer: LuceneStandardAnalyzer,
|
|
9758
|
+
LuceneStandardTokenizer: LuceneStandardTokenizer,
|
|
9759
|
+
LuceneStandardTokenizerV2: LuceneStandardTokenizerV2,
|
|
9760
|
+
MagnitudeScoringFunction: MagnitudeScoringFunction,
|
|
9761
|
+
MagnitudeScoringParameters: MagnitudeScoringParameters,
|
|
9762
|
+
MappingCharFilter: MappingCharFilter,
|
|
9763
|
+
MergeSkill: MergeSkill,
|
|
9764
|
+
MicrosoftLanguageStemmingTokenizer: MicrosoftLanguageStemmingTokenizer,
|
|
9765
|
+
MicrosoftLanguageTokenizer: MicrosoftLanguageTokenizer,
|
|
9821
9766
|
NGramTokenFilter: NGramTokenFilter,
|
|
9822
9767
|
NGramTokenFilterV2: NGramTokenFilterV2,
|
|
9768
|
+
NGramTokenizer: NGramTokenizer,
|
|
9769
|
+
OcrSkill: OcrSkill,
|
|
9770
|
+
OutputFieldMappingEntry: OutputFieldMappingEntry,
|
|
9771
|
+
PIIDetectionSkill: PIIDetectionSkill,
|
|
9772
|
+
PathHierarchyTokenizerV2: PathHierarchyTokenizerV2,
|
|
9773
|
+
PatternAnalyzer: PatternAnalyzer,
|
|
9823
9774
|
PatternCaptureTokenFilter: PatternCaptureTokenFilter,
|
|
9775
|
+
PatternReplaceCharFilter: PatternReplaceCharFilter,
|
|
9824
9776
|
PatternReplaceTokenFilter: PatternReplaceTokenFilter,
|
|
9777
|
+
PatternTokenizer: PatternTokenizer,
|
|
9825
9778
|
PhoneticTokenFilter: PhoneticTokenFilter,
|
|
9779
|
+
PrioritizedFields: PrioritizedFields,
|
|
9780
|
+
ResourceCounter: ResourceCounter,
|
|
9781
|
+
ScoringFunction: ScoringFunction,
|
|
9782
|
+
ScoringProfile: ScoringProfile,
|
|
9783
|
+
SearchAlias: SearchAlias,
|
|
9784
|
+
SearchError: SearchError,
|
|
9785
|
+
SearchField: SearchField,
|
|
9786
|
+
SearchIndex: SearchIndex,
|
|
9787
|
+
SearchIndexer: SearchIndexer,
|
|
9788
|
+
SearchIndexerCache: SearchIndexerCache,
|
|
9789
|
+
SearchIndexerDataContainer: SearchIndexerDataContainer,
|
|
9790
|
+
SearchIndexerDataIdentity: SearchIndexerDataIdentity,
|
|
9791
|
+
SearchIndexerDataNoneIdentity: SearchIndexerDataNoneIdentity,
|
|
9792
|
+
SearchIndexerDataSource: SearchIndexerDataSource,
|
|
9793
|
+
SearchIndexerDataUserAssignedIdentity: SearchIndexerDataUserAssignedIdentity,
|
|
9794
|
+
SearchIndexerError: SearchIndexerError,
|
|
9795
|
+
SearchIndexerKnowledgeStore: SearchIndexerKnowledgeStore,
|
|
9796
|
+
SearchIndexerKnowledgeStoreBlobProjectionSelector: SearchIndexerKnowledgeStoreBlobProjectionSelector,
|
|
9797
|
+
SearchIndexerKnowledgeStoreFileProjectionSelector: SearchIndexerKnowledgeStoreFileProjectionSelector,
|
|
9798
|
+
SearchIndexerKnowledgeStoreObjectProjectionSelector: SearchIndexerKnowledgeStoreObjectProjectionSelector,
|
|
9799
|
+
SearchIndexerKnowledgeStoreProjection: SearchIndexerKnowledgeStoreProjection,
|
|
9800
|
+
SearchIndexerKnowledgeStoreProjectionSelector: SearchIndexerKnowledgeStoreProjectionSelector,
|
|
9801
|
+
SearchIndexerKnowledgeStoreTableProjectionSelector: SearchIndexerKnowledgeStoreTableProjectionSelector,
|
|
9802
|
+
SearchIndexerLimits: SearchIndexerLimits,
|
|
9803
|
+
SearchIndexerSkill: SearchIndexerSkill,
|
|
9804
|
+
SearchIndexerSkillset: SearchIndexerSkillset,
|
|
9805
|
+
SearchIndexerStatus: SearchIndexerStatus,
|
|
9806
|
+
SearchIndexerWarning: SearchIndexerWarning,
|
|
9807
|
+
SearchResourceEncryptionKey: SearchResourceEncryptionKey,
|
|
9808
|
+
SemanticConfiguration: SemanticConfiguration,
|
|
9809
|
+
SemanticField: SemanticField,
|
|
9810
|
+
SemanticSettings: SemanticSettings,
|
|
9811
|
+
SentimentSkill: SentimentSkill,
|
|
9812
|
+
SentimentSkillV3: SentimentSkillV3,
|
|
9813
|
+
ServiceCounters: ServiceCounters,
|
|
9814
|
+
ServiceLimits: ServiceLimits,
|
|
9815
|
+
ServiceStatistics: ServiceStatistics,
|
|
9816
|
+
ShaperSkill: ShaperSkill,
|
|
9826
9817
|
ShingleTokenFilter: ShingleTokenFilter,
|
|
9818
|
+
Similarity: Similarity,
|
|
9819
|
+
SkillNames: SkillNames,
|
|
9827
9820
|
SnowballTokenFilter: SnowballTokenFilter,
|
|
9828
|
-
|
|
9821
|
+
SoftDeleteColumnDeletionDetectionPolicy: SoftDeleteColumnDeletionDetectionPolicy,
|
|
9822
|
+
SplitSkill: SplitSkill,
|
|
9823
|
+
SqlIntegratedChangeTrackingPolicy: SqlIntegratedChangeTrackingPolicy,
|
|
9829
9824
|
StemmerOverrideTokenFilter: StemmerOverrideTokenFilter,
|
|
9825
|
+
StemmerTokenFilter: StemmerTokenFilter,
|
|
9826
|
+
StopAnalyzer: StopAnalyzer,
|
|
9830
9827
|
StopwordsTokenFilter: StopwordsTokenFilter,
|
|
9828
|
+
Suggester: Suggester,
|
|
9829
|
+
SynonymMap: SynonymMap,
|
|
9831
9830
|
SynonymTokenFilter: SynonymTokenFilter,
|
|
9831
|
+
TagScoringFunction: TagScoringFunction,
|
|
9832
|
+
TagScoringParameters: TagScoringParameters,
|
|
9833
|
+
TextTranslationSkill: TextTranslationSkill,
|
|
9834
|
+
TextWeights: TextWeights,
|
|
9835
|
+
TokenFilter: TokenFilter,
|
|
9832
9836
|
TruncateTokenFilter: TruncateTokenFilter,
|
|
9837
|
+
UaxUrlEmailTokenizer: UaxUrlEmailTokenizer,
|
|
9833
9838
|
UniqueTokenFilter: UniqueTokenFilter,
|
|
9839
|
+
VectorSearch: VectorSearch,
|
|
9840
|
+
VectorSearchAlgorithmConfiguration: VectorSearchAlgorithmConfiguration,
|
|
9841
|
+
WebApiSkill: WebApiSkill,
|
|
9834
9842
|
WordDelimiterTokenFilter: WordDelimiterTokenFilter,
|
|
9835
|
-
MappingCharFilter: MappingCharFilter,
|
|
9836
|
-
PatternReplaceCharFilter: PatternReplaceCharFilter,
|
|
9837
|
-
CustomNormalizer: CustomNormalizer,
|
|
9838
|
-
ClassicSimilarity: ClassicSimilarity,
|
|
9839
|
-
BM25Similarity: BM25Similarity,
|
|
9840
|
-
HnswVectorSearchAlgorithmConfiguration: HnswVectorSearchAlgorithmConfiguration,
|
|
9841
|
-
SearchIndexerKnowledgeStoreObjectProjectionSelector: SearchIndexerKnowledgeStoreObjectProjectionSelector,
|
|
9842
|
-
SearchIndexerKnowledgeStoreFileProjectionSelector: SearchIndexerKnowledgeStoreFileProjectionSelector,
|
|
9843
9843
|
discriminators: discriminators
|
|
9844
9844
|
});
|
|
9845
9845
|
|
|
@@ -11259,6 +11259,7 @@ const getServiceStatisticsOperationSpec = {
|
|
|
11259
11259
|
};
|
|
11260
11260
|
|
|
11261
11261
|
// Copyright (c) Microsoft Corporation.
|
|
11262
|
+
// Licensed under the MIT license.
|
|
11262
11263
|
/**
|
|
11263
11264
|
* Class to perform operations to manage
|
|
11264
11265
|
* (create, update, list/delete)
|
|
@@ -11916,6 +11917,7 @@ class SearchIndexClient {
|
|
|
11916
11917
|
}
|
|
11917
11918
|
|
|
11918
11919
|
// Copyright (c) Microsoft Corporation.
|
|
11920
|
+
// Licensed under the MIT license.
|
|
11919
11921
|
/**
|
|
11920
11922
|
* Class to perform operations to manage
|
|
11921
11923
|
* (create, update, list/delete)
|
|
@@ -14093,6 +14095,7 @@ exports.KnownRegexFlags = void 0;
|
|
|
14093
14095
|
})(exports.KnownRegexFlags || (exports.KnownRegexFlags = {}));
|
|
14094
14096
|
|
|
14095
14097
|
// Copyright (c) Microsoft Corporation.
|
|
14098
|
+
// Licensed under the MIT license.
|
|
14096
14099
|
const readFileAsync = util.promisify(fs__namespace.readFile);
|
|
14097
14100
|
/**
|
|
14098
14101
|
* Helper method to create a SynonymMap object. This is a NodeJS only method.
|