@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 CHANGED
@@ -1,25 +1,24 @@
1
1
  {
2
- "name": "@vuu-ui/vuu-data-test",
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.32-debug",
8
- "@vuu-ui/vuu-utils": "0.8.32-debug",
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.32-debug",
13
- "@vuu-ui/vuu-data-types": "0.8.32-debug",
14
- "@vuu-ui/vuu-table-types": "0.8.32-debug"
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
- "cjs",
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>;
@@ -1,2 +1,2 @@
1
1
  export { type BasketsTableName, schemas as basketSchemas, } from "./basket-schemas";
2
- export { default as basketModule, createBasketTradingRow, } from "./basket-module";
2
+ export * from "./basket-module";
@@ -1,2 +1,2 @@
1
1
  export { type SimulTableName, schemas as simulSchemas } from "./simul-schemas";
2
- export { default as simulModule } from "./simul-module";
2
+ export * from "./simul-module";
@@ -1,5 +1,5 @@
1
1
  export * from "./currencies";
2
- export { default as InstrumentReferenceData, InstrumentColumnMap, } from "./instruments";
3
- export { default as InstrumentPricesReferenceData, InstrumentPricesColumnMap, } from "./instrument-prices";
4
- export { default as PriceReferenceData } from "./prices";
2
+ export * from "./instruments";
3
+ export * from "./instrument-prices";
4
+ export * from "./prices";
5
5
  export * from "./locations";
@@ -1,19 +1,19 @@
1
- export type ask = number;
2
- export type askSize = number;
3
- export type bbg = string;
4
- export type bid = number;
5
- export type bidSize = number;
6
- export type close = number;
7
- export type currency = string;
8
- export type description = string;
9
- export type exchange = string;
10
- export type isin = string;
11
- export type last = number;
12
- export type lotSize = number;
13
- export type open = number;
14
- export type phase = string;
15
- export type ric = string;
16
- export type scenario = string;
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 default instrumentPrices;
54
+ export { instrumentPrices };
@@ -1,3 +1,2 @@
1
1
  import { Table } from "../../Table";
2
- declare const instrumentsExtendedTable: Table;
3
- export default instrumentsExtendedTable;
2
+ export declare const instrumentsExtendedTable: Table;
@@ -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;
@@ -31,6 +31,5 @@ export declare const OrderColumnMap: {
31
31
  readonly trader: 8;
32
32
  };
33
33
  declare const ordersData: OrdersDataRow[];
34
- declare const ordersTable: Table;
34
+ export declare const ordersTable: Table;
35
35
  export { ordersData };
36
- export default ordersTable;
@@ -1,14 +1,14 @@
1
1
  import { Table } from "../../Table";
2
- export type ask = number;
3
- export type askSize = number;
4
- export type bid = number;
5
- export type bidSize = number;
6
- export type close = number;
7
- export type last = number;
8
- export type open = number;
9
- export type phase = "C";
10
- export type ric = string;
11
- export type scenario = "close";
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;
@@ -1,4 +1,3 @@
1
1
  import { VuuModule } from "../vuu-modules";
2
2
  import { SimulTableName } from "./simul-schemas";
3
- declare const simulModule: VuuModule<SimulTableName>;
4
- export default simulModule;
3
+ export declare const simulModule: VuuModule<SimulTableName>;