Problem
sdk/src/types.ts defines ScheduleData without the fields added to the contract in recent contributions. SDK consumers cannot read pause state or lockup configuration.
Fix
Add to ScheduleData:
paused: boolean;
lockup_duration: number;
requires_milestones: boolean;
vested_at_revoke: bigint;
Update parseSchedule in client.ts accordingly.
Problem
sdk/src/types.tsdefinesScheduleDatawithout the fields added to the contract in recent contributions. SDK consumers cannot read pause state or lockup configuration.Fix
Add to
ScheduleData:Update
parseScheduleinclient.tsaccordingly.