@absolutejs/voice 0.0.22-beta.242 → 0.0.22-beta.244
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 +32 -1
- package/dist/angular/index.d.ts +1 -0
- package/dist/angular/index.js +306 -181
- package/dist/angular/voice-proof-trends.service.d.ts +12 -0
- package/dist/client/index.d.ts +2 -0
- package/dist/client/index.js +490 -190
- package/dist/client/proofTrends.d.ts +19 -0
- package/dist/client/proofTrendsWidget.d.ts +37 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +207 -0
- package/dist/postCallAnalysis.d.ts +98 -0
- package/dist/react/VoiceProofTrends.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +730 -350
- package/dist/react/useVoiceProofTrends.d.ts +8 -0
- package/dist/svelte/createVoiceProofTrends.d.ts +7 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +90 -0
- package/dist/vue/VoiceProofTrends.d.ts +21 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +704 -321
- package/dist/vue/useVoiceProofTrends.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type VoiceProofTrendsClientOptions } from '../client/proofTrends';
|
|
2
|
+
import type { VoiceProofTrendReport } from '../proofTrends';
|
|
3
|
+
export declare class VoiceProofTrendsService {
|
|
4
|
+
connect(path?: string, options?: VoiceProofTrendsClientOptions): {
|
|
5
|
+
close: () => void;
|
|
6
|
+
error: import("@angular/core").Signal<string | null>;
|
|
7
|
+
isLoading: import("@angular/core").Signal<boolean>;
|
|
8
|
+
refresh: () => Promise<VoiceProofTrendReport | undefined>;
|
|
9
|
+
report: import("@angular/core").Signal<VoiceProofTrendReport | undefined>;
|
|
10
|
+
updatedAt: import("@angular/core").Signal<number | undefined>;
|
|
11
|
+
};
|
|
12
|
+
}
|
package/dist/client/index.d.ts
CHANGED
|
@@ -9,12 +9,14 @@ export { createVoiceBargeInMonitor } from './bargeInMonitor';
|
|
|
9
9
|
export { createVoiceLiveTurnLatencyMonitor } from './liveTurnLatency';
|
|
10
10
|
export { createVoiceOpsStatusStore, fetchVoiceOpsStatus } from './opsStatus';
|
|
11
11
|
export { createVoicePlatformCoverageStore, fetchVoicePlatformCoverage } from './platformCoverage';
|
|
12
|
+
export { createVoiceProofTrendsStore, fetchVoiceProofTrends } from './proofTrends';
|
|
12
13
|
export { createVoiceOpsActionCenterActions, createVoiceOpsActionCenterStore, recordVoiceOpsActionResult, runVoiceOpsAction } from './opsActionCenter';
|
|
13
14
|
export { createVoiceLiveOpsStore, postVoiceLiveOpsAction } from './liveOps';
|
|
14
15
|
export { createVoiceOpsActionHistoryStore, fetchVoiceOpsActionHistory } from './opsActionHistory';
|
|
15
16
|
export { createVoiceDeliveryRuntimeStore, fetchVoiceDeliveryRuntime, runVoiceDeliveryRuntimeAction } from './deliveryRuntime';
|
|
16
17
|
export { createVoiceOpsStatusViewModel, defineVoiceOpsStatusElement, getVoiceOpsStatusCSS, getVoiceOpsStatusLabel, mountVoiceOpsStatus, renderVoiceOpsStatusHTML } from './opsStatusWidget';
|
|
17
18
|
export { createVoicePlatformCoverageViewModel, defineVoicePlatformCoverageElement, getVoicePlatformCoverageCSS, mountVoicePlatformCoverage, renderVoicePlatformCoverageHTML } from './platformCoverageWidget';
|
|
19
|
+
export { createVoiceProofTrendsViewModel, defineVoiceProofTrendsElement, getVoiceProofTrendsCSS, mountVoiceProofTrends, renderVoiceProofTrendsHTML } from './proofTrendsWidget';
|
|
18
20
|
export { createVoiceOpsActionCenterViewModel, defineVoiceOpsActionCenterElement, getVoiceOpsActionCenterCSS, mountVoiceOpsActionCenter, renderVoiceOpsActionCenterHTML } from './opsActionCenterWidget';
|
|
19
21
|
export { createVoiceLiveOpsInput, defineVoiceLiveOpsElement, getVoiceLiveOpsCSS, mountVoiceLiveOps, renderVoiceLiveOpsHTML } from './liveOpsWidget';
|
|
20
22
|
export { getVoiceOpsActionHistoryCSS, mountVoiceOpsActionHistory, renderVoiceOpsActionHistoryWidgetHTML } from './opsActionHistoryWidget';
|