@absolutejs/voice 0.0.22-beta.241 → 0.0.22-beta.243
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 +306 -181
- package/dist/angular/voice-proof-trends.service.d.ts +12 -0
- package/dist/client/index.d.ts +2 -0
- package/dist/client/index.js +490 -190
- package/dist/client/proofTrends.d.ts +19 -0
- package/dist/client/proofTrendsWidget.d.ts +37 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +118 -70
- package/dist/proofTrends.d.ts +44 -0
- package/dist/react/VoiceProofTrends.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +730 -350
- package/dist/react/useVoiceProofTrends.d.ts +8 -0
- package/dist/svelte/createVoiceProofTrends.d.ts +7 -0
- package/dist/svelte/index.d.ts +1 -0
- package/dist/svelte/index.js +90 -0
- package/dist/vue/VoiceProofTrends.d.ts +21 -0
- package/dist/vue/index.d.ts +2 -0
- package/dist/vue/index.js +704 -321
- package/dist/vue/useVoiceProofTrends.d.ts +9 -0
- package/package.json +1 -1
package/dist/proofTrends.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Elysia } from 'elysia';
|
|
1
2
|
export type VoiceProofTrendStatus = 'empty' | 'fail' | 'pass' | 'stale';
|
|
2
3
|
export type VoiceProofTrendSummary = {
|
|
3
4
|
cycles?: number;
|
|
@@ -58,7 +59,50 @@ export type VoiceProofTrendReport = {
|
|
|
58
59
|
status: VoiceProofTrendStatus;
|
|
59
60
|
summary: VoiceProofTrendSummary;
|
|
60
61
|
};
|
|
62
|
+
export type VoiceProofTrendRoutesOptions = {
|
|
63
|
+
headers?: HeadersInit;
|
|
64
|
+
jsonPath?: string;
|
|
65
|
+
maxAgeMs?: number;
|
|
66
|
+
name?: string;
|
|
67
|
+
path?: string;
|
|
68
|
+
source?: (() => Promise<VoiceProofTrendReport | VoiceProofTrendReportInput> | VoiceProofTrendReport | VoiceProofTrendReportInput) | VoiceProofTrendReport | VoiceProofTrendReportInput;
|
|
69
|
+
};
|
|
61
70
|
export declare const DEFAULT_VOICE_PROOF_TRENDS_MAX_AGE_MS: number;
|
|
62
71
|
export declare const buildVoiceProofTrendReport: (input?: VoiceProofTrendReportInput) => VoiceProofTrendReport;
|
|
63
72
|
export declare const buildEmptyVoiceProofTrendReport: (source?: string, maxAgeMs?: number) => VoiceProofTrendReport;
|
|
73
|
+
export declare const normalizeVoiceProofTrendReport: (value: VoiceProofTrendReport | VoiceProofTrendReportInput, options?: {
|
|
74
|
+
maxAgeMs?: number;
|
|
75
|
+
source?: string;
|
|
76
|
+
}) => VoiceProofTrendReport;
|
|
77
|
+
export declare const readVoiceProofTrendReportFile: (path: string, options?: {
|
|
78
|
+
maxAgeMs?: number;
|
|
79
|
+
}) => Promise<VoiceProofTrendReport>;
|
|
80
|
+
export declare const createVoiceProofTrendRoutes: (options: VoiceProofTrendRoutesOptions) => Elysia<"", {
|
|
81
|
+
decorator: {};
|
|
82
|
+
store: {};
|
|
83
|
+
derive: {};
|
|
84
|
+
resolve: {};
|
|
85
|
+
}, {
|
|
86
|
+
typebox: {};
|
|
87
|
+
error: {};
|
|
88
|
+
}, {
|
|
89
|
+
schema: {};
|
|
90
|
+
standaloneSchema: {};
|
|
91
|
+
macro: {};
|
|
92
|
+
macroFn: {};
|
|
93
|
+
parser: {};
|
|
94
|
+
response: {};
|
|
95
|
+
}, {}, {
|
|
96
|
+
derive: {};
|
|
97
|
+
resolve: {};
|
|
98
|
+
schema: {};
|
|
99
|
+
standaloneSchema: {};
|
|
100
|
+
response: {};
|
|
101
|
+
}, {
|
|
102
|
+
derive: {};
|
|
103
|
+
resolve: {};
|
|
104
|
+
schema: {};
|
|
105
|
+
standaloneSchema: {};
|
|
106
|
+
response: {};
|
|
107
|
+
}>;
|
|
64
108
|
export declare const formatVoiceProofTrendAge: (ageMs: unknown) => string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type VoiceProofTrendsWidgetOptions } from '../client/proofTrendsWidget';
|
|
2
|
+
export type VoiceProofTrendsProps = VoiceProofTrendsWidgetOptions & {
|
|
3
|
+
className?: string;
|
|
4
|
+
path?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const VoiceProofTrends: ({ className, path, ...options }: VoiceProofTrendsProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/react/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { VoiceOpsStatus } from './VoiceOpsStatus';
|
|
|
2
2
|
export { VoiceOpsActionCenter } from './VoiceOpsActionCenter';
|
|
3
3
|
export { VoiceDeliveryRuntime } from './VoiceDeliveryRuntime';
|
|
4
4
|
export { VoicePlatformCoverage } from './VoicePlatformCoverage';
|
|
5
|
+
export { VoiceProofTrends } from './VoiceProofTrends';
|
|
5
6
|
export { VoiceProviderSimulationControls } from './VoiceProviderSimulationControls';
|
|
6
7
|
export { VoiceProviderCapabilities } from './VoiceProviderCapabilities';
|
|
7
8
|
export { VoiceProviderContracts } from './VoiceProviderContracts';
|
|
@@ -13,6 +14,7 @@ export { VoiceTurnLatency } from './VoiceTurnLatency';
|
|
|
13
14
|
export { VoiceTurnQuality } from './VoiceTurnQuality';
|
|
14
15
|
export { useVoiceOpsStatus } from './useVoiceOpsStatus';
|
|
15
16
|
export { useVoicePlatformCoverage } from './useVoicePlatformCoverage';
|
|
17
|
+
export { useVoiceProofTrends } from './useVoiceProofTrends';
|
|
16
18
|
export { useVoiceOpsActionCenter } from './useVoiceOpsActionCenter';
|
|
17
19
|
export { useVoiceLiveOps } from './useVoiceLiveOps';
|
|
18
20
|
export { useVoiceDeliveryRuntime } from './useVoiceDeliveryRuntime';
|