@absolutejs/voice 0.0.22-beta.344 → 0.0.22-beta.346
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/browserCallProfiles.d.ts +120 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +614 -414
- package/dist/productionReadiness.d.ts +4 -0
- package/package.json +1 -1
|
@@ -453,6 +453,10 @@ export type VoiceProductionReadinessRoutesOptions = {
|
|
|
453
453
|
query: Record<string, unknown>;
|
|
454
454
|
request: Request;
|
|
455
455
|
}) => Promise<readonly VoiceAgentSquadContractReport[]> | readonly VoiceAgentSquadContractReport[]);
|
|
456
|
+
additionalChecks?: false | readonly VoiceProductionReadinessCheck[] | ((input: {
|
|
457
|
+
query: Record<string, unknown>;
|
|
458
|
+
request: Request;
|
|
459
|
+
}) => Promise<readonly VoiceProductionReadinessCheck[]> | readonly VoiceProductionReadinessCheck[]);
|
|
456
460
|
audit?: false | VoiceProductionReadinessAuditOptions;
|
|
457
461
|
auditDeliveries?: false | VoiceProductionReadinessAuditDeliveryOptions;
|
|
458
462
|
bargeInReports?: false | readonly VoiceBargeInReport[] | ((input: {
|