fix(types): normalize sibling imports for next build
This commit is contained in:
parent
ebdc4ab8e6
commit
04ce36d575
7 changed files with 249 additions and 15 deletions
|
|
@ -5,8 +5,8 @@ import {
|
|||
FlowPacketSchema,
|
||||
OptionPrintSchema,
|
||||
SmartMoneyEventSchema
|
||||
} from "./events.ts";
|
||||
import { OptionFlowFiltersSchema } from "./options-flow.ts";
|
||||
} from "./events";
|
||||
import { OptionFlowFiltersSchema } from "./options-flow";
|
||||
|
||||
export const IslandflowAiReasoningEffortSchema = z.enum([
|
||||
"none",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { z } from "zod";
|
||||
import { OptionNbboSideSchema, OptionTypeSchema, OptionsSignalModeSchema } from "./options-flow.ts";
|
||||
import { OptionNbboSideSchema, OptionTypeSchema, OptionsSignalModeSchema } from "./options-flow";
|
||||
|
||||
export const EventMetaSchema = z.object({
|
||||
source_ts: z.number().int().nonnegative(),
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
export * from "./events.ts";
|
||||
export * from "./live.ts";
|
||||
export * from "./options-flow.ts";
|
||||
export * from "./sp500.ts";
|
||||
export * from "./synthetic-market.ts";
|
||||
export * from "./desktop-ai.ts";
|
||||
export * from "./events";
|
||||
export * from "./live";
|
||||
export * from "./options-flow";
|
||||
export * from "./sp500";
|
||||
export * from "./synthetic-market";
|
||||
export * from "./desktop-ai";
|
||||
|
|
|
|||
|
|
@ -12,11 +12,11 @@ import {
|
|||
OptionNBBOSchema,
|
||||
OptionPrintSchema,
|
||||
SmartMoneyEventSchema
|
||||
} from "./events.ts";
|
||||
} from "./events";
|
||||
import {
|
||||
OptionFlowFiltersSchema,
|
||||
optionFlowFilterKey
|
||||
} from "./options-flow.ts";
|
||||
} from "./options-flow";
|
||||
|
||||
export const CursorSchema = z.object({
|
||||
ts: z.number().int().nonnegative(),
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { z } from "zod";
|
||||
import type { FlowPacket, OptionNBBO, OptionPrint } from "./events.ts";
|
||||
import type { FlowPacket, OptionNBBO, OptionPrint } from "./events";
|
||||
|
||||
export const SyntheticMarketModeSchema = z.enum(["realistic", "active", "firehose"]);
|
||||
export type SyntheticMarketMode = z.infer<typeof SyntheticMarketModeSchema>;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { z } from "zod";
|
||||
import type { SmartMoneyProfileId } from "./events.ts";
|
||||
import type { SyntheticMarketMode } from "./options-flow.ts";
|
||||
import { SP500_SYMBOLS } from "./sp500.ts";
|
||||
import type { SmartMoneyProfileId } from "./events";
|
||||
import type { SyntheticMarketMode } from "./options-flow";
|
||||
import { SP500_SYMBOLS } from "./sp500";
|
||||
|
||||
const SYNTHETIC_PROFILE_WEIGHT_VALUES = [0.6, 1.0, 1.6] as const;
|
||||
const SYNTHETIC_COVERAGE_WINDOW_VALUES = [10, 20, 30] as const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue