@absolutejs/voice 0.0.22-beta.290 → 0.0.22-beta.291

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.
@@ -0,0 +1,13 @@
1
+ import { type VoiceReadinessFailuresClientOptions } from '../client/readinessFailures';
2
+ import type { VoiceProductionReadinessReport } from '../productionReadiness';
3
+ export declare class VoiceReadinessFailuresService {
4
+ connect(path?: string, options?: VoiceReadinessFailuresClientOptions): {
5
+ close: () => void;
6
+ error: import("@angular/core").Signal<string | null>;
7
+ explanations: import("@angular/core").Signal<import("..").VoiceProductionReadinessCheck[]>;
8
+ isLoading: import("@angular/core").Signal<boolean>;
9
+ refresh: () => Promise<VoiceProductionReadinessReport | undefined>;
10
+ report: import("@angular/core").Signal<VoiceProductionReadinessReport | undefined>;
11
+ updatedAt: import("@angular/core").Signal<number | undefined>;
12
+ };
13
+ }
@@ -10,6 +10,7 @@ export { createVoiceLiveTurnLatencyMonitor } from './liveTurnLatency';
10
10
  export { createVoiceOpsStatusStore, fetchVoiceOpsStatus } from './opsStatus';
11
11
  export { createVoicePlatformCoverageStore, fetchVoicePlatformCoverage } from './platformCoverage';
12
12
  export { createVoiceProofTrendsStore, fetchVoiceProofTrends } from './proofTrends';
13
+ export { createVoiceReadinessFailuresStore, fetchVoiceReadinessFailures } from './readinessFailures';
13
14
  export { createVoiceOpsActionCenterActions, createVoiceOpsActionCenterStore, recordVoiceOpsActionResult, runVoiceOpsAction } from './opsActionCenter';
14
15
  export { createVoiceLiveOpsStore, postVoiceLiveOpsAction } from './liveOps';
15
16
  export { createVoiceOpsActionHistoryStore, fetchVoiceOpsActionHistory } from './opsActionHistory';
@@ -17,6 +18,7 @@ export { createVoiceDeliveryRuntimeStore, fetchVoiceDeliveryRuntime, runVoiceDel
17
18
  export { createVoiceOpsStatusViewModel, defineVoiceOpsStatusElement, getVoiceOpsStatusCSS, getVoiceOpsStatusLabel, mountVoiceOpsStatus, renderVoiceOpsStatusHTML } from './opsStatusWidget';
18
19
  export { createVoicePlatformCoverageViewModel, defineVoicePlatformCoverageElement, getVoicePlatformCoverageCSS, mountVoicePlatformCoverage, renderVoicePlatformCoverageHTML } from './platformCoverageWidget';
19
20
  export { createVoiceProofTrendsViewModel, defineVoiceProofTrendsElement, getVoiceProofTrendsCSS, mountVoiceProofTrends, renderVoiceProofTrendsHTML } from './proofTrendsWidget';
21
+ export { createVoiceReadinessFailuresViewModel, defineVoiceReadinessFailuresElement, getVoiceReadinessFailuresCSS, mountVoiceReadinessFailures, renderVoiceReadinessFailuresHTML } from './readinessFailuresWidget';
20
22
  export { createVoiceOpsActionCenterViewModel, defineVoiceOpsActionCenterElement, getVoiceOpsActionCenterCSS, mountVoiceOpsActionCenter, renderVoiceOpsActionCenterHTML } from './opsActionCenterWidget';
21
23
  export { createVoiceLiveOpsInput, defineVoiceLiveOpsElement, getVoiceLiveOpsCSS, mountVoiceLiveOps, renderVoiceLiveOpsHTML } from './liveOpsWidget';
22
24
  export { getVoiceOpsActionHistoryCSS, mountVoiceOpsActionHistory, renderVoiceOpsActionHistoryWidgetHTML } from './opsActionHistoryWidget';
@@ -42,6 +44,8 @@ export { createVoiceTraceTimelineViewModel, defineVoiceTraceTimelineElement, get
42
44
  export { createVoiceAgentSquadStatusViewModel, defineVoiceAgentSquadStatusElement, getVoiceAgentSquadStatusCSS, mountVoiceAgentSquadStatus, renderVoiceAgentSquadStatusHTML } from './agentSquadStatusWidget';
43
45
  export { createVoiceWorkflowStatusStore, fetchVoiceWorkflowStatus } from './workflowStatus';
44
46
  export type { VoiceOpsStatusClientOptions, VoiceOpsStatusSnapshot } from './opsStatus';
47
+ export type { VoiceReadinessFailuresClientOptions, VoiceReadinessFailuresSnapshot } from './readinessFailures';
48
+ export type { VoiceReadinessFailureView, VoiceReadinessFailuresViewModel, VoiceReadinessFailuresWidgetOptions } from './readinessFailuresWidget';
45
49
  export type { VoiceOpsActionCenterClientOptions, VoiceOpsActionCenterPresetOptions, VoiceOpsActionCenterSnapshot, VoiceOpsActionDescriptor, VoiceOpsActionMethod, VoiceOpsActionRunResult } from './opsActionCenter';
46
50
  export type { VoiceLiveOpsClientOptions, VoiceLiveOpsAction, VoiceLiveOpsActionInput, VoiceLiveOpsActionResult, VoiceLiveOpsSnapshot } from './liveOps';
47
51
  export type { VoiceOpsActionHistoryClientOptions, VoiceOpsActionHistorySnapshot } from './opsActionHistory';