lyrics-transcriber 0.61.0__py3-none-any.whl → 0.62.0__py3-none-any.whl
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.
- lyrics_transcriber/frontend/package.json +1 -1
- lyrics_transcriber/frontend/src/types.ts +2 -2
- lyrics_transcriber/frontend/src/validation.ts +2 -2
- lyrics_transcriber/frontend/web_assets/assets/{index-Cy8N8ZKR.js → index-CYF5xuZH.js} +4 -4
- lyrics_transcriber/frontend/web_assets/assets/{index-Cy8N8ZKR.js.map → index-CYF5xuZH.js.map} +1 -1
- lyrics_transcriber/frontend/web_assets/index.html +1 -1
- {lyrics_transcriber-0.61.0.dist-info → lyrics_transcriber-0.62.0.dist-info}/METADATA +1 -1
- {lyrics_transcriber-0.61.0.dist-info → lyrics_transcriber-0.62.0.dist-info}/RECORD +11 -11
- {lyrics_transcriber-0.61.0.dist-info → lyrics_transcriber-0.62.0.dist-info}/LICENSE +0 -0
- {lyrics_transcriber-0.61.0.dist-info → lyrics_transcriber-0.62.0.dist-info}/WHEEL +0 -0
- {lyrics_transcriber-0.61.0.dist-info → lyrics_transcriber-0.62.0.dist-info}/entry_points.txt +0 -0
@@ -69,8 +69,8 @@ const AnchorSequenceSchema = z.object({
|
|
69
69
|
reference_positions: z.record(z.number()),
|
70
70
|
reference_word_ids: z.record(z.array(z.string())),
|
71
71
|
confidence: z.number(),
|
72
|
-
phrase_score: PhraseScoreSchema,
|
73
|
-
total_score: z.number()
|
72
|
+
phrase_score: PhraseScoreSchema.optional(),
|
73
|
+
total_score: z.number().optional()
|
74
74
|
})
|
75
75
|
|
76
76
|
const GapSequenceSchema = z.object({
|
@@ -32774,8 +32774,8 @@ const AnchorSequenceSchema = z.object({
|
|
32774
32774
|
reference_positions: z.record(z.number()),
|
32775
32775
|
reference_word_ids: z.record(z.array(z.string())),
|
32776
32776
|
confidence: z.number(),
|
32777
|
-
phrase_score: PhraseScoreSchema,
|
32778
|
-
total_score: z.number()
|
32777
|
+
phrase_score: PhraseScoreSchema.optional(),
|
32778
|
+
total_score: z.number().optional()
|
32779
32779
|
});
|
32780
32780
|
const GapSequenceSchema = z.object({
|
32781
32781
|
id: z.string(),
|
@@ -38915,7 +38915,7 @@ const theme = createTheme({
|
|
38915
38915
|
spacing: (factor) => `${0.6 * factor}rem`
|
38916
38916
|
// Further reduced from 0.8 * factor
|
38917
38917
|
});
|
38918
|
-
const version = "0.
|
38918
|
+
const version = "0.62.0";
|
38919
38919
|
const packageJson = {
|
38920
38920
|
version
|
38921
38921
|
};
|
@@ -38926,4 +38926,4 @@ ReactDOM$1.createRoot(document.getElementById("root")).render(
|
|
38926
38926
|
/* @__PURE__ */ jsxRuntimeExports.jsx(App, {})
|
38927
38927
|
] })
|
38928
38928
|
);
|
38929
|
-
//# sourceMappingURL=index-
|
38929
|
+
//# sourceMappingURL=index-CYF5xuZH.js.map
|