@absolutejs/voice 0.0.22-beta.275 → 0.0.22-beta.277
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Elysia } from 'elysia';
|
|
2
2
|
import { type VoiceProviderFallbackRecoverySummary } from './sessionReplay';
|
|
3
3
|
import { type VoiceTelephonyCarrierMatrixInput } from './telephony/matrix';
|
|
4
|
+
import { type VoiceTelephonyWebhookSecurityOptions, type VoiceTelephonyWebhookSecurityReport } from './telephony/security';
|
|
4
5
|
import type { VoiceTraceEventStore } from './trace';
|
|
5
6
|
import type { VoiceTraceSinkDeliveryStore } from './trace';
|
|
6
7
|
import type { VoiceAgentSquadContractReport } from './agentSquadContract';
|
|
@@ -120,6 +121,7 @@ export type VoiceProductionReadinessReport = {
|
|
|
120
121
|
opsActions?: string;
|
|
121
122
|
opsRecovery?: string;
|
|
122
123
|
phoneAgentSmoke?: string;
|
|
124
|
+
telephonyWebhookSecurity?: string;
|
|
123
125
|
providerContracts?: string;
|
|
124
126
|
providerRoutingContracts?: string;
|
|
125
127
|
providerSlo?: string;
|
|
@@ -219,6 +221,13 @@ export type VoiceProductionReadinessReport = {
|
|
|
219
221
|
status: VoiceProductionReadinessStatus;
|
|
220
222
|
total: number;
|
|
221
223
|
};
|
|
224
|
+
telephonyWebhookSecurity?: {
|
|
225
|
+
enabled: number;
|
|
226
|
+
failed: number;
|
|
227
|
+
passed: number;
|
|
228
|
+
status: VoiceProductionReadinessStatus;
|
|
229
|
+
warned: number;
|
|
230
|
+
};
|
|
222
231
|
providerRoutingContracts?: {
|
|
223
232
|
failed: number;
|
|
224
233
|
passed: number;
|
|
@@ -406,6 +415,10 @@ export type VoiceProductionReadinessRoutesOptions = {
|
|
|
406
415
|
query: Record<string, unknown>;
|
|
407
416
|
request: Request;
|
|
408
417
|
}) => Promise<readonly VoicePhoneAgentProductionSmokeReport[]> | readonly VoicePhoneAgentProductionSmokeReport[]);
|
|
418
|
+
telephonyWebhookSecurity?: false | VoiceTelephonyWebhookSecurityReport | VoiceTelephonyWebhookSecurityOptions | ((input: {
|
|
419
|
+
query: Record<string, unknown>;
|
|
420
|
+
request: Request;
|
|
421
|
+
}) => Promise<VoiceTelephonyWebhookSecurityReport | VoiceTelephonyWebhookSecurityOptions> | VoiceTelephonyWebhookSecurityReport | VoiceTelephonyWebhookSecurityOptions);
|
|
409
422
|
providerRoutingContracts?: false | readonly VoiceProviderRoutingContractReport[] | ((input: {
|
|
410
423
|
query: Record<string, unknown>;
|
|
411
424
|
request: Request;
|
|
@@ -16,6 +16,7 @@ export type VoiceReadinessProfileOptions = {
|
|
|
16
16
|
proofSources?: VoiceProductionReadinessRoutesOptions['proofSources'];
|
|
17
17
|
providerRoutingContracts?: VoiceProductionReadinessRoutesOptions['providerRoutingContracts'];
|
|
18
18
|
reconnectContracts?: VoiceProductionReadinessRoutesOptions['reconnectContracts'];
|
|
19
|
+
telephonyWebhookSecurity?: VoiceProductionReadinessRoutesOptions['telephonyWebhookSecurity'];
|
|
19
20
|
traceDeliveries?: VoiceProductionReadinessTraceDeliveryOptions;
|
|
20
21
|
};
|
|
21
22
|
export type VoiceReadinessProfileRoutesOptions = Partial<Omit<VoiceProductionReadinessRoutesOptions, 'store'>>;
|
|
@@ -4,6 +4,6 @@ export declare function useVoiceLiveOps(options?: VoiceLiveOpsClientOptions): {
|
|
|
4
4
|
isRunning: import("vue").Ref<boolean, boolean>;
|
|
5
5
|
lastResult: import("vue").ShallowRef<VoiceLiveOpsActionResult | undefined, VoiceLiveOpsActionResult | undefined>;
|
|
6
6
|
run: (input: import("..").VoiceLiveOpsActionInput) => Promise<VoiceLiveOpsActionResult | undefined>;
|
|
7
|
-
runningAction: import("vue").Ref<"escalate" | "assign" | "create-task" | "force-handoff" | "inject-instruction" | "
|
|
7
|
+
runningAction: import("vue").Ref<"escalate" | "operator-takeover" | "assign" | "create-task" | "force-handoff" | "inject-instruction" | "pause-assistant" | "resume-assistant" | "tag" | undefined, "escalate" | "operator-takeover" | "assign" | "create-task" | "force-handoff" | "inject-instruction" | "pause-assistant" | "resume-assistant" | "tag" | undefined>;
|
|
8
8
|
updatedAt: import("vue").Ref<number | undefined, number | undefined>;
|
|
9
9
|
};
|