@continuumdao/continuum-node-sdk 1.3.23 → 1.3.25
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/core/chart/apply-chart-drawings.d.ts +37 -0
- package/dist/core/chart/apply-chart-drawings.d.ts.map +1 -0
- package/dist/core/chart/apply-chart-drawings.js +95 -0
- package/dist/core/chart/apply-chart-drawings.js.map +1 -0
- package/dist/core/chart/customization-catalog.d.ts +29 -0
- package/dist/core/chart/customization-catalog.d.ts.map +1 -0
- package/dist/core/chart/customization-catalog.js +68 -0
- package/dist/core/chart/customization-catalog.js.map +1 -0
- package/dist/core/chart/day-range.d.ts +14 -0
- package/dist/core/chart/day-range.d.ts.map +1 -0
- package/dist/core/chart/day-range.js +72 -0
- package/dist/core/chart/day-range.js.map +1 -0
- package/dist/core/chart/index.d.ts +1 -1
- package/dist/core/chart/index.d.ts.map +1 -1
- package/dist/core/chart/index.js +1 -1
- package/dist/core/chart/index.js.map +1 -1
- package/dist/core/chart/levels/calculate-tools.d.ts +82 -0
- package/dist/core/chart/levels/calculate-tools.d.ts.map +1 -0
- package/dist/core/chart/levels/calculate-tools.js +136 -0
- package/dist/core/chart/levels/calculate-tools.js.map +1 -0
- package/dist/core/chart/levels/key-levels.d.ts +26 -0
- package/dist/core/chart/levels/key-levels.d.ts.map +1 -0
- package/dist/core/chart/levels/key-levels.js +133 -0
- package/dist/core/chart/levels/key-levels.js.map +1 -0
- package/dist/core/chart/levels/pivot-points.d.ts +16 -0
- package/dist/core/chart/levels/pivot-points.d.ts.map +1 -0
- package/dist/core/chart/levels/pivot-points.js +47 -0
- package/dist/core/chart/levels/pivot-points.js.map +1 -0
- package/dist/core/chart/levels/trend-lines.d.ts +21 -0
- package/dist/core/chart/levels/trend-lines.d.ts.map +1 -0
- package/dist/core/chart/levels/trend-lines.js +126 -0
- package/dist/core/chart/levels/trend-lines.js.map +1 -0
- package/dist/core/chart/live/bar-merge.d.ts +8 -0
- package/dist/core/chart/live/bar-merge.d.ts.map +1 -0
- package/dist/core/chart/live/bar-merge.js +52 -0
- package/dist/core/chart/live/bar-merge.js.map +1 -0
- package/dist/core/chart/live/index.d.ts +1 -0
- package/dist/core/chart/live/index.d.ts.map +1 -1
- package/dist/core/chart/live/index.js +1 -0
- package/dist/core/chart/live/index.js.map +1 -1
- package/dist/core/chart/live/merge-tick.d.ts +2 -1
- package/dist/core/chart/live/merge-tick.d.ts.map +1 -1
- package/dist/core/chart/live/merge-tick.js +10 -5
- package/dist/core/chart/live/merge-tick.js.map +1 -1
- package/dist/core/chart/live/refresh.d.ts +4 -2
- package/dist/core/chart/live/refresh.d.ts.map +1 -1
- package/dist/core/chart/live/refresh.js +6 -3
- package/dist/core/chart/live/refresh.js.map +1 -1
- package/dist/core/chart/overlay-schemas.d.ts +399 -0
- package/dist/core/chart/overlay-schemas.d.ts.map +1 -1
- package/dist/core/chart/overlay-schemas.js +79 -1
- package/dist/core/chart/overlay-schemas.js.map +1 -1
- package/dist/core/chart/overlays.d.ts.map +1 -1
- package/dist/core/chart/overlays.js +171 -4
- package/dist/core/chart/overlays.js.map +1 -1
- package/dist/core/chart/prepare-from-rows.d.ts +218 -0
- package/dist/core/chart/prepare-from-rows.d.ts.map +1 -1
- package/dist/core/chart/prepare-replay.d.ts +6 -0
- package/dist/core/chart/prepare-replay.d.ts.map +1 -0
- package/dist/core/chart/prepare-replay.js +60 -0
- package/dist/core/chart/prepare-replay.js.map +1 -0
- package/dist/core/chart/prepare.d.ts.map +1 -1
- package/dist/core/chart/prepare.js +16 -5
- package/dist/core/chart/prepare.js.map +1 -1
- package/dist/core/chart/schemas.d.ts +652 -1
- package/dist/core/chart/schemas.d.ts.map +1 -1
- package/dist/core/chart/schemas.js +11 -2
- package/dist/core/chart/schemas.js.map +1 -1
- package/dist/mcp/chart.d.ts.map +1 -1
- package/dist/mcp/chart.js +80 -1
- package/dist/mcp/chart.js.map +1 -1
- package/dist/mcp/resources/chart.md +19 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export { ChartOverlayInputSchema, PrepareChartOverlaysSchema } from './overlay-schemas.js';
|
|
2
|
+
export { ChartOverlayInputSchema, PrepareChartDrawingsSchema, PrepareChartOverlaysSchema, } from './overlay-schemas.js';
|
|
3
3
|
export type { ChartOverlayInput } from './overlay-schemas.js';
|
|
4
4
|
export declare const CHART_V1_KIND: "continuum/chart/v1";
|
|
5
5
|
export declare const DEFAULT_CHART_MAX_POINTS = 5000;
|
|
@@ -156,6 +156,97 @@ export declare const PrepareChartInputSchema: z.ZodPreprocess<z.ZodObject<{
|
|
|
156
156
|
dotted: "dotted";
|
|
157
157
|
}>>;
|
|
158
158
|
}, z.core.$strict>>;
|
|
159
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
160
|
+
color: z.ZodOptional<z.ZodString>;
|
|
161
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
162
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
163
|
+
solid: "solid";
|
|
164
|
+
dashed: "dashed";
|
|
165
|
+
dotted: "dotted";
|
|
166
|
+
}>>;
|
|
167
|
+
}, z.core.$strict>>>;
|
|
168
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
169
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
170
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
171
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
172
|
+
price: z.ZodNumber;
|
|
173
|
+
label: z.ZodOptional<z.ZodString>;
|
|
174
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
175
|
+
level: "level";
|
|
176
|
+
support: "support";
|
|
177
|
+
resistance: "resistance";
|
|
178
|
+
}>>;
|
|
179
|
+
}, z.core.$strict>>;
|
|
180
|
+
id: z.ZodOptional<z.ZodString>;
|
|
181
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
182
|
+
color: z.ZodOptional<z.ZodString>;
|
|
183
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
184
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
185
|
+
solid: "solid";
|
|
186
|
+
dashed: "dashed";
|
|
187
|
+
dotted: "dotted";
|
|
188
|
+
}>>;
|
|
189
|
+
}, z.core.$strict>>;
|
|
190
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
191
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
192
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
193
|
+
id: z.ZodString;
|
|
194
|
+
price: z.ZodNumber;
|
|
195
|
+
}, z.core.$strict>>;
|
|
196
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
197
|
+
color: z.ZodOptional<z.ZodString>;
|
|
198
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
200
|
+
solid: "solid";
|
|
201
|
+
dashed: "dashed";
|
|
202
|
+
dotted: "dotted";
|
|
203
|
+
}>>;
|
|
204
|
+
}, z.core.$strict>>;
|
|
205
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
206
|
+
color: z.ZodOptional<z.ZodString>;
|
|
207
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
208
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
solid: "solid";
|
|
210
|
+
dashed: "dashed";
|
|
211
|
+
dotted: "dotted";
|
|
212
|
+
}>>;
|
|
213
|
+
}, z.core.$strict>>;
|
|
214
|
+
id: z.ZodOptional<z.ZodString>;
|
|
215
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
216
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
217
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
218
|
+
pointA: z.ZodObject<{
|
|
219
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
220
|
+
year: z.ZodNumber;
|
|
221
|
+
month: z.ZodNumber;
|
|
222
|
+
day: z.ZodNumber;
|
|
223
|
+
}, z.core.$strict>]>;
|
|
224
|
+
price: z.ZodNumber;
|
|
225
|
+
}, z.core.$strict>;
|
|
226
|
+
pointB: z.ZodObject<{
|
|
227
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
228
|
+
year: z.ZodNumber;
|
|
229
|
+
month: z.ZodNumber;
|
|
230
|
+
day: z.ZodNumber;
|
|
231
|
+
}, z.core.$strict>]>;
|
|
232
|
+
price: z.ZodNumber;
|
|
233
|
+
}, z.core.$strict>;
|
|
234
|
+
label: z.ZodOptional<z.ZodString>;
|
|
235
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
236
|
+
support: "support";
|
|
237
|
+
resistance: "resistance";
|
|
238
|
+
}>>;
|
|
239
|
+
}, z.core.$strict>>;
|
|
240
|
+
id: z.ZodOptional<z.ZodString>;
|
|
241
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
242
|
+
color: z.ZodOptional<z.ZodString>;
|
|
243
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
244
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
245
|
+
solid: "solid";
|
|
246
|
+
dashed: "dashed";
|
|
247
|
+
dotted: "dotted";
|
|
248
|
+
}>>;
|
|
249
|
+
}, z.core.$strict>>;
|
|
159
250
|
}, z.core.$strict>, z.ZodObject<{
|
|
160
251
|
type: z.ZodLiteral<"rsi">;
|
|
161
252
|
sourceSeriesId: z.ZodString;
|
|
@@ -205,6 +296,129 @@ export declare const PrepareChartInputSchema: z.ZodPreprocess<z.ZodObject<{
|
|
|
205
296
|
}>>;
|
|
206
297
|
}, z.core.$strict>>;
|
|
207
298
|
}, z.core.$strict>], "type">>>;
|
|
299
|
+
drawings: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
300
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
301
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
302
|
+
price: z.ZodNumber;
|
|
303
|
+
label: z.ZodOptional<z.ZodString>;
|
|
304
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
305
|
+
level: "level";
|
|
306
|
+
support: "support";
|
|
307
|
+
resistance: "resistance";
|
|
308
|
+
}>>;
|
|
309
|
+
}, z.core.$strict>>;
|
|
310
|
+
id: z.ZodOptional<z.ZodString>;
|
|
311
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
312
|
+
color: z.ZodOptional<z.ZodString>;
|
|
313
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
314
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
315
|
+
solid: "solid";
|
|
316
|
+
dashed: "dashed";
|
|
317
|
+
dotted: "dotted";
|
|
318
|
+
}>>;
|
|
319
|
+
}, z.core.$strict>>;
|
|
320
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
321
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
322
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
323
|
+
id: z.ZodString;
|
|
324
|
+
price: z.ZodNumber;
|
|
325
|
+
}, z.core.$strict>>;
|
|
326
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
327
|
+
color: z.ZodOptional<z.ZodString>;
|
|
328
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
329
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
330
|
+
solid: "solid";
|
|
331
|
+
dashed: "dashed";
|
|
332
|
+
dotted: "dotted";
|
|
333
|
+
}>>;
|
|
334
|
+
}, z.core.$strict>>;
|
|
335
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
336
|
+
color: z.ZodOptional<z.ZodString>;
|
|
337
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
338
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
339
|
+
solid: "solid";
|
|
340
|
+
dashed: "dashed";
|
|
341
|
+
dotted: "dotted";
|
|
342
|
+
}>>;
|
|
343
|
+
}, z.core.$strict>>;
|
|
344
|
+
id: z.ZodOptional<z.ZodString>;
|
|
345
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
346
|
+
type: z.ZodLiteral<"fibonacci">;
|
|
347
|
+
sourceSeriesId: z.ZodOptional<z.ZodString>;
|
|
348
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
349
|
+
high: z.ZodNumber;
|
|
350
|
+
low: z.ZodNumber;
|
|
351
|
+
trend: z.ZodEnum<{
|
|
352
|
+
up: "up";
|
|
353
|
+
down: "down";
|
|
354
|
+
}>;
|
|
355
|
+
}, z.core.$strict>>;
|
|
356
|
+
levels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
357
|
+
trend: z.ZodOptional<z.ZodEnum<{
|
|
358
|
+
up: "up";
|
|
359
|
+
down: "down";
|
|
360
|
+
}>>;
|
|
361
|
+
id: z.ZodOptional<z.ZodString>;
|
|
362
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
363
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
364
|
+
left: "left";
|
|
365
|
+
right: "right";
|
|
366
|
+
}>>;
|
|
367
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
368
|
+
color: z.ZodOptional<z.ZodString>;
|
|
369
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
370
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
371
|
+
solid: "solid";
|
|
372
|
+
dashed: "dashed";
|
|
373
|
+
dotted: "dotted";
|
|
374
|
+
}>>;
|
|
375
|
+
}, z.core.$strict>>;
|
|
376
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
377
|
+
color: z.ZodOptional<z.ZodString>;
|
|
378
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
380
|
+
solid: "solid";
|
|
381
|
+
dashed: "dashed";
|
|
382
|
+
dotted: "dotted";
|
|
383
|
+
}>>;
|
|
384
|
+
}, z.core.$strict>>>;
|
|
385
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
386
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
387
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
388
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
389
|
+
pointA: z.ZodObject<{
|
|
390
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
391
|
+
year: z.ZodNumber;
|
|
392
|
+
month: z.ZodNumber;
|
|
393
|
+
day: z.ZodNumber;
|
|
394
|
+
}, z.core.$strict>]>;
|
|
395
|
+
price: z.ZodNumber;
|
|
396
|
+
}, z.core.$strict>;
|
|
397
|
+
pointB: z.ZodObject<{
|
|
398
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
399
|
+
year: z.ZodNumber;
|
|
400
|
+
month: z.ZodNumber;
|
|
401
|
+
day: z.ZodNumber;
|
|
402
|
+
}, z.core.$strict>]>;
|
|
403
|
+
price: z.ZodNumber;
|
|
404
|
+
}, z.core.$strict>;
|
|
405
|
+
label: z.ZodOptional<z.ZodString>;
|
|
406
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
407
|
+
support: "support";
|
|
408
|
+
resistance: "resistance";
|
|
409
|
+
}>>;
|
|
410
|
+
}, z.core.$strict>>;
|
|
411
|
+
id: z.ZodOptional<z.ZodString>;
|
|
412
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
413
|
+
color: z.ZodOptional<z.ZodString>;
|
|
414
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
415
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
416
|
+
solid: "solid";
|
|
417
|
+
dashed: "dashed";
|
|
418
|
+
dotted: "dotted";
|
|
419
|
+
}>>;
|
|
420
|
+
}, z.core.$strict>>;
|
|
421
|
+
}, z.core.$strict>], "type">>>;
|
|
208
422
|
options: z.ZodOptional<z.ZodObject<{
|
|
209
423
|
maxPoints: z.ZodOptional<z.ZodNumber>;
|
|
210
424
|
colorVolumeFromCandles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -280,6 +494,224 @@ export declare const ChartV1PayloadSchema: z.ZodObject<{
|
|
|
280
494
|
}, z.core.$strict>>;
|
|
281
495
|
}, z.core.$strict>>;
|
|
282
496
|
}, z.core.$strict>;
|
|
497
|
+
export declare const ChartPrepareReplaySchema: z.ZodObject<{
|
|
498
|
+
overlays: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
499
|
+
type: z.ZodEnum<{
|
|
500
|
+
sma: "sma";
|
|
501
|
+
ema: "ema";
|
|
502
|
+
}>;
|
|
503
|
+
sourceSeriesId: z.ZodString;
|
|
504
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
505
|
+
id: z.ZodOptional<z.ZodString>;
|
|
506
|
+
label: z.ZodOptional<z.ZodString>;
|
|
507
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
508
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
509
|
+
left: "left";
|
|
510
|
+
right: "right";
|
|
511
|
+
}>>;
|
|
512
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
513
|
+
color: z.ZodOptional<z.ZodString>;
|
|
514
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
515
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
516
|
+
solid: "solid";
|
|
517
|
+
dashed: "dashed";
|
|
518
|
+
dotted: "dotted";
|
|
519
|
+
}>>;
|
|
520
|
+
}, z.core.$strict>>;
|
|
521
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
522
|
+
type: z.ZodLiteral<"bollinger">;
|
|
523
|
+
sourceSeriesId: z.ZodString;
|
|
524
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
525
|
+
stdDev: z.ZodOptional<z.ZodNumber>;
|
|
526
|
+
id: z.ZodOptional<z.ZodString>;
|
|
527
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
528
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
529
|
+
left: "left";
|
|
530
|
+
right: "right";
|
|
531
|
+
}>>;
|
|
532
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
533
|
+
color: z.ZodOptional<z.ZodString>;
|
|
534
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
535
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
536
|
+
solid: "solid";
|
|
537
|
+
dashed: "dashed";
|
|
538
|
+
dotted: "dotted";
|
|
539
|
+
}>>;
|
|
540
|
+
}, z.core.$strict>>;
|
|
541
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
542
|
+
type: z.ZodLiteral<"fibonacci">;
|
|
543
|
+
sourceSeriesId: z.ZodOptional<z.ZodString>;
|
|
544
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
545
|
+
high: z.ZodNumber;
|
|
546
|
+
low: z.ZodNumber;
|
|
547
|
+
trend: z.ZodEnum<{
|
|
548
|
+
up: "up";
|
|
549
|
+
down: "down";
|
|
550
|
+
}>;
|
|
551
|
+
}, z.core.$strict>>;
|
|
552
|
+
levels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
553
|
+
trend: z.ZodOptional<z.ZodEnum<{
|
|
554
|
+
up: "up";
|
|
555
|
+
down: "down";
|
|
556
|
+
}>>;
|
|
557
|
+
id: z.ZodOptional<z.ZodString>;
|
|
558
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
559
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
560
|
+
left: "left";
|
|
561
|
+
right: "right";
|
|
562
|
+
}>>;
|
|
563
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
564
|
+
color: z.ZodOptional<z.ZodString>;
|
|
565
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
566
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
567
|
+
solid: "solid";
|
|
568
|
+
dashed: "dashed";
|
|
569
|
+
dotted: "dotted";
|
|
570
|
+
}>>;
|
|
571
|
+
}, z.core.$strict>>;
|
|
572
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
573
|
+
color: z.ZodOptional<z.ZodString>;
|
|
574
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
575
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
576
|
+
solid: "solid";
|
|
577
|
+
dashed: "dashed";
|
|
578
|
+
dotted: "dotted";
|
|
579
|
+
}>>;
|
|
580
|
+
}, z.core.$strict>>>;
|
|
581
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
582
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
583
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
584
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
585
|
+
price: z.ZodNumber;
|
|
586
|
+
label: z.ZodOptional<z.ZodString>;
|
|
587
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
588
|
+
level: "level";
|
|
589
|
+
support: "support";
|
|
590
|
+
resistance: "resistance";
|
|
591
|
+
}>>;
|
|
592
|
+
}, z.core.$strict>>;
|
|
593
|
+
id: z.ZodOptional<z.ZodString>;
|
|
594
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
595
|
+
color: z.ZodOptional<z.ZodString>;
|
|
596
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
597
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
598
|
+
solid: "solid";
|
|
599
|
+
dashed: "dashed";
|
|
600
|
+
dotted: "dotted";
|
|
601
|
+
}>>;
|
|
602
|
+
}, z.core.$strict>>;
|
|
603
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
604
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
605
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
606
|
+
id: z.ZodString;
|
|
607
|
+
price: z.ZodNumber;
|
|
608
|
+
}, z.core.$strict>>;
|
|
609
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
610
|
+
color: z.ZodOptional<z.ZodString>;
|
|
611
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
612
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
613
|
+
solid: "solid";
|
|
614
|
+
dashed: "dashed";
|
|
615
|
+
dotted: "dotted";
|
|
616
|
+
}>>;
|
|
617
|
+
}, z.core.$strict>>;
|
|
618
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
619
|
+
color: z.ZodOptional<z.ZodString>;
|
|
620
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
621
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
622
|
+
solid: "solid";
|
|
623
|
+
dashed: "dashed";
|
|
624
|
+
dotted: "dotted";
|
|
625
|
+
}>>;
|
|
626
|
+
}, z.core.$strict>>;
|
|
627
|
+
id: z.ZodOptional<z.ZodString>;
|
|
628
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
629
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
630
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
631
|
+
pointA: z.ZodObject<{
|
|
632
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
633
|
+
year: z.ZodNumber;
|
|
634
|
+
month: z.ZodNumber;
|
|
635
|
+
day: z.ZodNumber;
|
|
636
|
+
}, z.core.$strict>]>;
|
|
637
|
+
price: z.ZodNumber;
|
|
638
|
+
}, z.core.$strict>;
|
|
639
|
+
pointB: z.ZodObject<{
|
|
640
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
641
|
+
year: z.ZodNumber;
|
|
642
|
+
month: z.ZodNumber;
|
|
643
|
+
day: z.ZodNumber;
|
|
644
|
+
}, z.core.$strict>]>;
|
|
645
|
+
price: z.ZodNumber;
|
|
646
|
+
}, z.core.$strict>;
|
|
647
|
+
label: z.ZodOptional<z.ZodString>;
|
|
648
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
649
|
+
support: "support";
|
|
650
|
+
resistance: "resistance";
|
|
651
|
+
}>>;
|
|
652
|
+
}, z.core.$strict>>;
|
|
653
|
+
id: z.ZodOptional<z.ZodString>;
|
|
654
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
655
|
+
color: z.ZodOptional<z.ZodString>;
|
|
656
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
657
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
658
|
+
solid: "solid";
|
|
659
|
+
dashed: "dashed";
|
|
660
|
+
dotted: "dotted";
|
|
661
|
+
}>>;
|
|
662
|
+
}, z.core.$strict>>;
|
|
663
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
664
|
+
type: z.ZodLiteral<"rsi">;
|
|
665
|
+
sourceSeriesId: z.ZodString;
|
|
666
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
id: z.ZodOptional<z.ZodString>;
|
|
668
|
+
label: z.ZodOptional<z.ZodString>;
|
|
669
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
670
|
+
color: z.ZodOptional<z.ZodString>;
|
|
671
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
672
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
673
|
+
solid: "solid";
|
|
674
|
+
dashed: "dashed";
|
|
675
|
+
dotted: "dotted";
|
|
676
|
+
}>>;
|
|
677
|
+
}, z.core.$strict>>;
|
|
678
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
679
|
+
type: z.ZodLiteral<"macd">;
|
|
680
|
+
sourceSeriesId: z.ZodString;
|
|
681
|
+
fastPeriod: z.ZodOptional<z.ZodNumber>;
|
|
682
|
+
slowPeriod: z.ZodOptional<z.ZodNumber>;
|
|
683
|
+
signalPeriod: z.ZodOptional<z.ZodNumber>;
|
|
684
|
+
id: z.ZodOptional<z.ZodString>;
|
|
685
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
686
|
+
color: z.ZodOptional<z.ZodString>;
|
|
687
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
688
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
689
|
+
solid: "solid";
|
|
690
|
+
dashed: "dashed";
|
|
691
|
+
dotted: "dotted";
|
|
692
|
+
}>>;
|
|
693
|
+
}, z.core.$strict>>;
|
|
694
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
695
|
+
type: z.ZodLiteral<"stochasticrsi">;
|
|
696
|
+
sourceSeriesId: z.ZodString;
|
|
697
|
+
rsiPeriod: z.ZodOptional<z.ZodNumber>;
|
|
698
|
+
stochasticPeriod: z.ZodOptional<z.ZodNumber>;
|
|
699
|
+
kPeriod: z.ZodOptional<z.ZodNumber>;
|
|
700
|
+
dPeriod: z.ZodOptional<z.ZodNumber>;
|
|
701
|
+
id: z.ZodOptional<z.ZodString>;
|
|
702
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
703
|
+
color: z.ZodOptional<z.ZodString>;
|
|
704
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
705
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
706
|
+
solid: "solid";
|
|
707
|
+
dashed: "dashed";
|
|
708
|
+
dotted: "dotted";
|
|
709
|
+
}>>;
|
|
710
|
+
}, z.core.$strict>>;
|
|
711
|
+
}, z.core.$strict>], "type">>>;
|
|
712
|
+
skipDefaultOverlays: z.ZodOptional<z.ZodBoolean>;
|
|
713
|
+
usedDefaultOverlays: z.ZodOptional<z.ZodBoolean>;
|
|
714
|
+
}, z.core.$strict>;
|
|
283
715
|
export declare const PrepareChartOutputSchema: z.ZodObject<{
|
|
284
716
|
kind: z.ZodLiteral<"continuum/chart/v1">;
|
|
285
717
|
chart: z.ZodObject<{
|
|
@@ -323,6 +755,224 @@ export declare const PrepareChartOutputSchema: z.ZodObject<{
|
|
|
323
755
|
maxPoints: z.ZodOptional<z.ZodNumber>;
|
|
324
756
|
params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
325
757
|
}, z.core.$strict>>;
|
|
758
|
+
prepareReplay: z.ZodOptional<z.ZodObject<{
|
|
759
|
+
overlays: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
760
|
+
type: z.ZodEnum<{
|
|
761
|
+
sma: "sma";
|
|
762
|
+
ema: "ema";
|
|
763
|
+
}>;
|
|
764
|
+
sourceSeriesId: z.ZodString;
|
|
765
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
766
|
+
id: z.ZodOptional<z.ZodString>;
|
|
767
|
+
label: z.ZodOptional<z.ZodString>;
|
|
768
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
770
|
+
left: "left";
|
|
771
|
+
right: "right";
|
|
772
|
+
}>>;
|
|
773
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
774
|
+
color: z.ZodOptional<z.ZodString>;
|
|
775
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
776
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
777
|
+
solid: "solid";
|
|
778
|
+
dashed: "dashed";
|
|
779
|
+
dotted: "dotted";
|
|
780
|
+
}>>;
|
|
781
|
+
}, z.core.$strict>>;
|
|
782
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
783
|
+
type: z.ZodLiteral<"bollinger">;
|
|
784
|
+
sourceSeriesId: z.ZodString;
|
|
785
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
786
|
+
stdDev: z.ZodOptional<z.ZodNumber>;
|
|
787
|
+
id: z.ZodOptional<z.ZodString>;
|
|
788
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
789
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
790
|
+
left: "left";
|
|
791
|
+
right: "right";
|
|
792
|
+
}>>;
|
|
793
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
794
|
+
color: z.ZodOptional<z.ZodString>;
|
|
795
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
796
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
797
|
+
solid: "solid";
|
|
798
|
+
dashed: "dashed";
|
|
799
|
+
dotted: "dotted";
|
|
800
|
+
}>>;
|
|
801
|
+
}, z.core.$strict>>;
|
|
802
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
803
|
+
type: z.ZodLiteral<"fibonacci">;
|
|
804
|
+
sourceSeriesId: z.ZodOptional<z.ZodString>;
|
|
805
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
806
|
+
high: z.ZodNumber;
|
|
807
|
+
low: z.ZodNumber;
|
|
808
|
+
trend: z.ZodEnum<{
|
|
809
|
+
up: "up";
|
|
810
|
+
down: "down";
|
|
811
|
+
}>;
|
|
812
|
+
}, z.core.$strict>>;
|
|
813
|
+
levels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
814
|
+
trend: z.ZodOptional<z.ZodEnum<{
|
|
815
|
+
up: "up";
|
|
816
|
+
down: "down";
|
|
817
|
+
}>>;
|
|
818
|
+
id: z.ZodOptional<z.ZodString>;
|
|
819
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
820
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
821
|
+
left: "left";
|
|
822
|
+
right: "right";
|
|
823
|
+
}>>;
|
|
824
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
825
|
+
color: z.ZodOptional<z.ZodString>;
|
|
826
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
827
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
828
|
+
solid: "solid";
|
|
829
|
+
dashed: "dashed";
|
|
830
|
+
dotted: "dotted";
|
|
831
|
+
}>>;
|
|
832
|
+
}, z.core.$strict>>;
|
|
833
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
834
|
+
color: z.ZodOptional<z.ZodString>;
|
|
835
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
836
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
837
|
+
solid: "solid";
|
|
838
|
+
dashed: "dashed";
|
|
839
|
+
dotted: "dotted";
|
|
840
|
+
}>>;
|
|
841
|
+
}, z.core.$strict>>>;
|
|
842
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
843
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
844
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
845
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
846
|
+
price: z.ZodNumber;
|
|
847
|
+
label: z.ZodOptional<z.ZodString>;
|
|
848
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
849
|
+
level: "level";
|
|
850
|
+
support: "support";
|
|
851
|
+
resistance: "resistance";
|
|
852
|
+
}>>;
|
|
853
|
+
}, z.core.$strict>>;
|
|
854
|
+
id: z.ZodOptional<z.ZodString>;
|
|
855
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
856
|
+
color: z.ZodOptional<z.ZodString>;
|
|
857
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
858
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
859
|
+
solid: "solid";
|
|
860
|
+
dashed: "dashed";
|
|
861
|
+
dotted: "dotted";
|
|
862
|
+
}>>;
|
|
863
|
+
}, z.core.$strict>>;
|
|
864
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
865
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
866
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
867
|
+
id: z.ZodString;
|
|
868
|
+
price: z.ZodNumber;
|
|
869
|
+
}, z.core.$strict>>;
|
|
870
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
871
|
+
color: z.ZodOptional<z.ZodString>;
|
|
872
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
873
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
874
|
+
solid: "solid";
|
|
875
|
+
dashed: "dashed";
|
|
876
|
+
dotted: "dotted";
|
|
877
|
+
}>>;
|
|
878
|
+
}, z.core.$strict>>;
|
|
879
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
880
|
+
color: z.ZodOptional<z.ZodString>;
|
|
881
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
882
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
883
|
+
solid: "solid";
|
|
884
|
+
dashed: "dashed";
|
|
885
|
+
dotted: "dotted";
|
|
886
|
+
}>>;
|
|
887
|
+
}, z.core.$strict>>;
|
|
888
|
+
id: z.ZodOptional<z.ZodString>;
|
|
889
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
890
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
891
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
892
|
+
pointA: z.ZodObject<{
|
|
893
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
894
|
+
year: z.ZodNumber;
|
|
895
|
+
month: z.ZodNumber;
|
|
896
|
+
day: z.ZodNumber;
|
|
897
|
+
}, z.core.$strict>]>;
|
|
898
|
+
price: z.ZodNumber;
|
|
899
|
+
}, z.core.$strict>;
|
|
900
|
+
pointB: z.ZodObject<{
|
|
901
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
902
|
+
year: z.ZodNumber;
|
|
903
|
+
month: z.ZodNumber;
|
|
904
|
+
day: z.ZodNumber;
|
|
905
|
+
}, z.core.$strict>]>;
|
|
906
|
+
price: z.ZodNumber;
|
|
907
|
+
}, z.core.$strict>;
|
|
908
|
+
label: z.ZodOptional<z.ZodString>;
|
|
909
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
910
|
+
support: "support";
|
|
911
|
+
resistance: "resistance";
|
|
912
|
+
}>>;
|
|
913
|
+
}, z.core.$strict>>;
|
|
914
|
+
id: z.ZodOptional<z.ZodString>;
|
|
915
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
916
|
+
color: z.ZodOptional<z.ZodString>;
|
|
917
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
918
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
919
|
+
solid: "solid";
|
|
920
|
+
dashed: "dashed";
|
|
921
|
+
dotted: "dotted";
|
|
922
|
+
}>>;
|
|
923
|
+
}, z.core.$strict>>;
|
|
924
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
925
|
+
type: z.ZodLiteral<"rsi">;
|
|
926
|
+
sourceSeriesId: z.ZodString;
|
|
927
|
+
period: z.ZodOptional<z.ZodNumber>;
|
|
928
|
+
id: z.ZodOptional<z.ZodString>;
|
|
929
|
+
label: z.ZodOptional<z.ZodString>;
|
|
930
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
931
|
+
color: z.ZodOptional<z.ZodString>;
|
|
932
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
933
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
934
|
+
solid: "solid";
|
|
935
|
+
dashed: "dashed";
|
|
936
|
+
dotted: "dotted";
|
|
937
|
+
}>>;
|
|
938
|
+
}, z.core.$strict>>;
|
|
939
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
940
|
+
type: z.ZodLiteral<"macd">;
|
|
941
|
+
sourceSeriesId: z.ZodString;
|
|
942
|
+
fastPeriod: z.ZodOptional<z.ZodNumber>;
|
|
943
|
+
slowPeriod: z.ZodOptional<z.ZodNumber>;
|
|
944
|
+
signalPeriod: z.ZodOptional<z.ZodNumber>;
|
|
945
|
+
id: z.ZodOptional<z.ZodString>;
|
|
946
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
947
|
+
color: z.ZodOptional<z.ZodString>;
|
|
948
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
949
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
950
|
+
solid: "solid";
|
|
951
|
+
dashed: "dashed";
|
|
952
|
+
dotted: "dotted";
|
|
953
|
+
}>>;
|
|
954
|
+
}, z.core.$strict>>;
|
|
955
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
956
|
+
type: z.ZodLiteral<"stochasticrsi">;
|
|
957
|
+
sourceSeriesId: z.ZodString;
|
|
958
|
+
rsiPeriod: z.ZodOptional<z.ZodNumber>;
|
|
959
|
+
stochasticPeriod: z.ZodOptional<z.ZodNumber>;
|
|
960
|
+
kPeriod: z.ZodOptional<z.ZodNumber>;
|
|
961
|
+
dPeriod: z.ZodOptional<z.ZodNumber>;
|
|
962
|
+
id: z.ZodOptional<z.ZodString>;
|
|
963
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
964
|
+
color: z.ZodOptional<z.ZodString>;
|
|
965
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
966
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
967
|
+
solid: "solid";
|
|
968
|
+
dashed: "dashed";
|
|
969
|
+
dotted: "dotted";
|
|
970
|
+
}>>;
|
|
971
|
+
}, z.core.$strict>>;
|
|
972
|
+
}, z.core.$strict>], "type">>>;
|
|
973
|
+
skipDefaultOverlays: z.ZodOptional<z.ZodBoolean>;
|
|
974
|
+
usedDefaultOverlays: z.ZodOptional<z.ZodBoolean>;
|
|
975
|
+
}, z.core.$strict>>;
|
|
326
976
|
meta: z.ZodOptional<z.ZodObject<{
|
|
327
977
|
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
328
978
|
}, z.core.$strict>>;
|
|
@@ -330,6 +980,7 @@ export declare const PrepareChartOutputSchema: z.ZodObject<{
|
|
|
330
980
|
export type ChartSeriesType = z.infer<typeof ChartSeriesTypeSchema>;
|
|
331
981
|
export type ChartSeriesStyle = z.infer<typeof ChartSeriesStyleSchema>;
|
|
332
982
|
export type PrepareChartInput = z.infer<typeof PrepareChartInputSchema>;
|
|
983
|
+
export type ChartPrepareReplay = z.infer<typeof ChartPrepareReplaySchema>;
|
|
333
984
|
export type PrepareChartOutput = z.infer<typeof PrepareChartOutputSchema>;
|
|
334
985
|
export type ChartV1Payload = z.infer<typeof ChartV1PayloadSchema>;
|
|
335
986
|
export type ChartTime = z.infer<typeof ChartTimeSchema>;
|