We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2025f5d commit 5750bfcCopy full SHA for 5750bfc
src/schema/chart.ts
@@ -48,6 +48,7 @@ export const cytoidChartNoteSchema = z.object({
48
page_index: z.number().check(z.int(), z.gte(0)),
49
type: cytoidChartNodeTypeSchema,
50
id: z.number().check(z.int(), z.gte(0)),
51
+ x: z.number().check(z.gte(0), z.lte(1)),
52
tick: cytoidChartTickSchema,
53
has_sibling: z.boolean(),
54
hold_tick: cytoidChartTickSchema,
src/types/chart.ts
@@ -71,6 +71,7 @@ export interface CytoidChartNote {
71
page_index: number
72
type: CytoidChartNodeType
73
id: number
74
+ x: number
75
tick: number
76
has_sibling: boolean
77
hold_tick: number
0 commit comments