@vuu-ui/vuu-data-test 0.8.32-debug → 0.8.33
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 +9 -10
- package/types/basket/basket-module.d.ts +1 -2
- package/types/basket/index.d.ts +1 -1
- package/types/simul/index.d.ts +1 -1
- package/types/simul/reference-data/index.d.ts +3 -3
- package/types/simul/reference-data/instrument-prices.d.ts +17 -17
- package/types/simul/reference-data/instruments-extended.d.ts +1 -2
- package/types/simul/reference-data/instruments.d.ts +1 -2
- package/types/simul/reference-data/orders.d.ts +1 -2
- package/types/simul/reference-data/prices.d.ts +12 -12
- package/types/simul/simul-module.d.ts +1 -2
- package/cjs/index.js +0 -2470
- package/cjs/index.js.map +0 -7
- package/esm/index.js +0 -2462
- package/esm/index.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"version": "0.8.32-debug",
|
|
2
|
+
"version": "0.8.33",
|
|
4
3
|
"author": "heswell",
|
|
5
4
|
"license": "Apache-2.0",
|
|
6
5
|
"dependencies": {
|
|
7
|
-
"@vuu-ui/vuu-data-local": "0.8.
|
|
8
|
-
"@vuu-ui/vuu-utils": "0.8.
|
|
6
|
+
"@vuu-ui/vuu-data-local": "0.8.33",
|
|
7
|
+
"@vuu-ui/vuu-utils": "0.8.33",
|
|
9
8
|
"@thomaschaplin/isin-generator": "1.0.3"
|
|
10
9
|
},
|
|
11
10
|
"devDependencies": {
|
|
12
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
13
|
-
"@vuu-ui/vuu-data-types": "0.8.
|
|
14
|
-
"@vuu-ui/vuu-table-types": "0.8.
|
|
11
|
+
"@vuu-ui/vuu-protocol-types": "0.8.33",
|
|
12
|
+
"@vuu-ui/vuu-data-types": "0.8.33",
|
|
13
|
+
"@vuu-ui/vuu-table-types": "0.8.33"
|
|
15
14
|
},
|
|
16
15
|
"sideEffects": false,
|
|
17
16
|
"files": [
|
|
18
|
-
"
|
|
19
|
-
"esm",
|
|
17
|
+
"README.md",
|
|
20
18
|
"/types"
|
|
21
19
|
],
|
|
22
|
-
"module": "esm/index.js",
|
|
23
20
|
"main": "cjs/index.js",
|
|
21
|
+
"module": "esm/index.js",
|
|
22
|
+
"name": "@vuu-ui/vuu-data-test",
|
|
24
23
|
"types": "types/index.d.ts"
|
|
25
24
|
}
|
|
@@ -3,5 +3,4 @@ import { VuuModule } from "../vuu-modules";
|
|
|
3
3
|
import { BasketsTableName } from "./basket-schemas";
|
|
4
4
|
export declare const createBasketTradingRow: (basketId: string, basketName: string, side?: string, status?: string) => (string | number)[];
|
|
5
5
|
export declare const tables: Record<BasketsTableName, Table>;
|
|
6
|
-
declare const basketModule: VuuModule<BasketsTableName>;
|
|
7
|
-
export default basketModule;
|
|
6
|
+
export declare const basketModule: VuuModule<BasketsTableName>;
|
package/types/basket/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { type BasketsTableName, schemas as basketSchemas, } from "./basket-schemas";
|
|
2
|
-
export
|
|
2
|
+
export * from "./basket-module";
|
package/types/simul/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { type SimulTableName, schemas as simulSchemas } from "./simul-schemas";
|
|
2
|
-
export
|
|
2
|
+
export * from "./simul-module";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "./currencies";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
2
|
+
export * from "./instruments";
|
|
3
|
+
export * from "./instrument-prices";
|
|
4
|
+
export * from "./prices";
|
|
5
5
|
export * from "./locations";
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
type ask = number;
|
|
2
|
+
type askSize = number;
|
|
3
|
+
type bbg = string;
|
|
4
|
+
type bid = number;
|
|
5
|
+
type bidSize = number;
|
|
6
|
+
type close = number;
|
|
7
|
+
type currency = string;
|
|
8
|
+
type description = string;
|
|
9
|
+
type exchange = string;
|
|
10
|
+
type isin = string;
|
|
11
|
+
type last = number;
|
|
12
|
+
type lotSize = number;
|
|
13
|
+
type open = number;
|
|
14
|
+
type phase = string;
|
|
15
|
+
type ric = string;
|
|
16
|
+
type scenario = string;
|
|
17
17
|
export type InstrumentPricesDataRow = [
|
|
18
18
|
ask,
|
|
19
19
|
askSize,
|
|
@@ -51,4 +51,4 @@ export declare const InstrumentPricesColumnMap: {
|
|
|
51
51
|
scenari: number;
|
|
52
52
|
};
|
|
53
53
|
declare const instrumentPrices: InstrumentPricesDataRow[];
|
|
54
|
-
export
|
|
54
|
+
export { instrumentPrices };
|
|
@@ -27,6 +27,5 @@ export declare const InstrumentColumnMap: {
|
|
|
27
27
|
};
|
|
28
28
|
declare const instrumentsData: InstrumentsDataRow[];
|
|
29
29
|
export declare const getRic: (defaultRic: string) => string;
|
|
30
|
-
declare const instrumentsTable: Table;
|
|
30
|
+
export declare const instrumentsTable: Table;
|
|
31
31
|
export { instrumentsData };
|
|
32
|
-
export default instrumentsTable;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Table } from "../../Table";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
type ask = number;
|
|
3
|
+
type askSize = number;
|
|
4
|
+
type bid = number;
|
|
5
|
+
type bidSize = number;
|
|
6
|
+
type close = number;
|
|
7
|
+
type last = number;
|
|
8
|
+
type open = number;
|
|
9
|
+
type phase = "C";
|
|
10
|
+
type ric = string;
|
|
11
|
+
type scenario = "close";
|
|
12
12
|
export type PricesDataRow = [
|
|
13
13
|
ask,
|
|
14
14
|
askSize,
|
|
@@ -21,7 +21,7 @@ export type PricesDataRow = [
|
|
|
21
21
|
ric,
|
|
22
22
|
scenario
|
|
23
23
|
];
|
|
24
|
+
declare const bid: number, bidSize: number, ask: number, askSize: number;
|
|
24
25
|
declare const pricesData: Array<PricesDataRow>;
|
|
25
|
-
declare const pricesTable: Table;
|
|
26
|
+
export declare const pricesTable: Table;
|
|
26
27
|
export { pricesData };
|
|
27
|
-
export default pricesTable;
|