@absolutejs/voice 0.0.22-beta.352 → 0.0.22-beta.353
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/dist/angular/index.d.ts +1 -0
- package/dist/angular/index.js +313 -192
- package/dist/angular/voice-profile-comparison.service.d.ts +12 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +389 -212
- package/dist/client/profileComparison.d.ts +19 -0
- package/dist/client/profileComparisonWidget.d.ts +41 -0
- package/dist/react/VoiceProfileComparison.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +675 -397
- package/dist/react/useVoiceProfileComparison.d.ts +8 -0
- package/dist/svelte/createVoiceProfileComparison.d.ts +7 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +86 -0
- package/dist/vue/index.d.ts +1 -0
- package/dist/vue/index.js +161 -51
- package/dist/vue/useVoiceProfileComparison.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type VoiceProfileComparisonClientOptions } from '../client/profileComparison';
|
|
2
|
+
import type { VoiceRealCallProfileHistoryReport } from '../proofTrends';
|
|
3
|
+
export declare class VoiceProfileComparisonService {
|
|
4
|
+
connect(path?: string, options?: VoiceProfileComparisonClientOptions): {
|
|
5
|
+
close: () => void;
|
|
6
|
+
error: import("@angular/core").Signal<string | null>;
|
|
7
|
+
isLoading: import("@angular/core").Signal<boolean>;
|
|
8
|
+
refresh: () => Promise<VoiceRealCallProfileHistoryReport | undefined>;
|
|
9
|
+
report: import("@angular/core").Signal<VoiceRealCallProfileHistoryReport | undefined>;
|
|
10
|
+
updatedAt: import("@angular/core").Signal<number | undefined>;
|
|
11
|
+
};
|
|
12
|
+
}
|
package/dist/client/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { createVoiceLiveTurnLatencyMonitor } from './liveTurnLatency';
|
|
|
12
12
|
export { createVoiceOpsStatusStore, fetchVoiceOpsStatus } from './opsStatus';
|
|
13
13
|
export { createVoicePlatformCoverageStore, fetchVoicePlatformCoverage } from './platformCoverage';
|
|
14
14
|
export { createVoiceProofTrendsStore, fetchVoiceProofTrends } from './proofTrends';
|
|
15
|
+
export { createVoiceProfileComparisonStore, fetchVoiceProfileComparison } from './profileComparison';
|
|
15
16
|
export { createVoiceReadinessFailuresStore, fetchVoiceReadinessFailures } from './readinessFailures';
|
|
16
17
|
export { createVoiceOpsActionCenterActions, createVoiceOpsActionCenterStore, recordVoiceOpsActionResult, runVoiceOpsAction } from './opsActionCenter';
|
|
17
18
|
export { createVoiceLiveOpsStore, postVoiceLiveOpsAction } from './liveOps';
|
|
@@ -20,6 +21,7 @@ export { createVoiceDeliveryRuntimeStore, fetchVoiceDeliveryRuntime, runVoiceDel
|
|
|
20
21
|
export { createVoiceOpsStatusViewModel, defineVoiceOpsStatusElement, getVoiceOpsStatusCSS, getVoiceOpsStatusLabel, mountVoiceOpsStatus, renderVoiceOpsStatusHTML } from './opsStatusWidget';
|
|
21
22
|
export { createVoicePlatformCoverageViewModel, defineVoicePlatformCoverageElement, getVoicePlatformCoverageCSS, mountVoicePlatformCoverage, renderVoicePlatformCoverageHTML } from './platformCoverageWidget';
|
|
22
23
|
export { createVoiceProofTrendsViewModel, defineVoiceProofTrendsElement, getVoiceProofTrendsCSS, mountVoiceProofTrends, renderVoiceProofTrendsHTML } from './proofTrendsWidget';
|
|
24
|
+
export { createVoiceProfileComparisonViewModel, defineVoiceProfileComparisonElement, getVoiceProfileComparisonCSS, mountVoiceProfileComparison, renderVoiceProfileComparisonHTML } from './profileComparisonWidget';
|
|
23
25
|
export { createVoiceReadinessFailuresViewModel, defineVoiceReadinessFailuresElement, getVoiceReadinessFailuresCSS, mountVoiceReadinessFailures, renderVoiceReadinessFailuresHTML } from './readinessFailuresWidget';
|
|
24
26
|
export { createVoiceOpsActionCenterViewModel, defineVoiceOpsActionCenterElement, getVoiceOpsActionCenterCSS, mountVoiceOpsActionCenter, renderVoiceOpsActionCenterHTML } from './opsActionCenterWidget';
|
|
25
27
|
export { createVoiceLiveOpsInput, defineVoiceLiveOpsElement, getVoiceLiveOpsCSS, mountVoiceLiveOps, renderVoiceLiveOpsHTML } from './liveOpsWidget';
|
|
@@ -47,7 +49,9 @@ export { createVoiceAgentSquadStatusViewModel, defineVoiceAgentSquadStatusElemen
|
|
|
47
49
|
export { createVoiceWorkflowStatusStore, fetchVoiceWorkflowStatus } from './workflowStatus';
|
|
48
50
|
export type { VoiceOpsStatusClientOptions, VoiceOpsStatusSnapshot } from './opsStatus';
|
|
49
51
|
export type { VoiceReadinessFailuresClientOptions, VoiceReadinessFailuresSnapshot } from './readinessFailures';
|
|
52
|
+
export type { VoiceProfileComparisonClientOptions, VoiceProfileComparisonSnapshot } from './profileComparison';
|
|
50
53
|
export type { VoiceReadinessFailureView, VoiceReadinessFailuresViewModel, VoiceReadinessFailuresWidgetOptions } from './readinessFailuresWidget';
|
|
54
|
+
export type { VoiceProfileComparisonProfileView, VoiceProfileComparisonViewModel, VoiceProfileComparisonWidgetOptions } from './profileComparisonWidget';
|
|
51
55
|
export type { VoiceOpsActionCenterClientOptions, VoiceOpsActionCenterPresetOptions, VoiceOpsActionCenterSnapshot, VoiceOpsActionDescriptor, VoiceOpsActionMethod, VoiceOpsActionRunResult } from './opsActionCenter';
|
|
52
56
|
export type { VoiceLiveOpsClientOptions, VoiceLiveOpsAction, VoiceLiveOpsActionInput, VoiceLiveOpsActionResult, VoiceLiveOpsSnapshot } from './liveOps';
|
|
53
57
|
export type { VoiceOpsActionHistoryClientOptions, VoiceOpsActionHistorySnapshot } from './opsActionHistory';
|