@absolutejs/voice 0.0.22-beta.452 → 0.0.22-beta.454
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 +345 -224
- package/dist/angular/voice-reconnect-profile-evidence.service.d.ts +12 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +543 -240
- package/dist/client/reconnectProfileEvidence.d.ts +19 -0
- package/dist/client/reconnectProfileEvidenceWidget.d.ts +39 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +107 -0
- package/dist/proofTrends.d.ts +53 -0
- package/dist/react/VoiceReconnectProfileEvidence.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +919 -526
- package/dist/react/useVoiceReconnectProfileEvidence.d.ts +8 -0
- package/dist/svelte/createVoiceReconnectProfileEvidence.d.ts +7 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +86 -0
- package/dist/vue/VoiceReconnectProfileEvidence.d.ts +21 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +825 -438
- package/dist/vue/useVoiceReconnectProfileEvidence.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type VoiceReconnectProfileEvidenceClientOptions } from "../client/reconnectProfileEvidence";
|
|
2
|
+
import type { VoiceReconnectProfileEvidenceSummary } from "../proofTrends";
|
|
3
|
+
export declare class VoiceReconnectProfileEvidenceService {
|
|
4
|
+
connect(path?: string, options?: VoiceReconnectProfileEvidenceClientOptions): {
|
|
5
|
+
close: () => void;
|
|
6
|
+
error: import("@angular/core").Signal<string | null>;
|
|
7
|
+
isLoading: import("@angular/core").Signal<boolean>;
|
|
8
|
+
refresh: () => Promise<VoiceReconnectProfileEvidenceSummary | undefined>;
|
|
9
|
+
report: import("@angular/core").Signal<VoiceReconnectProfileEvidenceSummary | 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 { createVoiceReconnectProfileEvidenceStore, fetchVoiceReconnectProfileEvidence, } from "./reconnectProfileEvidence";
|
|
15
16
|
export { createVoiceSessionSnapshotStore, fetchVoiceSessionSnapshot, } from "./sessionSnapshot";
|
|
16
17
|
export { createVoiceCallDebuggerStore, fetchVoiceCallDebugger, } from "./callDebugger";
|
|
17
18
|
export { createVoiceCallDebuggerLaunchViewModel, defineVoiceCallDebuggerLaunchElement, mountVoiceCallDebuggerLaunch, renderVoiceCallDebuggerLaunchHTML, } from "./callDebuggerWidget";
|
|
@@ -30,6 +31,7 @@ export { createVoiceDeliveryRuntimeStore, fetchVoiceDeliveryRuntime, runVoiceDel
|
|
|
30
31
|
export { createVoiceOpsStatusViewModel, defineVoiceOpsStatusElement, getVoiceOpsStatusCSS, getVoiceOpsStatusLabel, mountVoiceOpsStatus, renderVoiceOpsStatusHTML, } from "./opsStatusWidget";
|
|
31
32
|
export { createVoicePlatformCoverageViewModel, defineVoicePlatformCoverageElement, getVoicePlatformCoverageCSS, mountVoicePlatformCoverage, renderVoicePlatformCoverageHTML, } from "./platformCoverageWidget";
|
|
32
33
|
export { createVoiceProofTrendsViewModel, defineVoiceProofTrendsElement, getVoiceProofTrendsCSS, mountVoiceProofTrends, renderVoiceProofTrendsHTML, } from "./proofTrendsWidget";
|
|
34
|
+
export { createVoiceReconnectProfileEvidenceViewModel, defineVoiceReconnectProfileEvidenceElement, getVoiceReconnectProfileEvidenceCSS, mountVoiceReconnectProfileEvidence, renderVoiceReconnectProfileEvidenceHTML, } from "./reconnectProfileEvidenceWidget";
|
|
33
35
|
export { createVoiceProfileComparisonViewModel, defineVoiceProfileComparisonElement, getVoiceProfileComparisonCSS, mountVoiceProfileComparison, renderVoiceProfileComparisonHTML, } from "./profileComparisonWidget";
|
|
34
36
|
export { defineVoiceProfileSwitchRecommendationElement, getVoiceProfileSwitchRecommendationCSS, mountVoiceProfileSwitchRecommendation, renderVoiceProfileSwitchRecommendationHTML, } from "./profileSwitchRecommendationWidget";
|
|
35
37
|
export { createVoiceReadinessFailuresViewModel, defineVoiceReadinessFailuresElement, getVoiceReadinessFailuresCSS, mountVoiceReadinessFailures, renderVoiceReadinessFailuresHTML, } from "./readinessFailuresWidget";
|
|
@@ -60,9 +62,11 @@ export { createVoiceWorkflowStatusStore, fetchVoiceWorkflowStatus, } from "./wor
|
|
|
60
62
|
export type { VoiceOpsStatusClientOptions, VoiceOpsStatusSnapshot, } from "./opsStatus";
|
|
61
63
|
export type { VoiceReadinessFailuresClientOptions, VoiceReadinessFailuresSnapshot, } from "./readinessFailures";
|
|
62
64
|
export type { VoiceProfileComparisonClientOptions, VoiceProfileComparisonSnapshot, } from "./profileComparison";
|
|
65
|
+
export type { VoiceReconnectProfileEvidenceClientOptions, VoiceReconnectProfileEvidenceSnapshot, } from "./reconnectProfileEvidence";
|
|
63
66
|
export type { VoiceProfileSwitchRecommendationClientOptions, VoiceProfileSwitchRecommendationSnapshot, } from "./profileSwitchRecommendation";
|
|
64
67
|
export type { VoiceReadinessFailureView, VoiceReadinessFailuresViewModel, VoiceReadinessFailuresWidgetOptions, } from "./readinessFailuresWidget";
|
|
65
68
|
export type { VoiceProfileComparisonProfileView, VoiceProfileComparisonViewModel, VoiceProfileComparisonWidgetOptions, } from "./profileComparisonWidget";
|
|
69
|
+
export type { VoiceReconnectProfileEvidenceMetricView, VoiceReconnectProfileEvidenceViewModel, VoiceReconnectProfileEvidenceWidgetOptions, } from "./reconnectProfileEvidenceWidget";
|
|
66
70
|
export type { VoiceOpsActionCenterClientOptions, VoiceOpsActionCenterPresetOptions, VoiceOpsActionCenterSnapshot, VoiceOpsActionDescriptor, VoiceOpsActionMethod, VoiceOpsActionRunResult, } from "./opsActionCenter";
|
|
67
71
|
export type { VoiceLiveOpsClientOptions, VoiceLiveOpsAction, VoiceLiveOpsActionInput, VoiceLiveOpsActionResult, VoiceLiveOpsSnapshot, } from "./liveOps";
|
|
68
72
|
export type { VoiceOpsActionHistoryClientOptions, VoiceOpsActionHistorySnapshot, } from "./opsActionHistory";
|