feat(18-01): add BatchWriteProgress event constant

- Add BatchWriteProgress to tag writing events const block in events.go
- Regenerate frontend/src/events.ts via genevents codegen tool
This commit is contained in:
2026-03-18 13:00:05 -04:00
parent 78f0d89331
commit 3dba0e143c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -71,4 +71,5 @@ const (
// Tag writing events.
const (
TrackMetadataChanged = "TrackMetadataChanged"
BatchWriteProgress = "BatchWriteProgress"
)
+1
View File
@@ -50,6 +50,7 @@ export const Events = {
// Tag writing events
TrackMetadataChanged: "TrackMetadataChanged",
BatchWriteProgress: "BatchWriteProgress",
} as const;
export type EventName = (typeof Events)[keyof typeof Events];