Skip to content

Commit 2b76e5b

Browse files
authored
Merge pull request #406 from ml054/v5.4
v5.4
2 parents 8c5ef7c + 8b54926 commit 2b76e5b

File tree

221 files changed

+5487
-1385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+5487
-1385
lines changed

package-lock.json

Lines changed: 309 additions & 345 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"@types/sinon": "^10.0.13",
6262
"@types/unzipper": "^0.10.5",
6363
"@types/util.promisify": "^1.0.4",
64-
"@typescript-eslint/eslint-plugin": "^5.33.1",
65-
"@typescript-eslint/parser": "^5.33.1",
64+
"@typescript-eslint/eslint-plugin": "^6.10.0",
65+
"@typescript-eslint/parser": "^6.10.0",
6666
"cross-os": "^1.5.0",
6767
"eslint": "^8.22.0",
6868
"glob": "^7.2.3",

src/Constants.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export const HEADERS = {
6565
REQUEST_TIME: "Raven-Request-Time",
6666
REFRESH_TOPOLOGY: "Refresh-Topology",
6767
TOPOLOGY_ETAG: "Topology-Etag",
68+
CLUSTER_TOPOLOGY_ETAG: "Cluster-Topology-Etag",
6869
LAST_KNOWN_CLUSTER_TRANSACTION_INDEX: "Known-Raft-Index",
6970
CLIENT_CONFIGURATION_ETAG: "Client-Configuration-Etag",
7071
REFRESH_CLIENT_CONFIGURATION: "Refresh-Client-Configuration",
@@ -75,6 +76,7 @@ export const HEADERS = {
7576
TRANSFER_ENCODING: "Transfer-Encoding",
7677
CONTENT_ENCODING: "Content-Encoding",
7778
CONTENT_LENGTH: "Content-Length",
79+
INCREMENTAL_TIME_SERIES_PREFIX: "INC:",
7880
DATABASE_MISSING: "Database-Missing"
7981
} as const;
8082

@@ -91,5 +93,18 @@ export const TIME_SERIES = {
9193

9294

9395
export const COMPARE_EXCHANGE = {
96+
RVN_ATOMIC_PREFIX: "rvn-atomic/",
9497
OBJECT_FIELD_NAME: "Object"
9598
} as const;
99+
100+
export const INDEXES = {
101+
INDEXING_STATIC_SEARCH_ENGINE_TYPE: "Indexing.Static.SearchEngineType"
102+
} as const;
103+
104+
export const IDENTITIES = {
105+
DEFAULT_SEPARATOR: "/"
106+
} as const;
107+
108+
export const OBSOLETE = {
109+
GRAPH_API: "Graph API will be removed in next major version of the product."
110+
}

0 commit comments

Comments
 (0)