@absolutejs/voice 0.0.22-beta.354 → 0.0.22-beta.356
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/audit.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +83 -0
- package/dist/profileSwitchRecommendation.d.ts +26 -0
- package/dist/react/VoiceProfileSwitchRecommendation.d.ts +6 -0
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.js +561 -388
- package/dist/react/useVoiceProfileSwitchRecommendation.d.ts +8 -0
- package/dist/vue/useVoiceReadinessFailures.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type VoiceProfileSwitchRecommendationClientOptions } from '../client/profileSwitchRecommendation';
|
|
2
|
+
export declare const useVoiceProfileSwitchRecommendation: (path?: string, options?: VoiceProfileSwitchRecommendationClientOptions) => {
|
|
3
|
+
refresh: () => Promise<import("..").VoiceProfileSwitchRecommendation | undefined>;
|
|
4
|
+
error: string | null;
|
|
5
|
+
isLoading: boolean;
|
|
6
|
+
recommendation?: import("..").VoiceProfileSwitchRecommendation;
|
|
7
|
+
updatedAt?: number;
|
|
8
|
+
};
|
|
@@ -146,6 +146,7 @@ export declare const useVoiceReadinessFailures: (path?: string, options?: VoiceR
|
|
|
146
146
|
readonly present: {
|
|
147
147
|
readonly "operator.action": number;
|
|
148
148
|
readonly handoff: number;
|
|
149
|
+
readonly "profile.switch": number;
|
|
149
150
|
readonly "provider.call": number;
|
|
150
151
|
readonly "retention.policy": number;
|
|
151
152
|
readonly "tool.call": number;
|
|
@@ -578,6 +579,7 @@ export declare const useVoiceReadinessFailures: (path?: string, options?: VoiceR
|
|
|
578
579
|
readonly present: {
|
|
579
580
|
readonly "operator.action": number;
|
|
580
581
|
readonly handoff: number;
|
|
582
|
+
readonly "profile.switch": number;
|
|
581
583
|
readonly "provider.call": number;
|
|
582
584
|
readonly "retention.policy": number;
|
|
583
585
|
readonly "tool.call": number;
|