@absolutejs/voice 0.0.22-beta.138 → 0.0.22-beta.139
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.
|
@@ -1895,6 +1895,7 @@ var initVoiceHTMXRoot = (root) => {
|
|
|
1895
1895
|
const guidedPrompts = parsePromptList(root.dataset.voiceGuidedPrompts);
|
|
1896
1896
|
const guidedLabel = root.dataset.voiceGuidedLabel ?? DEFAULT_GUIDED_LABEL;
|
|
1897
1897
|
const generalLabel = root.dataset.voiceGeneralLabel ?? DEFAULT_GENERAL_LABEL;
|
|
1898
|
+
const reconnectReportPath = root.dataset.voiceReconnectReportPath;
|
|
1898
1899
|
const bargeInPath = root.dataset.voiceBargeInPath;
|
|
1899
1900
|
const bargeInMonitor = bargeInPath ? createVoiceBargeInMonitor({
|
|
1900
1901
|
path: bargeInPath,
|
|
@@ -1941,6 +1942,9 @@ var initVoiceHTMXRoot = (root) => {
|
|
|
1941
1942
|
renderWave();
|
|
1942
1943
|
}
|
|
1943
1944
|
},
|
|
1945
|
+
connection: {
|
|
1946
|
+
reconnectReportPath
|
|
1947
|
+
},
|
|
1944
1948
|
preset: "guided-intake"
|
|
1945
1949
|
});
|
|
1946
1950
|
const generalVoice = createVoiceController(generalPath, {
|
|
@@ -1958,6 +1962,9 @@ var initVoiceHTMXRoot = (root) => {
|
|
|
1958
1962
|
renderWave();
|
|
1959
1963
|
}
|
|
1960
1964
|
},
|
|
1965
|
+
connection: {
|
|
1966
|
+
reconnectReportPath
|
|
1967
|
+
},
|
|
1961
1968
|
preset: "dictation"
|
|
1962
1969
|
});
|
|
1963
1970
|
const stopGuidedBinding = guidedVoice.bindHTMX({ element: syncElement });
|