@xyo-network/tzero-stock-market-payload-plugin 7.0.2 → 7.0.4
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/dist/neutral/index.d.ts +1 -2
- package/dist/neutral/index.d.ts.map +1 -1
- package/dist/neutral/index.mjs +2 -60
- package/dist/neutral/index.mjs.map +4 -4
- package/package.json +52 -40
- package/dist/neutral/Payload/PriceHistory/Payload.d.ts +0 -23
- package/dist/neutral/Payload/PriceHistory/Payload.d.ts.map +0 -1
- package/dist/neutral/Payload/PriceHistory/Schema.d.ts +0 -11
- package/dist/neutral/Payload/PriceHistory/Schema.d.ts.map +0 -1
- package/dist/neutral/Payload/PriceHistory/index.d.ts +0 -3
- package/dist/neutral/Payload/PriceHistory/index.d.ts.map +0 -1
- package/dist/neutral/Payload/Snapshot/Payload.d.ts +0 -185
- package/dist/neutral/Payload/Snapshot/Payload.d.ts.map +0 -1
- package/dist/neutral/Payload/Snapshot/Schema.d.ts +0 -11
- package/dist/neutral/Payload/Snapshot/Schema.d.ts.map +0 -1
- package/dist/neutral/Payload/Snapshot/index.d.ts +0 -3
- package/dist/neutral/Payload/Snapshot/index.d.ts.map +0 -1
- package/dist/neutral/Payload/index.d.ts +0 -3
- package/dist/neutral/Payload/index.d.ts.map +0 -1
- package/dist/neutral/Schema.d.ts +0 -11
- package/dist/neutral/Schema.d.ts.map +0 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,iDAAiD,CAAA"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,61 +1,3 @@
|
|
|
1
|
-
// src/
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
// src/Schema.ts
|
|
5
|
-
import { asSchema } from "@xyo-network/sdk";
|
|
6
|
-
var TZeroStockMarketSchema = asSchema("network.xyo.stock.market.tzero", true);
|
|
7
|
-
|
|
8
|
-
// src/Payload/PriceHistory/Schema.ts
|
|
9
|
-
var PriceHistorySchema = asSchema2(`${TZeroStockMarketSchema}.history`, true);
|
|
10
|
-
|
|
11
|
-
// src/Payload/Snapshot/Payload.ts
|
|
12
|
-
import {
|
|
13
|
-
zodAsFactory,
|
|
14
|
-
zodIsFactory,
|
|
15
|
-
zodToFactory
|
|
16
|
-
} from "@ariestools/sdk";
|
|
17
|
-
import { PayloadZodOfSchema } from "@xyo-network/sdk";
|
|
18
|
-
import * as z from "zod/mini";
|
|
19
|
-
|
|
20
|
-
// src/Payload/Snapshot/Schema.ts
|
|
21
|
-
import { asSchema as asSchema3 } from "@xyo-network/sdk";
|
|
22
|
-
var SnapshotSchema = asSchema3(`${TZeroStockMarketSchema}.snapshot`, true);
|
|
23
|
-
|
|
24
|
-
// src/Payload/Snapshot/Payload.ts
|
|
25
|
-
var SnapshotFieldsZod = z.object({
|
|
26
|
-
askPrice: z.nullable(z.number()),
|
|
27
|
-
askPriceRate: z.nullable(z.number()),
|
|
28
|
-
askQtyBookTotal: z.nullable(z.number()),
|
|
29
|
-
askQuantity: z.nullable(z.number()),
|
|
30
|
-
bidPrice: z.nullable(z.number()),
|
|
31
|
-
bidPriceRate: z.nullable(z.number()),
|
|
32
|
-
bidQtyBookTotal: z.nullable(z.number()),
|
|
33
|
-
bidQuantity: z.nullable(z.number()),
|
|
34
|
-
high: z.nullable(z.number()),
|
|
35
|
-
lastPrice: z.nullable(z.number()),
|
|
36
|
-
lastQuantity: z.nullable(z.number()),
|
|
37
|
-
low: z.nullable(z.number()),
|
|
38
|
-
open: z.nullable(z.number()),
|
|
39
|
-
prevClosePx: z.nullable(z.number()),
|
|
40
|
-
symbol: z.string(),
|
|
41
|
-
timestamp: z.string(),
|
|
42
|
-
volume: z.number()
|
|
43
|
-
});
|
|
44
|
-
var SnapshotZod = z.extend(
|
|
45
|
-
PayloadZodOfSchema(SnapshotSchema),
|
|
46
|
-
{ ...SnapshotFieldsZod.shape }
|
|
47
|
-
);
|
|
48
|
-
var isSnapshot = zodIsFactory(SnapshotZod);
|
|
49
|
-
var asSnapshot = zodAsFactory(SnapshotZod, "asSnapshot");
|
|
50
|
-
var toSnapshot = zodToFactory(SnapshotZod, "toSnapshot");
|
|
51
|
-
export {
|
|
52
|
-
PriceHistorySchema,
|
|
53
|
-
SnapshotFieldsZod,
|
|
54
|
-
SnapshotSchema,
|
|
55
|
-
SnapshotZod,
|
|
56
|
-
TZeroStockMarketSchema,
|
|
57
|
-
asSnapshot,
|
|
58
|
-
isSnapshot,
|
|
59
|
-
toSnapshot
|
|
60
|
-
};
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/payload-plugins/tzero-stock-market";
|
|
61
3
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": [
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"sourcesContent": ["// Compatibility shim: this package re-exports from @xyo-network/payload-plugins/tzero-stock-market.\nexport * from '@xyo-network/payload-plugins/tzero-stock-market'\n"],
|
|
5
|
+
"mappings": ";AACA,cAAc;",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/tzero-stock-market-payload-plugin",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,61 +30,73 @@
|
|
|
30
30
|
"dist",
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@xyo-network/payload-plugins": "~7.0.4"
|
|
35
|
+
},
|
|
33
36
|
"devDependencies": {
|
|
34
|
-
"@ariestools/
|
|
37
|
+
"@ariestools/crypto": "~8.0.3",
|
|
38
|
+
"@ariestools/sdk": "~8.0.3",
|
|
39
|
+
"@ariestools/threads": "~8.0.3",
|
|
40
|
+
"@ariestools/toolchain": "~8.6.12",
|
|
41
|
+
"@ariestools/tsconfig": "~8.6.12",
|
|
35
42
|
"@bitauth/libauth": "~3.0.0",
|
|
43
|
+
"@metamask/providers": "~22.1.1",
|
|
36
44
|
"@noble/post-quantum": "~0.6.1",
|
|
45
|
+
"@opentelemetry/api": "~1.9.1",
|
|
46
|
+
"@opentelemetry/sdk-trace-base": "~2.9.0",
|
|
47
|
+
"@scure/base": "~2.2.0",
|
|
48
|
+
"@scure/bip39": "~2.2.0",
|
|
49
|
+
"@xyo-network/diviner-hash-lease": "~7.0.11",
|
|
50
|
+
"@xyo-network/sdk": "~7.0.11",
|
|
51
|
+
"@xyo-network/sdk-protocol": "~7.0.15",
|
|
52
|
+
"ajv": "~8.20.0",
|
|
53
|
+
"async-mutex": "~0.5.0",
|
|
54
|
+
"bowser": "~2.14.1",
|
|
55
|
+
"crypto-js": "~4.2.0",
|
|
56
|
+
"debug": "~4.4.3",
|
|
57
|
+
"eslint": "~10.6.0",
|
|
58
|
+
"eslint-import-resolver-typescript": "~4.4.5",
|
|
59
|
+
"ethers": "~6.17.0",
|
|
60
|
+
"hash-wasm": "~4.12.0",
|
|
61
|
+
"idb": "~8.0.3",
|
|
62
|
+
"node-screenlogic": "~2.1.1",
|
|
63
|
+
"observable-fns": "~0.6.1",
|
|
64
|
+
"typescript": "~6.0.3",
|
|
65
|
+
"webextension-polyfill": "~0.12.0",
|
|
66
|
+
"zod": "~4.4.3"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"@ariestools/crypto": "^8.0.3",
|
|
70
|
+
"@ariestools/sdk": "^8.0.3",
|
|
71
|
+
"@ariestools/threads": "^8.0.3",
|
|
72
|
+
"@bitauth/libauth": "^3.0.0",
|
|
73
|
+
"@metamask/providers": "^22.1.1",
|
|
74
|
+
"@noble/post-quantum": "^0.6.1",
|
|
37
75
|
"@opentelemetry/api": "^1.9.1",
|
|
38
|
-
"@opentelemetry/sdk-trace-base": "^2.
|
|
76
|
+
"@opentelemetry/sdk-trace-base": "^2.9.0",
|
|
39
77
|
"@scure/base": "^2.2.0",
|
|
40
|
-
"@scure/bip39": "
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@xylabs/tsconfig": "~8.5.15",
|
|
45
|
-
"@xyo-network/sdk": "~7.0.5",
|
|
46
|
-
"@xyo-network/sdk-protocol": "^7.0.8",
|
|
78
|
+
"@scure/bip39": "^2.2.0",
|
|
79
|
+
"@xyo-network/diviner-hash-lease": "^7.0.11",
|
|
80
|
+
"@xyo-network/sdk": "^7.0.11",
|
|
81
|
+
"@xyo-network/sdk-protocol": "^7.0.15",
|
|
47
82
|
"ajv": "^8.20.0",
|
|
48
83
|
"async-mutex": "^0.5.0",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"eslint-import-resolver-typescript": "^4.4.5",
|
|
84
|
+
"bowser": "^2.14.1",
|
|
85
|
+
"crypto-js": "^4.2.0",
|
|
86
|
+
"debug": "^4.4.3",
|
|
53
87
|
"ethers": "^6.17.0",
|
|
54
88
|
"hash-wasm": "^4.12.0",
|
|
55
89
|
"idb": "^8.0.3",
|
|
56
|
-
"
|
|
57
|
-
"observable-fns": "
|
|
58
|
-
"
|
|
90
|
+
"node-screenlogic": "^2.1.1",
|
|
91
|
+
"observable-fns": "^0.6.1",
|
|
92
|
+
"webextension-polyfill": "^0.12.0",
|
|
59
93
|
"zod": "^4.4.3"
|
|
60
94
|
},
|
|
61
|
-
"peerDependencies": {
|
|
62
|
-
"@ariestools/sdk": "^7.0",
|
|
63
|
-
"@bitauth/libauth": "~3.0",
|
|
64
|
-
"@noble/post-quantum": "~0.6.1",
|
|
65
|
-
"@opentelemetry/api": "^1.9",
|
|
66
|
-
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
67
|
-
"@scure/base": "^2.2",
|
|
68
|
-
"@scure/bip39": "~2.2",
|
|
69
|
-
"@xylabs/geo": "^7.0",
|
|
70
|
-
"@xylabs/threads": "^7.0",
|
|
71
|
-
"@xyo-network/sdk": "~7.0",
|
|
72
|
-
"@xyo-network/sdk-protocol": "^7.0",
|
|
73
|
-
"ajv": "^8.20",
|
|
74
|
-
"async-mutex": "^0.5",
|
|
75
|
-
"debug": "~4.4",
|
|
76
|
-
"ethers": "^6.16",
|
|
77
|
-
"hash-wasm": "^4.12",
|
|
78
|
-
"idb": "^8.0",
|
|
79
|
-
"lru-cache": "^11.3",
|
|
80
|
-
"observable-fns": "~0.6",
|
|
81
|
-
"zod": "^4.4"
|
|
82
|
-
},
|
|
83
95
|
"engines": {
|
|
84
96
|
"node": "^24"
|
|
85
97
|
},
|
|
86
98
|
"publishConfig": {
|
|
87
99
|
"access": "public"
|
|
88
100
|
},
|
|
89
|
-
"deprecated": "This package is
|
|
101
|
+
"deprecated": "Use @xyo-network/payload-plugins/tzero-stock-market instead. Replace @xyo-network/tzero-stock-market-payload-plugin with @xyo-network/payload-plugins/tzero-stock-market. This package is a compatibility shim only and will not receive further updates."
|
|
90
102
|
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
3
|
-
*/
|
|
4
|
-
export interface PriceHistory {
|
|
5
|
-
close: number | null;
|
|
6
|
-
date: string;
|
|
7
|
-
high: number | null;
|
|
8
|
-
low: number | null;
|
|
9
|
-
open: number | null;
|
|
10
|
-
symbol: string;
|
|
11
|
-
volume: number;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
15
|
-
*/
|
|
16
|
-
export interface PriceHistoryPageFields {
|
|
17
|
-
currentPage: number;
|
|
18
|
-
priceHistories: PriceHistory[];
|
|
19
|
-
size: number;
|
|
20
|
-
totalCount: number;
|
|
21
|
-
totalPages: number;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../../../src/Payload/PriceHistory/Payload.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;IAClB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;CACf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,EAAE,YAAY,EAAE,CAAA;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;CACnB"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
3
|
-
*/
|
|
4
|
-
export declare const PriceHistorySchema: string & {
|
|
5
|
-
readonly __schema: true;
|
|
6
|
-
};
|
|
7
|
-
/**
|
|
8
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
9
|
-
*/
|
|
10
|
-
export type PriceHistorySchema = typeof PriceHistorySchema;
|
|
11
|
-
//# sourceMappingURL=Schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../../../src/Payload/PriceHistory/Schema.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,kBAAkB;;CAAsD,CAAA;AACrF;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,kBAAkB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/Payload/PriceHistory/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA"}
|
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod/mini';
|
|
2
|
-
/**
|
|
3
|
-
* The fields for a Snapshot
|
|
4
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
5
|
-
*/
|
|
6
|
-
export declare const SnapshotFieldsZod: z.ZodMiniObject<{
|
|
7
|
-
askPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
8
|
-
askPriceRate: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
9
|
-
askQtyBookTotal: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
10
|
-
askQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
11
|
-
bidPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
12
|
-
bidPriceRate: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
13
|
-
bidQtyBookTotal: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
14
|
-
bidQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
15
|
-
high: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
16
|
-
lastPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
17
|
-
lastQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
18
|
-
low: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
19
|
-
open: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
20
|
-
prevClosePx: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
21
|
-
symbol: z.ZodMiniString<string>;
|
|
22
|
-
timestamp: z.ZodMiniString<string>;
|
|
23
|
-
volume: z.ZodMiniNumber<number>;
|
|
24
|
-
}, z.core.$strip>;
|
|
25
|
-
/**
|
|
26
|
-
* The fields for a Snapshot
|
|
27
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
28
|
-
*/
|
|
29
|
-
export type SnapshotFields = z.infer<typeof SnapshotFieldsZod>;
|
|
30
|
-
/**
|
|
31
|
-
* The Snapshot payload
|
|
32
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
33
|
-
*/
|
|
34
|
-
export declare const SnapshotZod: z.ZodMiniObject<{
|
|
35
|
-
schema: z.ZodMiniLiteral<string & {
|
|
36
|
-
readonly __schema: true;
|
|
37
|
-
}>;
|
|
38
|
-
askPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
39
|
-
askPriceRate: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
40
|
-
askQtyBookTotal: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
41
|
-
askQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
42
|
-
bidPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
43
|
-
bidPriceRate: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
44
|
-
bidQtyBookTotal: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
45
|
-
bidQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
46
|
-
high: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
47
|
-
lastPrice: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
48
|
-
lastQuantity: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
49
|
-
low: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
50
|
-
open: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
51
|
-
prevClosePx: z.ZodMiniNullable<z.ZodMiniNumber<number>>;
|
|
52
|
-
symbol: z.ZodMiniString<string>;
|
|
53
|
-
timestamp: z.ZodMiniString<string>;
|
|
54
|
-
volume: z.ZodMiniNumber<number>;
|
|
55
|
-
}, z.core.$strip>;
|
|
56
|
-
/**
|
|
57
|
-
* The Snapshot payload
|
|
58
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
59
|
-
*/
|
|
60
|
-
export type Snapshot = z.infer<typeof SnapshotZod>;
|
|
61
|
-
/**
|
|
62
|
-
* Identity function for determine if an object is a Snapshot
|
|
63
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
64
|
-
*/
|
|
65
|
-
export declare const isSnapshot: <T>(value: T) => value is T & {
|
|
66
|
-
schema: string & {
|
|
67
|
-
readonly __schema: true;
|
|
68
|
-
};
|
|
69
|
-
askPrice: number | null;
|
|
70
|
-
askPriceRate: number | null;
|
|
71
|
-
askQtyBookTotal: number | null;
|
|
72
|
-
askQuantity: number | null;
|
|
73
|
-
bidPrice: number | null;
|
|
74
|
-
bidPriceRate: number | null;
|
|
75
|
-
bidQtyBookTotal: number | null;
|
|
76
|
-
bidQuantity: number | null;
|
|
77
|
-
high: number | null;
|
|
78
|
-
lastPrice: number | null;
|
|
79
|
-
lastQuantity: number | null;
|
|
80
|
-
low: number | null;
|
|
81
|
-
open: number | null;
|
|
82
|
-
prevClosePx: number | null;
|
|
83
|
-
symbol: string;
|
|
84
|
-
timestamp: string;
|
|
85
|
-
volume: number;
|
|
86
|
-
};
|
|
87
|
-
/**
|
|
88
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
89
|
-
*/
|
|
90
|
-
export declare const asSnapshot: {
|
|
91
|
-
<T>(value: T): (T & {
|
|
92
|
-
schema: string & {
|
|
93
|
-
readonly __schema: true;
|
|
94
|
-
};
|
|
95
|
-
askPrice: number | null;
|
|
96
|
-
askPriceRate: number | null;
|
|
97
|
-
askQtyBookTotal: number | null;
|
|
98
|
-
askQuantity: number | null;
|
|
99
|
-
bidPrice: number | null;
|
|
100
|
-
bidPriceRate: number | null;
|
|
101
|
-
bidQtyBookTotal: number | null;
|
|
102
|
-
bidQuantity: number | null;
|
|
103
|
-
high: number | null;
|
|
104
|
-
lastPrice: number | null;
|
|
105
|
-
lastQuantity: number | null;
|
|
106
|
-
low: number | null;
|
|
107
|
-
open: number | null;
|
|
108
|
-
prevClosePx: number | null;
|
|
109
|
-
symbol: string;
|
|
110
|
-
timestamp: string;
|
|
111
|
-
volume: number;
|
|
112
|
-
}) | undefined;
|
|
113
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
114
|
-
schema: string & {
|
|
115
|
-
readonly __schema: true;
|
|
116
|
-
};
|
|
117
|
-
askPrice: number | null;
|
|
118
|
-
askPriceRate: number | null;
|
|
119
|
-
askQtyBookTotal: number | null;
|
|
120
|
-
askQuantity: number | null;
|
|
121
|
-
bidPrice: number | null;
|
|
122
|
-
bidPriceRate: number | null;
|
|
123
|
-
bidQtyBookTotal: number | null;
|
|
124
|
-
bidQuantity: number | null;
|
|
125
|
-
high: number | null;
|
|
126
|
-
lastPrice: number | null;
|
|
127
|
-
lastQuantity: number | null;
|
|
128
|
-
low: number | null;
|
|
129
|
-
open: number | null;
|
|
130
|
-
prevClosePx: number | null;
|
|
131
|
-
symbol: string;
|
|
132
|
-
timestamp: string;
|
|
133
|
-
volume: number;
|
|
134
|
-
};
|
|
135
|
-
};
|
|
136
|
-
/**
|
|
137
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
138
|
-
*/
|
|
139
|
-
export declare const toSnapshot: {
|
|
140
|
-
<T>(value: T): (T & {
|
|
141
|
-
schema: string & {
|
|
142
|
-
readonly __schema: true;
|
|
143
|
-
};
|
|
144
|
-
askPrice: number | null;
|
|
145
|
-
askPriceRate: number | null;
|
|
146
|
-
askQtyBookTotal: number | null;
|
|
147
|
-
askQuantity: number | null;
|
|
148
|
-
bidPrice: number | null;
|
|
149
|
-
bidPriceRate: number | null;
|
|
150
|
-
bidQtyBookTotal: number | null;
|
|
151
|
-
bidQuantity: number | null;
|
|
152
|
-
high: number | null;
|
|
153
|
-
lastPrice: number | null;
|
|
154
|
-
lastQuantity: number | null;
|
|
155
|
-
low: number | null;
|
|
156
|
-
open: number | null;
|
|
157
|
-
prevClosePx: number | null;
|
|
158
|
-
symbol: string;
|
|
159
|
-
timestamp: string;
|
|
160
|
-
volume: number;
|
|
161
|
-
}) | undefined;
|
|
162
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
163
|
-
schema: string & {
|
|
164
|
-
readonly __schema: true;
|
|
165
|
-
};
|
|
166
|
-
askPrice: number | null;
|
|
167
|
-
askPriceRate: number | null;
|
|
168
|
-
askQtyBookTotal: number | null;
|
|
169
|
-
askQuantity: number | null;
|
|
170
|
-
bidPrice: number | null;
|
|
171
|
-
bidPriceRate: number | null;
|
|
172
|
-
bidQtyBookTotal: number | null;
|
|
173
|
-
bidQuantity: number | null;
|
|
174
|
-
high: number | null;
|
|
175
|
-
lastPrice: number | null;
|
|
176
|
-
lastQuantity: number | null;
|
|
177
|
-
low: number | null;
|
|
178
|
-
open: number | null;
|
|
179
|
-
prevClosePx: number | null;
|
|
180
|
-
symbol: string;
|
|
181
|
-
timestamp: string;
|
|
182
|
-
volume: number;
|
|
183
|
-
};
|
|
184
|
-
};
|
|
185
|
-
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../../../src/Payload/Snapshot/Payload.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAI7B;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;iBAkB5B,CAAA;AAEF;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAE9D;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;iBAGvB,CAAA;AAED;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AAElD;;;GAGG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;CAA4B,CAAA;AACnD;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA0C,CAAA;AACjE;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA0C,CAAA"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
3
|
-
*/
|
|
4
|
-
export declare const SnapshotSchema: string & {
|
|
5
|
-
readonly __schema: true;
|
|
6
|
-
};
|
|
7
|
-
/**
|
|
8
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
9
|
-
*/
|
|
10
|
-
export type SnapshotSchema = typeof SnapshotSchema;
|
|
11
|
-
//# sourceMappingURL=Schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../../../src/Payload/Snapshot/Schema.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,eAAO,MAAM,cAAc;;CAAuD,CAAA;AAClF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/Payload/Snapshot/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Payload/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,qBAAqB,CAAA"}
|
package/dist/neutral/Schema.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
3
|
-
*/
|
|
4
|
-
export type TZeroStockMarketSchema = typeof TZeroStockMarketSchema;
|
|
5
|
-
/**
|
|
6
|
-
* @deprecated This export is deprecated and is no longer maintained.
|
|
7
|
-
*/
|
|
8
|
-
export declare const TZeroStockMarketSchema: "network.xyo.stock.market.tzero" & {
|
|
9
|
-
readonly __schema: true;
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=Schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAA;AAClE;;GAEG;AACH,eAAO,MAAM,sBAAsB;;CAAmD,CAAA"}
|