@absolutejs/voice 0.0.22-beta.538 → 0.0.22-beta.539
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.js +118 -0
- package/dist/client/callDebugger.d.ts +2 -0
- package/dist/client/campaignDialerProof.d.ts +2 -0
- package/dist/client/deliveryRuntime.d.ts +2 -0
- package/dist/client/index.d.ts +2 -0
- package/dist/client/index.js +258 -36
- package/dist/client/opsActionCenter.d.ts +2 -0
- package/dist/client/opsActionHistory.d.ts +2 -0
- package/dist/client/opsStatus.d.ts +2 -0
- package/dist/client/platformCoverage.d.ts +2 -0
- package/dist/client/profileComparison.d.ts +2 -0
- package/dist/client/profileSwitchRecommendation.d.ts +2 -0
- package/dist/client/proofTrends.d.ts +2 -0
- package/dist/client/providerCapabilities.d.ts +2 -0
- package/dist/client/providerContracts.d.ts +2 -0
- package/dist/client/providerStatus.d.ts +2 -0
- package/dist/client/reactiveSource.d.ts +8 -0
- package/dist/client/readinessFailures.d.ts +2 -0
- package/dist/client/reconnectProfileEvidence.d.ts +2 -0
- package/dist/client/routingStatus.d.ts +2 -0
- package/dist/client/sessionObservability.d.ts +2 -0
- package/dist/client/sessionSnapshot.d.ts +2 -0
- package/dist/client/traceTimeline.d.ts +2 -0
- package/dist/client/turnLatency.d.ts +2 -0
- package/dist/client/turnQuality.d.ts +2 -0
- package/dist/client/workflowStatus.d.ts +2 -0
- package/dist/react/index.js +252 -36
- package/dist/svelte/index.js +202 -24
- package/dist/vue/VoiceCallDebuggerLaunch.d.ts +4 -0
- package/dist/vue/VoiceDeliveryRuntime.d.ts +4 -0
- package/dist/vue/VoiceOpsStatus.d.ts +4 -0
- package/dist/vue/VoicePlatformCoverage.d.ts +4 -0
- package/dist/vue/VoiceProofTrends.d.ts +4 -0
- package/dist/vue/VoiceProviderCapabilities.d.ts +4 -0
- package/dist/vue/VoiceProviderContracts.d.ts +4 -0
- package/dist/vue/VoiceProviderStatus.d.ts +4 -0
- package/dist/vue/VoiceReadinessFailures.d.ts +4 -0
- package/dist/vue/VoiceReconnectProfileEvidence.d.ts +4 -0
- package/dist/vue/VoiceRoutingStatus.d.ts +4 -0
- package/dist/vue/VoiceSessionObservability.d.ts +4 -0
- package/dist/vue/VoiceSessionSnapshot.d.ts +4 -0
- package/dist/vue/VoiceTurnLatency.d.ts +4 -0
- package/dist/vue/VoiceTurnQuality.d.ts +4 -0
- package/dist/vue/index.js +261 -30
- package/package.json +1 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceCallDebuggerLaunch: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -15,6 +17,7 @@ export declare const VoiceCallDebuggerLaunch: import("vue").DefineComponent<impo
|
|
|
15
17
|
default: number;
|
|
16
18
|
type: NumberConstructor;
|
|
17
19
|
};
|
|
20
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
21
|
linkLabel: {
|
|
19
22
|
default: undefined;
|
|
20
23
|
type: StringConstructor;
|
|
@@ -46,6 +49,7 @@ export declare const VoiceCallDebuggerLaunch: import("vue").DefineComponent<impo
|
|
|
46
49
|
default: number;
|
|
47
50
|
type: NumberConstructor;
|
|
48
51
|
};
|
|
52
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
49
53
|
linkLabel: {
|
|
50
54
|
default: undefined;
|
|
51
55
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
includeActions: {
|
|
@@ -9,6 +11,7 @@ export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import(
|
|
|
9
11
|
default: string;
|
|
10
12
|
type: StringConstructor;
|
|
11
13
|
};
|
|
14
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
12
15
|
title: StringConstructor;
|
|
13
16
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
17
|
[key: string]: any;
|
|
@@ -23,6 +26,7 @@ export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import(
|
|
|
23
26
|
default: string;
|
|
24
27
|
type: StringConstructor;
|
|
25
28
|
};
|
|
29
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
26
30
|
title: StringConstructor;
|
|
27
31
|
}>> & Readonly<{}>, {
|
|
28
32
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceOpsStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
includeLinks: {
|
|
@@ -9,6 +11,7 @@ export declare const VoiceOpsStatus: import("vue").DefineComponent<import("vue")
|
|
|
9
11
|
default: string;
|
|
10
12
|
type: StringConstructor;
|
|
11
13
|
};
|
|
14
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
12
15
|
title: StringConstructor;
|
|
13
16
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
17
|
[key: string]: any;
|
|
@@ -23,6 +26,7 @@ export declare const VoiceOpsStatus: import("vue").DefineComponent<import("vue")
|
|
|
23
26
|
default: string;
|
|
24
27
|
type: StringConstructor;
|
|
25
28
|
};
|
|
29
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
26
30
|
title: StringConstructor;
|
|
27
31
|
}>> & Readonly<{}>, {
|
|
28
32
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoicePlatformCoverage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -6,6 +8,7 @@ export declare const VoicePlatformCoverage: import("vue").DefineComponent<import
|
|
|
6
8
|
default: string;
|
|
7
9
|
type: StringConstructor;
|
|
8
10
|
};
|
|
11
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
9
12
|
title: StringConstructor;
|
|
10
13
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
14
|
[key: string]: any;
|
|
@@ -17,6 +20,7 @@ export declare const VoicePlatformCoverage: import("vue").DefineComponent<import
|
|
|
17
20
|
default: string;
|
|
18
21
|
type: StringConstructor;
|
|
19
22
|
};
|
|
23
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
20
24
|
title: StringConstructor;
|
|
21
25
|
}>> & Readonly<{}>, {
|
|
22
26
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceProofTrends: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -5,6 +7,7 @@ export declare const VoiceProofTrends: import("vue").DefineComponent<import("vue
|
|
|
5
7
|
default: string;
|
|
6
8
|
type: StringConstructor;
|
|
7
9
|
};
|
|
10
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
8
11
|
title: StringConstructor;
|
|
9
12
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
13
|
[key: string]: any;
|
|
@@ -15,6 +18,7 @@ export declare const VoiceProofTrends: import("vue").DefineComponent<import("vue
|
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
17
20
|
};
|
|
21
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
22
|
title: StringConstructor;
|
|
19
23
|
}>> & Readonly<{}>, {
|
|
20
24
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceProviderCapabilities: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -11,6 +13,7 @@ export declare const VoiceProviderCapabilities: import("vue").DefineComponent<im
|
|
|
11
13
|
default: number;
|
|
12
14
|
type: NumberConstructor;
|
|
13
15
|
};
|
|
16
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
14
17
|
path: {
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
@@ -34,6 +37,7 @@ export declare const VoiceProviderCapabilities: import("vue").DefineComponent<im
|
|
|
34
37
|
default: number;
|
|
35
38
|
type: NumberConstructor;
|
|
36
39
|
};
|
|
40
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
37
41
|
path: {
|
|
38
42
|
default: string;
|
|
39
43
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceProviderContracts: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -5,6 +7,7 @@ export declare const VoiceProviderContracts: import("vue").DefineComponent<impor
|
|
|
5
7
|
default: string;
|
|
6
8
|
type: StringConstructor;
|
|
7
9
|
};
|
|
10
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
8
11
|
title: StringConstructor;
|
|
9
12
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
13
|
[key: string]: any;
|
|
@@ -15,6 +18,7 @@ export declare const VoiceProviderContracts: import("vue").DefineComponent<impor
|
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
17
20
|
};
|
|
21
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
22
|
title: StringConstructor;
|
|
19
23
|
}>> & Readonly<{}>, {
|
|
20
24
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceProviderStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -11,6 +13,7 @@ export declare const VoiceProviderStatus: import("vue").DefineComponent<import("
|
|
|
11
13
|
default: number;
|
|
12
14
|
type: NumberConstructor;
|
|
13
15
|
};
|
|
16
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
14
17
|
path: {
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
@@ -34,6 +37,7 @@ export declare const VoiceProviderStatus: import("vue").DefineComponent<import("
|
|
|
34
37
|
default: number;
|
|
35
38
|
type: NumberConstructor;
|
|
36
39
|
};
|
|
40
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
37
41
|
path: {
|
|
38
42
|
default: string;
|
|
39
43
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceReadinessFailures: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -5,6 +7,7 @@ export declare const VoiceReadinessFailures: import("vue").DefineComponent<impor
|
|
|
5
7
|
default: string;
|
|
6
8
|
type: StringConstructor;
|
|
7
9
|
};
|
|
10
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
8
11
|
title: StringConstructor;
|
|
9
12
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
13
|
[key: string]: any;
|
|
@@ -15,6 +18,7 @@ export declare const VoiceReadinessFailures: import("vue").DefineComponent<impor
|
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
17
20
|
};
|
|
21
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
22
|
title: StringConstructor;
|
|
19
23
|
}>> & Readonly<{}>, {
|
|
20
24
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceReconnectProfileEvidence: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -5,6 +7,7 @@ export declare const VoiceReconnectProfileEvidence: import("vue").DefineComponen
|
|
|
5
7
|
default: string;
|
|
6
8
|
type: StringConstructor;
|
|
7
9
|
};
|
|
10
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
8
11
|
title: StringConstructor;
|
|
9
12
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
13
|
[key: string]: any;
|
|
@@ -15,6 +18,7 @@ export declare const VoiceReconnectProfileEvidence: import("vue").DefineComponen
|
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
17
20
|
};
|
|
21
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
22
|
title: StringConstructor;
|
|
19
23
|
}>> & Readonly<{}>, {
|
|
20
24
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceRoutingStatus: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -11,6 +13,7 @@ export declare const VoiceRoutingStatus: import("vue").DefineComponent<import("v
|
|
|
11
13
|
default: number;
|
|
12
14
|
type: NumberConstructor;
|
|
13
15
|
};
|
|
16
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
14
17
|
path: {
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
@@ -34,6 +37,7 @@ export declare const VoiceRoutingStatus: import("vue").DefineComponent<import("v
|
|
|
34
37
|
default: number;
|
|
35
38
|
type: NumberConstructor;
|
|
36
39
|
};
|
|
40
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
37
41
|
path: {
|
|
38
42
|
default: string;
|
|
39
43
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceSessionObservability: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
description: StringConstructor;
|
|
3
5
|
intervalMs: NumberConstructor;
|
|
@@ -6,6 +8,7 @@ export declare const VoiceSessionObservability: import("vue").DefineComponent<im
|
|
|
6
8
|
default: string;
|
|
7
9
|
type: StringConstructor;
|
|
8
10
|
};
|
|
11
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
9
12
|
title: StringConstructor;
|
|
10
13
|
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
14
|
[key: string]: any;
|
|
@@ -17,6 +20,7 @@ export declare const VoiceSessionObservability: import("vue").DefineComponent<im
|
|
|
17
20
|
default: string;
|
|
18
21
|
type: StringConstructor;
|
|
19
22
|
};
|
|
23
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
20
24
|
title: StringConstructor;
|
|
21
25
|
}>> & Readonly<{}>, {
|
|
22
26
|
path: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceSessionSnapshot: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -15,6 +17,7 @@ export declare const VoiceSessionSnapshot: import("vue").DefineComponent<import(
|
|
|
15
17
|
default: number;
|
|
16
18
|
type: NumberConstructor;
|
|
17
19
|
};
|
|
20
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
18
21
|
path: {
|
|
19
22
|
required: true;
|
|
20
23
|
type: StringConstructor;
|
|
@@ -46,6 +49,7 @@ export declare const VoiceSessionSnapshot: import("vue").DefineComponent<import(
|
|
|
46
49
|
default: number;
|
|
47
50
|
type: NumberConstructor;
|
|
48
51
|
};
|
|
52
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
49
53
|
path: {
|
|
50
54
|
required: true;
|
|
51
55
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceTurnLatency: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -11,6 +13,7 @@ export declare const VoiceTurnLatency: import("vue").DefineComponent<import("vue
|
|
|
11
13
|
default: number;
|
|
12
14
|
type: NumberConstructor;
|
|
13
15
|
};
|
|
16
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
14
17
|
path: {
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
@@ -42,6 +45,7 @@ export declare const VoiceTurnLatency: import("vue").DefineComponent<import("vue
|
|
|
42
45
|
default: number;
|
|
43
46
|
type: NumberConstructor;
|
|
44
47
|
};
|
|
48
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
45
49
|
path: {
|
|
46
50
|
default: string;
|
|
47
51
|
type: StringConstructor;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { VoiceReactiveSource } from "../client/reactiveSource";
|
|
1
3
|
export declare const VoiceTurnQuality: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
class: {
|
|
3
5
|
default: string;
|
|
@@ -11,6 +13,7 @@ export declare const VoiceTurnQuality: import("vue").DefineComponent<import("vue
|
|
|
11
13
|
default: number;
|
|
12
14
|
type: NumberConstructor;
|
|
13
15
|
};
|
|
16
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
14
17
|
path: {
|
|
15
18
|
default: string;
|
|
16
19
|
type: StringConstructor;
|
|
@@ -34,6 +37,7 @@ export declare const VoiceTurnQuality: import("vue").DefineComponent<import("vue
|
|
|
34
37
|
default: number;
|
|
35
38
|
type: NumberConstructor;
|
|
36
39
|
};
|
|
40
|
+
reactiveSource: PropType<VoiceReactiveSource>;
|
|
37
41
|
path: {
|
|
38
42
|
default: string;
|
|
39
43
|
type: StringConstructor;
|