@absolutejs/voice 0.0.22-beta.459 → 0.0.22-beta.460
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 +328 -204
- package/dist/angular/voice-session-observability.service.d.ts +12 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/index.js +528 -362
- package/dist/client/sessionObservability.d.ts +19 -0
- package/dist/client/sessionObservabilityWidget.d.ts +31 -0
- package/dist/react/VoiceSessionObservability.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +716 -460
- package/dist/react/useVoiceSessionObservability.d.ts +8 -0
- package/dist/svelte/createVoiceSessionObservability.d.ts +10 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +313 -142
- package/dist/vue/VoiceSessionObservability.d.ts +23 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +589 -339
- package/dist/vue/useVoiceSessionObservability.d.ts +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare const VoiceSessionObservability: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
description: StringConstructor;
|
|
3
|
+
intervalMs: NumberConstructor;
|
|
4
|
+
maxTurns: NumberConstructor;
|
|
5
|
+
path: {
|
|
6
|
+
default: string;
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
title: StringConstructor;
|
|
10
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
description: StringConstructor;
|
|
14
|
+
intervalMs: NumberConstructor;
|
|
15
|
+
maxTurns: NumberConstructor;
|
|
16
|
+
path: {
|
|
17
|
+
default: string;
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
};
|
|
20
|
+
title: StringConstructor;
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
path: string;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { VoiceProofTrends } from "./VoiceProofTrends";
|
|
|
6
6
|
export { VoiceReconnectProfileEvidence } from "./VoiceReconnectProfileEvidence";
|
|
7
7
|
export { VoiceCallDebuggerLaunch } from "./VoiceCallDebuggerLaunch";
|
|
8
8
|
export { VoiceSessionSnapshot } from "./VoiceSessionSnapshot";
|
|
9
|
+
export { VoiceSessionObservability } from "./VoiceSessionObservability";
|
|
9
10
|
export { VoiceReadinessFailures } from "./VoiceReadinessFailures";
|
|
10
11
|
export { VoiceProviderSimulationControls } from "./VoiceProviderSimulationControls";
|
|
11
12
|
export { VoiceProviderCapabilities } from "./VoiceProviderCapabilities";
|
|
@@ -21,6 +22,7 @@ export { useVoiceProofTrends } from "./useVoiceProofTrends";
|
|
|
21
22
|
export { useVoiceReconnectProfileEvidence } from "./useVoiceReconnectProfileEvidence";
|
|
22
23
|
export { useVoiceCallDebugger } from "./useVoiceCallDebugger";
|
|
23
24
|
export { useVoiceSessionSnapshot } from "./useVoiceSessionSnapshot";
|
|
25
|
+
export { useVoiceSessionObservability } from "./useVoiceSessionObservability";
|
|
24
26
|
export { useVoiceProfileComparison } from "./useVoiceProfileComparison";
|
|
25
27
|
export { useVoiceReadinessFailures } from "./useVoiceReadinessFailures";
|
|
26
28
|
export { useVoiceOpsActionCenter } from "./useVoiceOpsActionCenter";
|