@absolutejs/voice 0.0.22-beta.290 → 0.0.22-beta.292
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.
- package/README.md +53 -0
- package/dist/angular/index.d.ts +1 -0
- package/dist/angular/index.js +303 -181
- package/dist/angular/voice-readiness-failures.service.d.ts +13 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +367 -183
- package/dist/client/readinessFailures.d.ts +19 -0
- package/dist/client/readinessFailuresWidget.d.ts +42 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +90 -14
- package/dist/modelAdapters.d.ts +37 -0
- package/dist/react/VoiceReadinessFailures.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +635 -345
- package/dist/react/useVoiceReadinessFailures.d.ts +8 -0
- package/dist/svelte/createVoiceReadinessFailures.d.ts +7 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +86 -0
- package/dist/testing/index.js +87 -12
- package/dist/vue/VoiceReadinessFailures.d.ts +21 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +540 -262
- package/dist/vue/useVoiceReadinessFailures.d.ts +755 -0
- package/package.json +1 -1
|
@@ -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
|
+
}
|
package/dist/client/index.d.ts
CHANGED
|
@@ -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';
|