@absolutejs/voice 0.0.22-beta.673 → 0.0.22-beta.675

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.
@@ -5876,34 +5876,34 @@ __runInitializers(_init, 1, VoiceWorkflowStatusService);
5876
5876
  __decoratorMetadata(_init, VoiceWorkflowStatusService);
5877
5877
  let _VoiceWorkflowStatusService = VoiceWorkflowStatusService;
5878
5878
  export {
5879
- VoiceWorkflowStatusService,
5880
- VoiceWidgetService,
5881
- VoiceTurnQualityService,
5882
- VoiceTurnLatencyService,
5883
- VoiceTraceTimelineService,
5884
- VoiceStreamService,
5885
- VoiceSessionSnapshotService,
5886
- VoiceSessionObservabilityService,
5887
- VoiceRoutingStatusService,
5888
- VoiceReplayTimelineService,
5889
- VoiceReconnectProfileEvidenceService,
5890
- VoiceReadinessFailuresService,
5891
- VoiceProviderStatusService,
5892
- VoiceProviderContractsService,
5893
- VoiceProviderCapabilitiesService,
5894
- VoiceProofTrendsService,
5895
- VoiceProfileComparisonService,
5896
- VoicePlatformCoverageService,
5897
- VoiceOpsStatusService,
5898
- VoiceOpsActionCenterService,
5899
- VoiceLiveOpsService,
5900
- VoiceLiveCallViewerService,
5901
- VoiceLiveAgentConsoleService,
5902
- VoiceDeliveryRuntimeService,
5903
- VoiceCostDashboardService,
5904
- VoiceControllerService,
5905
- VoiceCampaignDialerProofService,
5906
- VoiceCallPlayerService,
5879
+ VoiceAgentSquadStatusService,
5907
5880
  VoiceCallDebuggerService,
5908
- VoiceAgentSquadStatusService
5881
+ VoiceCallPlayerService,
5882
+ VoiceCampaignDialerProofService,
5883
+ VoiceControllerService,
5884
+ VoiceCostDashboardService,
5885
+ VoiceDeliveryRuntimeService,
5886
+ VoiceLiveAgentConsoleService,
5887
+ VoiceLiveCallViewerService,
5888
+ VoiceLiveOpsService,
5889
+ VoiceOpsActionCenterService,
5890
+ VoiceOpsStatusService,
5891
+ VoicePlatformCoverageService,
5892
+ VoiceProfileComparisonService,
5893
+ VoiceProofTrendsService,
5894
+ VoiceProviderCapabilitiesService,
5895
+ VoiceProviderContractsService,
5896
+ VoiceProviderStatusService,
5897
+ VoiceReadinessFailuresService,
5898
+ VoiceReconnectProfileEvidenceService,
5899
+ VoiceReplayTimelineService,
5900
+ VoiceRoutingStatusService,
5901
+ VoiceSessionObservabilityService,
5902
+ VoiceSessionSnapshotService,
5903
+ VoiceStreamService,
5904
+ VoiceTraceTimelineService,
5905
+ VoiceTurnLatencyService,
5906
+ VoiceTurnQualityService,
5907
+ VoiceWidgetService,
5908
+ VoiceWorkflowStatusService
5909
5909
  };
@@ -2135,6 +2135,49 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2135
2135
  let maxGapMs = 0;
2136
2136
  let errorCount = 0;
2137
2137
  let hasScheduledAnyChunk = false;
2138
+ let buffersScheduled = 0;
2139
+ let lastScheduledTurnId;
2140
+ const audioFormats = new Set;
2141
+ let lastAudioFormat = null;
2142
+ let formatChangeCount = 0;
2143
+ let incompleteFrameChunkCount = 0;
2144
+ let discardedPartialFrameBytes = 0;
2145
+ let pendingFrameBytes = new Uint8Array;
2146
+ let pendingFrameFormat = null;
2147
+ let pendingFrameTurnId;
2148
+ const formatKey = (format) => `${format.container}/${format.encoding}/${String(format.channels)}ch/${String(format.sampleRateHz)}hz`;
2149
+ const frameAlignedChunk = (chunk) => {
2150
+ const format = formatKey(chunk.format);
2151
+ audioFormats.add(format);
2152
+ if (lastAudioFormat !== null && lastAudioFormat !== format) {
2153
+ formatChangeCount += 1;
2154
+ }
2155
+ lastAudioFormat = format;
2156
+ if (pendingFrameBytes.byteLength > 0 && (pendingFrameFormat !== format || pendingFrameTurnId !== chunk.turnId)) {
2157
+ discardedPartialFrameBytes += pendingFrameBytes.byteLength;
2158
+ pendingFrameBytes = new Uint8Array;
2159
+ }
2160
+ const joined = pendingFrameBytes.byteLength === 0 ? chunk.chunk : (() => {
2161
+ const bytes = new Uint8Array(pendingFrameBytes.byteLength + chunk.chunk.byteLength);
2162
+ bytes.set(pendingFrameBytes);
2163
+ bytes.set(chunk.chunk, pendingFrameBytes.byteLength);
2164
+ return bytes;
2165
+ })();
2166
+ const frameBytes = Math.max(1, chunk.format.channels) * 2;
2167
+ const completeBytes = joined.byteLength - joined.byteLength % frameBytes;
2168
+ const remainderBytes = joined.byteLength - completeBytes;
2169
+ if (remainderBytes > 0) {
2170
+ incompleteFrameChunkCount += 1;
2171
+ pendingFrameBytes = joined.slice(completeBytes);
2172
+ pendingFrameFormat = format;
2173
+ pendingFrameTurnId = chunk.turnId;
2174
+ } else {
2175
+ pendingFrameBytes = new Uint8Array;
2176
+ pendingFrameFormat = null;
2177
+ pendingFrameTurnId = undefined;
2178
+ }
2179
+ return completeBytes > 0 ? { ...chunk, chunk: joined.subarray(0, completeBytes) } : null;
2180
+ };
2138
2181
  const sampleConcurrency = () => {
2139
2182
  if (activeAudioPlayers.size > observedPeakConcurrency) {
2140
2183
  observedPeakConcurrency = activeAudioPlayers.size;
@@ -2254,7 +2297,7 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2254
2297
  queueEndTime = audioContext.currentTime;
2255
2298
  return audioContext;
2256
2299
  };
2257
- const scheduleBuffer = (context, buffer, rate) => {
2300
+ const scheduleBuffer = (context, buffer, rate, turnId) => {
2258
2301
  const node = context.createBufferSource();
2259
2302
  node.buffer = buffer;
2260
2303
  if (node.playbackRate) {
@@ -2272,13 +2315,15 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2272
2315
  };
2273
2316
  const earliestStart = context.currentTime + lookaheadSeconds;
2274
2317
  const startAt = Math.max(earliestStart, queueEndTime);
2275
- if (hasScheduledAnyChunk && earliestStart > queueEndTime + GAP_EPSILON_S) {
2318
+ if (hasScheduledAnyChunk && turnId !== undefined && turnId === lastScheduledTurnId && earliestStart > queueEndTime + GAP_EPSILON_S) {
2276
2319
  const gapMs = (earliestStart - queueEndTime) * 1000;
2277
2320
  gapCount += 1;
2278
2321
  totalGapMs += gapMs;
2279
2322
  maxGapMs = Math.max(maxGapMs, gapMs);
2280
2323
  }
2281
2324
  hasScheduledAnyChunk = true;
2325
+ lastScheduledTurnId = turnId;
2326
+ buffersScheduled += 1;
2282
2327
  scheduledDurationMs += buffer.duration / rate * 1000;
2283
2328
  sampleConcurrency();
2284
2329
  queueEndTime = startAt + buffer.duration / rate;
@@ -2291,10 +2336,13 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2291
2336
  };
2292
2337
  const scheduleChunk = async (chunk) => {
2293
2338
  const context = await ensureAudioContext();
2294
- const buffer = decodePCM16LEChunk(context, chunk);
2339
+ const alignedChunk = frameAlignedChunk(chunk);
2340
+ if (!alignedChunk)
2341
+ return;
2342
+ const buffer = decodePCM16LEChunk(context, alignedChunk);
2295
2343
  if (Math.abs(playbackRate - 1) <= STRETCH_BYPASS_EPSILON) {
2296
2344
  stretcher?.reset();
2297
- scheduleBuffer(context, buffer, playbackRate);
2345
+ scheduleBuffer(context, buffer, playbackRate, chunk.turnId);
2298
2346
  return;
2299
2347
  }
2300
2348
  const channels = Math.max(1, chunk.format.channels);
@@ -2315,13 +2363,14 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2315
2363
  continue;
2316
2364
  outBuffer.getChannelData(channelIndex).set(channelOut);
2317
2365
  }
2318
- scheduleBuffer(context, outBuffer, 1);
2366
+ scheduleBuffer(context, outBuffer, 1, chunk.turnId);
2319
2367
  };
2320
2368
  const stopQueuedPlayback = (options2) => {
2321
2369
  for (const node of [...sourceNodes]) {
2322
2370
  node.stop?.();
2323
2371
  }
2324
2372
  queueEndTime = audioContext ? audioContext.currentTime : 0;
2373
+ lastScheduledTurnId = undefined;
2325
2374
  if (options2?.forceClear) {
2326
2375
  for (const node of sourceNodes) {
2327
2376
  node.disconnect?.();
@@ -2416,13 +2465,19 @@ var createVoiceAudioPlayer = (source, options = {}) => {
2416
2465
  const chunksReceived = source.assistantAudio.length;
2417
2466
  const chunksScheduled = state.processedChunkCount;
2418
2467
  return {
2468
+ audioFormatCount: audioFormats.size,
2469
+ buffersScheduled,
2419
2470
  chunksReceived,
2420
2471
  chunksScheduled,
2472
+ discardedPartialFrameBytes,
2421
2473
  errorCount,
2474
+ formatChangeCount,
2422
2475
  gapCount,
2476
+ incompleteFrameChunkCount,
2423
2477
  maxConcurrentPlayers: observedPeakConcurrency,
2424
2478
  maxGapMs: Math.round(maxGapMs),
2425
- ok: observedPeakConcurrency <= 1 && errorCount === 0 && chunksScheduled >= chunksReceived,
2479
+ pendingPartialFrameBytes: pendingFrameBytes.byteLength,
2480
+ ok: observedPeakConcurrency <= 1 && errorCount === 0 && chunksScheduled >= chunksReceived && discardedPartialFrameBytes === 0 && pendingFrameBytes.byteLength === 0,
2426
2481
  scheduledDurationMs: Math.round(scheduledDurationMs),
2427
2482
  totalGapMs: Math.round(totalGapMs)
2428
2483
  };
@@ -886,6 +886,49 @@ var createVoiceAudioPlayer = (source, options = {}) => {
886
886
  let maxGapMs = 0;
887
887
  let errorCount = 0;
888
888
  let hasScheduledAnyChunk = false;
889
+ let buffersScheduled = 0;
890
+ let lastScheduledTurnId;
891
+ const audioFormats = new Set;
892
+ let lastAudioFormat = null;
893
+ let formatChangeCount = 0;
894
+ let incompleteFrameChunkCount = 0;
895
+ let discardedPartialFrameBytes = 0;
896
+ let pendingFrameBytes = new Uint8Array;
897
+ let pendingFrameFormat = null;
898
+ let pendingFrameTurnId;
899
+ const formatKey = (format) => `${format.container}/${format.encoding}/${String(format.channels)}ch/${String(format.sampleRateHz)}hz`;
900
+ const frameAlignedChunk = (chunk) => {
901
+ const format = formatKey(chunk.format);
902
+ audioFormats.add(format);
903
+ if (lastAudioFormat !== null && lastAudioFormat !== format) {
904
+ formatChangeCount += 1;
905
+ }
906
+ lastAudioFormat = format;
907
+ if (pendingFrameBytes.byteLength > 0 && (pendingFrameFormat !== format || pendingFrameTurnId !== chunk.turnId)) {
908
+ discardedPartialFrameBytes += pendingFrameBytes.byteLength;
909
+ pendingFrameBytes = new Uint8Array;
910
+ }
911
+ const joined = pendingFrameBytes.byteLength === 0 ? chunk.chunk : (() => {
912
+ const bytes = new Uint8Array(pendingFrameBytes.byteLength + chunk.chunk.byteLength);
913
+ bytes.set(pendingFrameBytes);
914
+ bytes.set(chunk.chunk, pendingFrameBytes.byteLength);
915
+ return bytes;
916
+ })();
917
+ const frameBytes = Math.max(1, chunk.format.channels) * 2;
918
+ const completeBytes = joined.byteLength - joined.byteLength % frameBytes;
919
+ const remainderBytes = joined.byteLength - completeBytes;
920
+ if (remainderBytes > 0) {
921
+ incompleteFrameChunkCount += 1;
922
+ pendingFrameBytes = joined.slice(completeBytes);
923
+ pendingFrameFormat = format;
924
+ pendingFrameTurnId = chunk.turnId;
925
+ } else {
926
+ pendingFrameBytes = new Uint8Array;
927
+ pendingFrameFormat = null;
928
+ pendingFrameTurnId = undefined;
929
+ }
930
+ return completeBytes > 0 ? { ...chunk, chunk: joined.subarray(0, completeBytes) } : null;
931
+ };
889
932
  const sampleConcurrency = () => {
890
933
  if (activeAudioPlayers.size > observedPeakConcurrency) {
891
934
  observedPeakConcurrency = activeAudioPlayers.size;
@@ -1005,7 +1048,7 @@ var createVoiceAudioPlayer = (source, options = {}) => {
1005
1048
  queueEndTime = audioContext.currentTime;
1006
1049
  return audioContext;
1007
1050
  };
1008
- const scheduleBuffer = (context, buffer, rate) => {
1051
+ const scheduleBuffer = (context, buffer, rate, turnId) => {
1009
1052
  const node = context.createBufferSource();
1010
1053
  node.buffer = buffer;
1011
1054
  if (node.playbackRate) {
@@ -1023,13 +1066,15 @@ var createVoiceAudioPlayer = (source, options = {}) => {
1023
1066
  };
1024
1067
  const earliestStart = context.currentTime + lookaheadSeconds;
1025
1068
  const startAt = Math.max(earliestStart, queueEndTime);
1026
- if (hasScheduledAnyChunk && earliestStart > queueEndTime + GAP_EPSILON_S) {
1069
+ if (hasScheduledAnyChunk && turnId !== undefined && turnId === lastScheduledTurnId && earliestStart > queueEndTime + GAP_EPSILON_S) {
1027
1070
  const gapMs = (earliestStart - queueEndTime) * 1000;
1028
1071
  gapCount += 1;
1029
1072
  totalGapMs += gapMs;
1030
1073
  maxGapMs = Math.max(maxGapMs, gapMs);
1031
1074
  }
1032
1075
  hasScheduledAnyChunk = true;
1076
+ lastScheduledTurnId = turnId;
1077
+ buffersScheduled += 1;
1033
1078
  scheduledDurationMs += buffer.duration / rate * 1000;
1034
1079
  sampleConcurrency();
1035
1080
  queueEndTime = startAt + buffer.duration / rate;
@@ -1042,10 +1087,13 @@ var createVoiceAudioPlayer = (source, options = {}) => {
1042
1087
  };
1043
1088
  const scheduleChunk = async (chunk) => {
1044
1089
  const context = await ensureAudioContext();
1045
- const buffer = decodePCM16LEChunk(context, chunk);
1090
+ const alignedChunk = frameAlignedChunk(chunk);
1091
+ if (!alignedChunk)
1092
+ return;
1093
+ const buffer = decodePCM16LEChunk(context, alignedChunk);
1046
1094
  if (Math.abs(playbackRate - 1) <= STRETCH_BYPASS_EPSILON) {
1047
1095
  stretcher?.reset();
1048
- scheduleBuffer(context, buffer, playbackRate);
1096
+ scheduleBuffer(context, buffer, playbackRate, chunk.turnId);
1049
1097
  return;
1050
1098
  }
1051
1099
  const channels = Math.max(1, chunk.format.channels);
@@ -1066,13 +1114,14 @@ var createVoiceAudioPlayer = (source, options = {}) => {
1066
1114
  continue;
1067
1115
  outBuffer.getChannelData(channelIndex).set(channelOut);
1068
1116
  }
1069
- scheduleBuffer(context, outBuffer, 1);
1117
+ scheduleBuffer(context, outBuffer, 1, chunk.turnId);
1070
1118
  };
1071
1119
  const stopQueuedPlayback = (options2) => {
1072
1120
  for (const node of [...sourceNodes]) {
1073
1121
  node.stop?.();
1074
1122
  }
1075
1123
  queueEndTime = audioContext ? audioContext.currentTime : 0;
1124
+ lastScheduledTurnId = undefined;
1076
1125
  if (options2?.forceClear) {
1077
1126
  for (const node of sourceNodes) {
1078
1127
  node.disconnect?.();
@@ -1167,13 +1216,19 @@ var createVoiceAudioPlayer = (source, options = {}) => {
1167
1216
  const chunksReceived = source.assistantAudio.length;
1168
1217
  const chunksScheduled = state.processedChunkCount;
1169
1218
  return {
1219
+ audioFormatCount: audioFormats.size,
1220
+ buffersScheduled,
1170
1221
  chunksReceived,
1171
1222
  chunksScheduled,
1223
+ discardedPartialFrameBytes,
1172
1224
  errorCount,
1225
+ formatChangeCount,
1173
1226
  gapCount,
1227
+ incompleteFrameChunkCount,
1174
1228
  maxConcurrentPlayers: observedPeakConcurrency,
1175
1229
  maxGapMs: Math.round(maxGapMs),
1176
- ok: observedPeakConcurrency <= 1 && errorCount === 0 && chunksScheduled >= chunksReceived,
1230
+ pendingPartialFrameBytes: pendingFrameBytes.byteLength,
1231
+ ok: observedPeakConcurrency <= 1 && errorCount === 0 && chunksScheduled >= chunksReceived && discardedPartialFrameBytes === 0 && pendingFrameBytes.byteLength === 0,
1177
1232
  scheduledDurationMs: Math.round(scheduledDurationMs),
1178
1233
  totalGapMs: Math.round(totalGapMs)
1179
1234
  };
@@ -12850,186 +12905,186 @@ var fetchVoiceWorkflowStatus = async (path = "/evals/scenarios/json", options =
12850
12905
  return await response.json();
12851
12906
  };
12852
12907
  export {
12853
- voiceSseReactiveSource,
12854
- runVoiceTurnLatencyProof,
12855
- runVoiceOpsAction,
12856
- runVoiceDeliveryRuntimeAction,
12857
- runVoiceCampaignDialerProofAction,
12858
- renderVoiceTurnQualityHTML,
12859
- renderVoiceTurnLatencyHTML,
12860
- renderVoiceTraceTimelineWidgetHTML,
12861
- renderVoiceSessionSnapshotHTML,
12862
- renderVoiceSessionObservabilityHTML,
12863
- renderVoiceRoutingStatusHTML,
12864
- renderVoiceReconnectProfileEvidenceHTML,
12865
- renderVoiceReadinessFailuresHTML,
12866
- renderVoiceProviderStatusHTML,
12867
- renderVoiceProviderSimulationControlsHTML,
12868
- renderVoiceProviderContractsHTML,
12869
- renderVoiceProviderCapabilitiesHTML,
12870
- renderVoiceProofTrendsHTML,
12871
- renderVoiceProfileSwitchRecommendationHTML,
12872
- renderVoiceProfileComparisonHTML,
12873
- renderVoicePlatformCoverageHTML,
12874
- renderVoiceOpsStatusHTML,
12875
- renderVoiceOpsActionHistoryWidgetHTML,
12876
- renderVoiceOpsActionCenterHTML,
12877
- renderVoiceLiveOpsHTML,
12878
- renderVoiceDeliveryRuntimeHTML,
12879
- renderVoiceCallDebuggerLaunchHTML,
12880
- renderVoiceAgentSquadStatusHTML,
12881
- recordVoiceOpsActionResult,
12882
- probeBrowserVoiceSupport,
12883
- postVoiceLiveOpsAction,
12884
- mountVoiceTurnQuality,
12885
- mountVoiceTurnLatency,
12886
- mountVoiceTraceTimeline,
12887
- mountVoiceSessionSnapshot,
12888
- mountVoiceSessionObservability,
12889
- mountVoiceRoutingStatus,
12890
- mountVoiceReconnectProfileEvidence,
12891
- mountVoiceReadinessFailures,
12892
- mountVoiceProviderStatus,
12893
- mountVoiceProviderSimulationControls,
12894
- mountVoiceProviderContracts,
12895
- mountVoiceProviderCapabilities,
12896
- mountVoiceProofTrends,
12897
- mountVoiceProfileSwitchRecommendation,
12898
- mountVoiceProfileComparison,
12899
- mountVoicePlatformCoverage,
12900
- mountVoiceOpsStatus,
12901
- mountVoiceOpsActionHistory,
12902
- mountVoiceOpsActionCenter,
12903
- mountVoiceLiveOps,
12904
- mountVoiceDeliveryRuntime,
12905
- mountVoiceCallDebuggerLaunch,
12906
- mountVoiceAgentSquadStatus,
12907
- getVoiceTurnQualityCSS,
12908
- getVoiceTraceTimelineCSS,
12909
- getVoiceSessionObservabilityCSS,
12910
- getVoiceRoutingStatusCSS,
12911
- getVoiceReconnectProfileEvidenceCSS,
12912
- getVoiceReadinessFailuresCSS,
12913
- getVoiceProviderStatusCSS,
12914
- getVoiceProviderContractsCSS,
12915
- getVoiceProviderCapabilitiesCSS,
12916
- getVoiceProofTrendsCSS,
12917
- getVoiceProfileSwitchRecommendationCSS,
12918
- getVoiceProfileComparisonCSS,
12919
- getVoicePlatformCoverageCSS,
12920
- getVoiceOpsStatusLabel,
12921
- getVoiceOpsStatusCSS,
12922
- getVoiceOpsActionHistoryCSS,
12923
- getVoiceOpsActionCenterCSS,
12924
- getVoiceLiveOpsCSS,
12925
- getVoiceDeliveryRuntimeCSS,
12926
- getVoiceAgentSquadStatusCSS,
12927
- fetchVoiceWorkflowStatus,
12928
- fetchVoiceTurnQuality,
12929
- fetchVoiceTurnLatency,
12930
- fetchVoiceTraceTimeline,
12931
- fetchVoiceSessionSnapshot,
12932
- fetchVoiceSessionObservability,
12933
- fetchVoiceRoutingStatus,
12934
- fetchVoiceReconnectProfileEvidence,
12935
- fetchVoiceReadinessFailures,
12936
- fetchVoiceProviderStatus,
12937
- fetchVoiceProviderContracts,
12938
- fetchVoiceProviderCapabilities,
12939
- fetchVoiceProofTrends,
12940
- fetchVoiceProfileSwitchRecommendation,
12941
- fetchVoiceProfileComparison,
12942
- fetchVoicePlatformCoverage,
12943
- fetchVoiceOpsStatus,
12944
- fetchVoiceOpsActionHistory,
12945
- fetchVoiceDeliveryRuntime,
12946
- fetchVoiceCampaignDialerProofStatus,
12947
- fetchVoiceCallDebugger,
12948
- defineVoiceTurnQualityElement,
12949
- defineVoiceTurnLatencyElement,
12950
- defineVoiceTraceTimelineElement,
12951
- defineVoiceSessionSnapshotElement,
12952
- defineVoiceSessionObservabilityElement,
12953
- defineVoiceRoutingStatusElement,
12954
- defineVoiceReconnectProfileEvidenceElement,
12955
- defineVoiceReadinessFailuresElement,
12956
- defineVoiceProviderStatusElement,
12957
- defineVoiceProviderSimulationControlsElement,
12958
- defineVoiceProviderContractsElement,
12959
- defineVoiceProviderCapabilitiesElement,
12960
- defineVoiceProofTrendsElement,
12961
- defineVoiceProfileSwitchRecommendationElement,
12962
- defineVoiceProfileComparisonElement,
12963
- defineVoicePlatformCoverageElement,
12964
- defineVoiceOpsStatusElement,
12965
- defineVoiceOpsActionCenterElement,
12966
- defineVoiceLiveOpsElement,
12967
- defineVoiceDeliveryRuntimeElement,
12968
- defineVoiceCallDebuggerLaunchElement,
12969
- defineVoiceAgentSquadStatusElement,
12970
- decodeVoiceAudioChunk,
12971
- createVoiceWorkflowStatusStore,
12972
- createVoiceTurnQualityViewModel,
12973
- createVoiceTurnQualityStore,
12974
- createVoiceTurnLatencyViewModel,
12975
- createVoiceTurnLatencyStore,
12976
- createVoiceTraceTimelineViewModel,
12977
- createVoiceTraceTimelineStore,
12978
- createVoiceStream,
12979
- createVoiceSessionSnapshotViewModel,
12980
- createVoiceSessionSnapshotStore,
12981
- createVoiceSessionObservabilityViewModel,
12982
- createVoiceSessionObservabilityStore,
12983
- createVoiceRoutingStatusViewModel,
12984
- createVoiceRoutingStatusStore,
12985
- createVoiceReconnectProfileEvidenceViewModel,
12986
- createVoiceReconnectProfileEvidenceStore,
12987
- createVoiceReadinessFailuresViewModel,
12988
- createVoiceReadinessFailuresStore,
12989
- createVoiceProviderStatusViewModel,
12990
- createVoiceProviderStatusStore,
12991
- createVoiceProviderSimulationControlsViewModel,
12992
- createVoiceProviderSimulationControlsStore,
12993
- createVoiceProviderContractsViewModel,
12994
- createVoiceProviderContractsStore,
12995
- createVoiceProviderCapabilitiesViewModel,
12996
- createVoiceProviderCapabilitiesStore,
12997
- createVoiceProofTrendsViewModel,
12998
- createVoiceProofTrendsStore,
12999
- createVoiceProfileSwitchRecommendationStore,
13000
- createVoiceProfileComparisonViewModel,
13001
- createVoiceProfileComparisonStore,
13002
- createVoicePlatformCoverageViewModel,
13003
- createVoicePlatformCoverageStore,
13004
- createVoiceOpsStatusViewModel,
13005
- createVoiceOpsStatusStore,
13006
- createVoiceOpsActionHistoryStore,
13007
- createVoiceOpsActionCenterViewModel,
13008
- createVoiceOpsActionCenterStore,
13009
- createVoiceOpsActionCenterActions,
13010
- createVoiceLiveTurnLatencyMonitor,
13011
- createVoiceLiveOpsStore,
13012
- createVoiceLiveOpsInput,
13013
- createVoiceDuplexController,
13014
- createVoiceDeliveryRuntimeViewModel,
13015
- createVoiceDeliveryRuntimeStore,
13016
- createVoiceController,
13017
- createVoiceConnection,
13018
- createVoiceCampaignDialerProofStore,
13019
- createVoiceCallDebuggerStore,
13020
- createVoiceCallDebuggerLaunchViewModel,
13021
- createVoiceBrowserMediaReporter,
13022
- createVoiceBargeInMonitor,
13023
- createVoiceAudioPlayer,
13024
- createVoiceAgentSquadStatusViewModel,
13025
- createVoiceAgentSquadStatusStore,
13026
- createTimeStretcher,
13027
- createMicrophoneCapture,
13028
- checkBrowserVoiceSupport,
13029
- buildVoiceAgentSquadStatusReport,
13030
- bindVoiceReactiveSource,
13031
- bindVoiceProviderSimulationControls,
13032
- bindVoiceHTMX,
12908
+ VoiceReconnectRejectedError,
13033
12909
  bindVoiceBargeIn,
13034
- VoiceReconnectRejectedError
12910
+ bindVoiceHTMX,
12911
+ bindVoiceProviderSimulationControls,
12912
+ bindVoiceReactiveSource,
12913
+ buildVoiceAgentSquadStatusReport,
12914
+ checkBrowserVoiceSupport,
12915
+ createMicrophoneCapture,
12916
+ createTimeStretcher,
12917
+ createVoiceAgentSquadStatusStore,
12918
+ createVoiceAgentSquadStatusViewModel,
12919
+ createVoiceAudioPlayer,
12920
+ createVoiceBargeInMonitor,
12921
+ createVoiceBrowserMediaReporter,
12922
+ createVoiceCallDebuggerLaunchViewModel,
12923
+ createVoiceCallDebuggerStore,
12924
+ createVoiceCampaignDialerProofStore,
12925
+ createVoiceConnection,
12926
+ createVoiceController,
12927
+ createVoiceDeliveryRuntimeStore,
12928
+ createVoiceDeliveryRuntimeViewModel,
12929
+ createVoiceDuplexController,
12930
+ createVoiceLiveOpsInput,
12931
+ createVoiceLiveOpsStore,
12932
+ createVoiceLiveTurnLatencyMonitor,
12933
+ createVoiceOpsActionCenterActions,
12934
+ createVoiceOpsActionCenterStore,
12935
+ createVoiceOpsActionCenterViewModel,
12936
+ createVoiceOpsActionHistoryStore,
12937
+ createVoiceOpsStatusStore,
12938
+ createVoiceOpsStatusViewModel,
12939
+ createVoicePlatformCoverageStore,
12940
+ createVoicePlatformCoverageViewModel,
12941
+ createVoiceProfileComparisonStore,
12942
+ createVoiceProfileComparisonViewModel,
12943
+ createVoiceProfileSwitchRecommendationStore,
12944
+ createVoiceProofTrendsStore,
12945
+ createVoiceProofTrendsViewModel,
12946
+ createVoiceProviderCapabilitiesStore,
12947
+ createVoiceProviderCapabilitiesViewModel,
12948
+ createVoiceProviderContractsStore,
12949
+ createVoiceProviderContractsViewModel,
12950
+ createVoiceProviderSimulationControlsStore,
12951
+ createVoiceProviderSimulationControlsViewModel,
12952
+ createVoiceProviderStatusStore,
12953
+ createVoiceProviderStatusViewModel,
12954
+ createVoiceReadinessFailuresStore,
12955
+ createVoiceReadinessFailuresViewModel,
12956
+ createVoiceReconnectProfileEvidenceStore,
12957
+ createVoiceReconnectProfileEvidenceViewModel,
12958
+ createVoiceRoutingStatusStore,
12959
+ createVoiceRoutingStatusViewModel,
12960
+ createVoiceSessionObservabilityStore,
12961
+ createVoiceSessionObservabilityViewModel,
12962
+ createVoiceSessionSnapshotStore,
12963
+ createVoiceSessionSnapshotViewModel,
12964
+ createVoiceStream,
12965
+ createVoiceTraceTimelineStore,
12966
+ createVoiceTraceTimelineViewModel,
12967
+ createVoiceTurnLatencyStore,
12968
+ createVoiceTurnLatencyViewModel,
12969
+ createVoiceTurnQualityStore,
12970
+ createVoiceTurnQualityViewModel,
12971
+ createVoiceWorkflowStatusStore,
12972
+ decodeVoiceAudioChunk,
12973
+ defineVoiceAgentSquadStatusElement,
12974
+ defineVoiceCallDebuggerLaunchElement,
12975
+ defineVoiceDeliveryRuntimeElement,
12976
+ defineVoiceLiveOpsElement,
12977
+ defineVoiceOpsActionCenterElement,
12978
+ defineVoiceOpsStatusElement,
12979
+ defineVoicePlatformCoverageElement,
12980
+ defineVoiceProfileComparisonElement,
12981
+ defineVoiceProfileSwitchRecommendationElement,
12982
+ defineVoiceProofTrendsElement,
12983
+ defineVoiceProviderCapabilitiesElement,
12984
+ defineVoiceProviderContractsElement,
12985
+ defineVoiceProviderSimulationControlsElement,
12986
+ defineVoiceProviderStatusElement,
12987
+ defineVoiceReadinessFailuresElement,
12988
+ defineVoiceReconnectProfileEvidenceElement,
12989
+ defineVoiceRoutingStatusElement,
12990
+ defineVoiceSessionObservabilityElement,
12991
+ defineVoiceSessionSnapshotElement,
12992
+ defineVoiceTraceTimelineElement,
12993
+ defineVoiceTurnLatencyElement,
12994
+ defineVoiceTurnQualityElement,
12995
+ fetchVoiceCallDebugger,
12996
+ fetchVoiceCampaignDialerProofStatus,
12997
+ fetchVoiceDeliveryRuntime,
12998
+ fetchVoiceOpsActionHistory,
12999
+ fetchVoiceOpsStatus,
13000
+ fetchVoicePlatformCoverage,
13001
+ fetchVoiceProfileComparison,
13002
+ fetchVoiceProfileSwitchRecommendation,
13003
+ fetchVoiceProofTrends,
13004
+ fetchVoiceProviderCapabilities,
13005
+ fetchVoiceProviderContracts,
13006
+ fetchVoiceProviderStatus,
13007
+ fetchVoiceReadinessFailures,
13008
+ fetchVoiceReconnectProfileEvidence,
13009
+ fetchVoiceRoutingStatus,
13010
+ fetchVoiceSessionObservability,
13011
+ fetchVoiceSessionSnapshot,
13012
+ fetchVoiceTraceTimeline,
13013
+ fetchVoiceTurnLatency,
13014
+ fetchVoiceTurnQuality,
13015
+ fetchVoiceWorkflowStatus,
13016
+ getVoiceAgentSquadStatusCSS,
13017
+ getVoiceDeliveryRuntimeCSS,
13018
+ getVoiceLiveOpsCSS,
13019
+ getVoiceOpsActionCenterCSS,
13020
+ getVoiceOpsActionHistoryCSS,
13021
+ getVoiceOpsStatusCSS,
13022
+ getVoiceOpsStatusLabel,
13023
+ getVoicePlatformCoverageCSS,
13024
+ getVoiceProfileComparisonCSS,
13025
+ getVoiceProfileSwitchRecommendationCSS,
13026
+ getVoiceProofTrendsCSS,
13027
+ getVoiceProviderCapabilitiesCSS,
13028
+ getVoiceProviderContractsCSS,
13029
+ getVoiceProviderStatusCSS,
13030
+ getVoiceReadinessFailuresCSS,
13031
+ getVoiceReconnectProfileEvidenceCSS,
13032
+ getVoiceRoutingStatusCSS,
13033
+ getVoiceSessionObservabilityCSS,
13034
+ getVoiceTraceTimelineCSS,
13035
+ getVoiceTurnQualityCSS,
13036
+ mountVoiceAgentSquadStatus,
13037
+ mountVoiceCallDebuggerLaunch,
13038
+ mountVoiceDeliveryRuntime,
13039
+ mountVoiceLiveOps,
13040
+ mountVoiceOpsActionCenter,
13041
+ mountVoiceOpsActionHistory,
13042
+ mountVoiceOpsStatus,
13043
+ mountVoicePlatformCoverage,
13044
+ mountVoiceProfileComparison,
13045
+ mountVoiceProfileSwitchRecommendation,
13046
+ mountVoiceProofTrends,
13047
+ mountVoiceProviderCapabilities,
13048
+ mountVoiceProviderContracts,
13049
+ mountVoiceProviderSimulationControls,
13050
+ mountVoiceProviderStatus,
13051
+ mountVoiceReadinessFailures,
13052
+ mountVoiceReconnectProfileEvidence,
13053
+ mountVoiceRoutingStatus,
13054
+ mountVoiceSessionObservability,
13055
+ mountVoiceSessionSnapshot,
13056
+ mountVoiceTraceTimeline,
13057
+ mountVoiceTurnLatency,
13058
+ mountVoiceTurnQuality,
13059
+ postVoiceLiveOpsAction,
13060
+ probeBrowserVoiceSupport,
13061
+ recordVoiceOpsActionResult,
13062
+ renderVoiceAgentSquadStatusHTML,
13063
+ renderVoiceCallDebuggerLaunchHTML,
13064
+ renderVoiceDeliveryRuntimeHTML,
13065
+ renderVoiceLiveOpsHTML,
13066
+ renderVoiceOpsActionCenterHTML,
13067
+ renderVoiceOpsActionHistoryWidgetHTML,
13068
+ renderVoiceOpsStatusHTML,
13069
+ renderVoicePlatformCoverageHTML,
13070
+ renderVoiceProfileComparisonHTML,
13071
+ renderVoiceProfileSwitchRecommendationHTML,
13072
+ renderVoiceProofTrendsHTML,
13073
+ renderVoiceProviderCapabilitiesHTML,
13074
+ renderVoiceProviderContractsHTML,
13075
+ renderVoiceProviderSimulationControlsHTML,
13076
+ renderVoiceProviderStatusHTML,
13077
+ renderVoiceReadinessFailuresHTML,
13078
+ renderVoiceReconnectProfileEvidenceHTML,
13079
+ renderVoiceRoutingStatusHTML,
13080
+ renderVoiceSessionObservabilityHTML,
13081
+ renderVoiceSessionSnapshotHTML,
13082
+ renderVoiceTraceTimelineWidgetHTML,
13083
+ renderVoiceTurnLatencyHTML,
13084
+ renderVoiceTurnQualityHTML,
13085
+ runVoiceCampaignDialerProofAction,
13086
+ runVoiceDeliveryRuntimeAction,
13087
+ runVoiceOpsAction,
13088
+ runVoiceTurnLatencyProof,
13089
+ voiceSseReactiveSource
13035
13090
  };