@absolutejs/voice 0.0.22-beta.404 → 0.0.22-beta.405
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 +333 -214
- package/dist/angular/voice-call-debugger.service.d.ts +12 -0
- package/dist/react/VoiceCallDebuggerLaunch.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +739 -483
- package/dist/react/useVoiceCallDebugger.d.ts +8 -0
- package/dist/svelte/createVoiceCallDebugger.d.ts +12 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +338 -152
- package/dist/vue/VoiceCallDebuggerLaunch.d.ts +68 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +628 -364
- package/dist/vue/useVoiceCallDebugger.d.ts +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export declare const VoiceCallDebuggerLaunch: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
class: {
|
|
3
|
+
default: string;
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
};
|
|
6
|
+
description: {
|
|
7
|
+
default: undefined;
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
};
|
|
10
|
+
href: {
|
|
11
|
+
default: undefined;
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
};
|
|
14
|
+
intervalMs: {
|
|
15
|
+
default: number;
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
};
|
|
18
|
+
linkLabel: {
|
|
19
|
+
default: undefined;
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
};
|
|
22
|
+
path: {
|
|
23
|
+
required: true;
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
default: undefined;
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
};
|
|
30
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
class: {
|
|
34
|
+
default: string;
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
};
|
|
37
|
+
description: {
|
|
38
|
+
default: undefined;
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
};
|
|
41
|
+
href: {
|
|
42
|
+
default: undefined;
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
};
|
|
45
|
+
intervalMs: {
|
|
46
|
+
default: number;
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
};
|
|
49
|
+
linkLabel: {
|
|
50
|
+
default: undefined;
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
};
|
|
53
|
+
path: {
|
|
54
|
+
required: true;
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
};
|
|
57
|
+
title: {
|
|
58
|
+
default: undefined;
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
};
|
|
61
|
+
}>> & Readonly<{}>, {
|
|
62
|
+
description: string;
|
|
63
|
+
title: string;
|
|
64
|
+
href: string;
|
|
65
|
+
intervalMs: number;
|
|
66
|
+
linkLabel: string;
|
|
67
|
+
class: string;
|
|
68
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { VoiceOpsActionCenter } from './VoiceOpsActionCenter';
|
|
|
3
3
|
export { VoiceDeliveryRuntime } from './VoiceDeliveryRuntime';
|
|
4
4
|
export { VoicePlatformCoverage } from './VoicePlatformCoverage';
|
|
5
5
|
export { VoiceProofTrends } from './VoiceProofTrends';
|
|
6
|
+
export { VoiceCallDebuggerLaunch } from './VoiceCallDebuggerLaunch';
|
|
6
7
|
export { VoiceSessionSnapshot } from './VoiceSessionSnapshot';
|
|
7
8
|
export { VoiceReadinessFailures } from './VoiceReadinessFailures';
|
|
8
9
|
export { VoiceProviderSimulationControls } from './VoiceProviderSimulationControls';
|
|
@@ -16,6 +17,7 @@ export { VoiceTurnQuality } from './VoiceTurnQuality';
|
|
|
16
17
|
export { useVoiceOpsStatus } from './useVoiceOpsStatus';
|
|
17
18
|
export { useVoicePlatformCoverage } from './useVoicePlatformCoverage';
|
|
18
19
|
export { useVoiceProofTrends } from './useVoiceProofTrends';
|
|
20
|
+
export { useVoiceCallDebugger } from './useVoiceCallDebugger';
|
|
19
21
|
export { useVoiceSessionSnapshot } from './useVoiceSessionSnapshot';
|
|
20
22
|
export { useVoiceProfileComparison } from './useVoiceProfileComparison';
|
|
21
23
|
export { useVoiceReadinessFailures } from './useVoiceReadinessFailures';
|