fixparser-plugin-messagestore-kdb 0.0.1-init → 9.0.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/package.json CHANGED
@@ -1,13 +1,8 @@
1
1
  {
2
2
  "name": "fixparser-plugin-messagestore-kdb",
3
- "version": "0.0.1-init",
3
+ "version": "9.0.1",
4
4
  "description": "FIXParser KDB+ plugin",
5
- "files": [
6
- "./build/",
7
- "./types/",
8
- "./kdb-files/",
9
- "./LICENSE.md"
10
- ],
5
+ "files": ["./build/", "./types/", "./kdb-files/", "./LICENSE.md"],
11
6
  "repository": {
12
7
  "type": "git",
13
8
  "url": "git+https://gitlab.com/logotype/fixparser.git"
@@ -23,12 +18,7 @@
23
18
  "upgrade-interactive": "ncu -u -t latest"
24
19
  },
25
20
  "author": "Victor Norgren",
26
- "keywords": [
27
- "FIXParser",
28
- "KDB+",
29
- "KDB",
30
- "kx"
31
- ],
21
+ "keywords": ["FIXParser", "KDB+", "KDB", "kx"],
32
22
  "homepage": "https://fixparser.dev",
33
23
  "license": "SEE LICENSE IN LICENSE.md",
34
24
  "types": "./types/MessageStoreKDB.d.ts",
@@ -26,7 +26,16 @@ export declare class MessageStoreKDB implements IMessageStore<IMessage> {
26
26
  private readonly writeInterval;
27
27
  private readonly writeIntervalId;
28
28
  private maxBufferSize;
29
- constructor({ host, port, tableName, parser, logger, onReady, maxBufferSize, writeInterval, }: MessageStoreKDBOptions);
29
+ constructor({
30
+ host,
31
+ port,
32
+ tableName,
33
+ parser,
34
+ logger,
35
+ onReady,
36
+ maxBufferSize,
37
+ writeInterval,
38
+ }: MessageStoreKDBOptions);
30
39
  private send;
31
40
  private sendAsync;
32
41
  private writeToKDB;