@elastic/elasticsearch 8.15.1 → 8.15.3
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/.dockerignore +1 -0
- package/lib/api/types.d.ts +7 -6
- package/lib/api/typesWithBodyKey.d.ts +7 -6
- package/package.json +7 -8
package/.dockerignore
CHANGED
package/lib/api/types.d.ts
CHANGED
|
@@ -3898,9 +3898,9 @@ export interface AnalysisNGramTokenFilter extends AnalysisTokenFilterBase {
|
|
|
3898
3898
|
export interface AnalysisNGramTokenizer extends AnalysisTokenizerBase {
|
|
3899
3899
|
type: 'ngram';
|
|
3900
3900
|
custom_token_chars?: string;
|
|
3901
|
-
max_gram
|
|
3902
|
-
min_gram
|
|
3903
|
-
token_chars
|
|
3901
|
+
max_gram?: integer;
|
|
3902
|
+
min_gram?: integer;
|
|
3903
|
+
token_chars?: AnalysisTokenChar[];
|
|
3904
3904
|
}
|
|
3905
3905
|
export interface AnalysisNoriAnalyzer {
|
|
3906
3906
|
type: 'nori';
|
|
@@ -8054,7 +8054,7 @@ export interface ConnectorFeatureEnabled {
|
|
|
8054
8054
|
export interface ConnectorFilteringAdvancedSnippet {
|
|
8055
8055
|
created_at?: DateTime;
|
|
8056
8056
|
updated_at?: DateTime;
|
|
8057
|
-
value:
|
|
8057
|
+
value: any;
|
|
8058
8058
|
}
|
|
8059
8059
|
export interface ConnectorFilteringConfig {
|
|
8060
8060
|
active: ConnectorFilteringRules;
|
|
@@ -13895,7 +13895,7 @@ export interface NodesInfoNodeInfoXpackLicenseType {
|
|
|
13895
13895
|
type: string;
|
|
13896
13896
|
}
|
|
13897
13897
|
export interface NodesInfoNodeInfoXpackSecurity {
|
|
13898
|
-
http
|
|
13898
|
+
http?: NodesInfoNodeInfoXpackSecuritySsl;
|
|
13899
13899
|
enabled: string;
|
|
13900
13900
|
transport?: NodesInfoNodeInfoXpackSecuritySsl;
|
|
13901
13901
|
authc?: NodesInfoNodeInfoXpackSecurityAuthc;
|
|
@@ -15630,7 +15630,8 @@ export interface SnapshotRestoreRequest extends RequestBase {
|
|
|
15630
15630
|
rename_replacement?: string;
|
|
15631
15631
|
}
|
|
15632
15632
|
export interface SnapshotRestoreResponse {
|
|
15633
|
-
|
|
15633
|
+
accepted?: boolean;
|
|
15634
|
+
snapshot?: SnapshotRestoreSnapshotRestore;
|
|
15634
15635
|
}
|
|
15635
15636
|
export interface SnapshotRestoreSnapshotRestore {
|
|
15636
15637
|
indices: IndexName[];
|
|
@@ -3971,9 +3971,9 @@ export interface AnalysisNGramTokenFilter extends AnalysisTokenFilterBase {
|
|
|
3971
3971
|
export interface AnalysisNGramTokenizer extends AnalysisTokenizerBase {
|
|
3972
3972
|
type: 'ngram';
|
|
3973
3973
|
custom_token_chars?: string;
|
|
3974
|
-
max_gram
|
|
3975
|
-
min_gram
|
|
3976
|
-
token_chars
|
|
3974
|
+
max_gram?: integer;
|
|
3975
|
+
min_gram?: integer;
|
|
3976
|
+
token_chars?: AnalysisTokenChar[];
|
|
3977
3977
|
}
|
|
3978
3978
|
export interface AnalysisNoriAnalyzer {
|
|
3979
3979
|
type: 'nori';
|
|
@@ -8155,7 +8155,7 @@ export interface ConnectorFeatureEnabled {
|
|
|
8155
8155
|
export interface ConnectorFilteringAdvancedSnippet {
|
|
8156
8156
|
created_at?: DateTime;
|
|
8157
8157
|
updated_at?: DateTime;
|
|
8158
|
-
value:
|
|
8158
|
+
value: any;
|
|
8159
8159
|
}
|
|
8160
8160
|
export interface ConnectorFilteringConfig {
|
|
8161
8161
|
active: ConnectorFilteringRules;
|
|
@@ -14247,7 +14247,7 @@ export interface NodesInfoNodeInfoXpackLicenseType {
|
|
|
14247
14247
|
type: string;
|
|
14248
14248
|
}
|
|
14249
14249
|
export interface NodesInfoNodeInfoXpackSecurity {
|
|
14250
|
-
http
|
|
14250
|
+
http?: NodesInfoNodeInfoXpackSecuritySsl;
|
|
14251
14251
|
enabled: string;
|
|
14252
14252
|
transport?: NodesInfoNodeInfoXpackSecuritySsl;
|
|
14253
14253
|
authc?: NodesInfoNodeInfoXpackSecurityAuthc;
|
|
@@ -16097,7 +16097,8 @@ export interface SnapshotRestoreRequest extends RequestBase {
|
|
|
16097
16097
|
};
|
|
16098
16098
|
}
|
|
16099
16099
|
export interface SnapshotRestoreResponse {
|
|
16100
|
-
|
|
16100
|
+
accepted?: boolean;
|
|
16101
|
+
snapshot?: SnapshotRestoreSnapshotRestore;
|
|
16101
16102
|
}
|
|
16102
16103
|
export interface SnapshotRestoreSnapshotRestore {
|
|
16103
16104
|
indices: IndexName[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elastic/elasticsearch",
|
|
3
|
-
"version": "8.15.
|
|
4
|
-
"versionCanary": "8.15.
|
|
3
|
+
"version": "8.15.3",
|
|
4
|
+
"versionCanary": "8.15.3-canary.0",
|
|
5
5
|
"description": "The official Elasticsearch client for Node.js",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"semver": "^7.3.7",
|
|
76
76
|
"split2": "^4.1.0",
|
|
77
77
|
"stoppable": "^1.1.0",
|
|
78
|
-
"tap": "^
|
|
78
|
+
"tap": "^21.0.1",
|
|
79
79
|
"ts-node": "^10.7.0",
|
|
80
80
|
"ts-standard": "^11.0.0",
|
|
81
81
|
"typescript": "^4.6.4",
|
|
@@ -88,10 +88,9 @@
|
|
|
88
88
|
"tslib": "^2.4.0"
|
|
89
89
|
},
|
|
90
90
|
"tap": {
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"check-coverage": false
|
|
91
|
+
"disable-coverage": true,
|
|
92
|
+
"files": [
|
|
93
|
+
"test/unit/{*,**/*}.test.ts"
|
|
94
|
+
]
|
|
96
95
|
}
|
|
97
96
|
}
|