@absolutejs/voice 0.0.22-beta.152 → 0.0.22-beta.154
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 +39 -0
- package/dist/angular/index.d.ts +1 -0
- package/dist/angular/index.js +471 -137
- package/dist/angular/voice-delivery-runtime.component.d.ts +3 -0
- package/dist/angular/voice-delivery-runtime.service.d.ts +4 -0
- package/dist/angular/voice-ops-action-center.service.d.ts +13 -0
- package/dist/client/deliveryRuntime.d.ts +15 -0
- package/dist/client/deliveryRuntimeWidget.d.ts +3 -0
- package/dist/client/index.d.ts +6 -2
- package/dist/client/index.js +454 -114
- package/dist/client/opsActionCenter.d.ts +50 -0
- package/dist/client/opsActionCenterWidget.d.ts +29 -0
- package/dist/deliveryRuntime.d.ts +13 -1
- package/dist/index.js +44 -1
- package/dist/react/VoiceDeliveryRuntime.d.ts +2 -1
- package/dist/react/VoiceOpsActionCenter.d.ts +5 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +720 -286
- package/dist/react/useVoiceDeliveryRuntime.d.ts +5 -0
- package/dist/react/useVoiceOpsActionCenter.d.ts +11 -0
- package/dist/svelte/createVoiceDeliveryRuntime.d.ts +2 -0
- package/dist/svelte/createVoiceOpsActionCenter.d.ts +10 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +464 -115
- package/dist/vue/VoiceDeliveryRuntime.d.ts +9 -0
- package/dist/vue/VoiceOpsActionCenter.d.ts +13 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +748 -292
- package/dist/vue/useVoiceDeliveryRuntime.d.ts +4 -0
- package/dist/vue/useVoiceOpsActionCenter.d.ts +11 -0
- package/package.json +1 -1
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
description: StringConstructor;
|
|
3
|
+
includeActions: {
|
|
4
|
+
default: boolean;
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
};
|
|
3
7
|
intervalMs: NumberConstructor;
|
|
4
8
|
path: {
|
|
5
9
|
default: string;
|
|
@@ -10,6 +14,10 @@ export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import(
|
|
|
10
14
|
[key: string]: any;
|
|
11
15
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
16
|
description: StringConstructor;
|
|
17
|
+
includeActions: {
|
|
18
|
+
default: boolean;
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
};
|
|
13
21
|
intervalMs: NumberConstructor;
|
|
14
22
|
path: {
|
|
15
23
|
default: string;
|
|
@@ -18,4 +26,5 @@ export declare const VoiceDeliveryRuntime: import("vue").DefineComponent<import(
|
|
|
18
26
|
title: StringConstructor;
|
|
19
27
|
}>> & Readonly<{}>, {
|
|
20
28
|
path: string;
|
|
29
|
+
includeActions: boolean;
|
|
21
30
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import type { VoiceOpsActionDescriptor } from '../client/opsActionCenter';
|
|
3
|
+
export declare const VoiceOpsActionCenter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
actions: PropType<VoiceOpsActionDescriptor[]>;
|
|
5
|
+
description: StringConstructor;
|
|
6
|
+
title: StringConstructor;
|
|
7
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
actions: PropType<VoiceOpsActionDescriptor[]>;
|
|
11
|
+
description: StringConstructor;
|
|
12
|
+
title: StringConstructor;
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { VoiceOpsStatus } from './VoiceOpsStatus';
|
|
2
|
+
export { VoiceOpsActionCenter } from './VoiceOpsActionCenter';
|
|
2
3
|
export { VoiceDeliveryRuntime } from './VoiceDeliveryRuntime';
|
|
3
4
|
export { VoiceProviderSimulationControls } from './VoiceProviderSimulationControls';
|
|
4
5
|
export { VoiceProviderCapabilities } from './VoiceProviderCapabilities';
|
|
@@ -7,6 +8,7 @@ export { VoiceRoutingStatus } from './VoiceRoutingStatus';
|
|
|
7
8
|
export { VoiceTurnLatency } from './VoiceTurnLatency';
|
|
8
9
|
export { VoiceTurnQuality } from './VoiceTurnQuality';
|
|
9
10
|
export { useVoiceOpsStatus } from './useVoiceOpsStatus';
|
|
11
|
+
export { useVoiceOpsActionCenter } from './useVoiceOpsActionCenter';
|
|
10
12
|
export { useVoiceDeliveryRuntime } from './useVoiceDeliveryRuntime';
|
|
11
13
|
export { useVoiceCampaignDialerProof } from './useVoiceCampaignDialerProof';
|
|
12
14
|
export { useVoiceStream } from './useVoiceStream';
|