@absolutejs/voice 0.0.22-beta.171 → 0.0.22-beta.172
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/index.js +4 -2
- package/dist/productionReadiness.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20737,14 +20737,15 @@ var buildVoiceProductionReadinessReport = async (options, input = {}) => {
|
|
|
20737
20737
|
const issues = row.checks.filter((check) => check.status !== "pass").map((check) => check.label).join(", ");
|
|
20738
20738
|
return `${row.kind.toUpperCase()} ${row.provider}: ${issues}`;
|
|
20739
20739
|
}).join("; ") + "." : "Provider contract matrix needs review.",
|
|
20740
|
-
href: options.links?.
|
|
20740
|
+
href: options.links?.providerContracts ?? "/provider-contracts",
|
|
20741
20741
|
label: "Provider contract matrix",
|
|
20742
|
+
proofSource: proofSource("providerContractMatrix", "providerContracts"),
|
|
20742
20743
|
status: providerContractMatrix.status,
|
|
20743
20744
|
value: `${providerContractMatrix.passed}/${providerContractMatrix.total}`,
|
|
20744
20745
|
actions: providerContractMatrix.status === "pass" ? [] : [
|
|
20745
20746
|
{
|
|
20746
20747
|
description: "Open provider capabilities and inspect missing env, fallback, streaming, latency, or capability contracts.",
|
|
20747
|
-
href: options.links?.
|
|
20748
|
+
href: options.links?.providerContracts ?? "/provider-contracts",
|
|
20748
20749
|
label: "Open provider matrix"
|
|
20749
20750
|
}
|
|
20750
20751
|
]
|
|
@@ -20916,6 +20917,7 @@ var buildVoiceProductionReadinessReport = async (options, input = {}) => {
|
|
|
20916
20917
|
liveLatency: "/traces",
|
|
20917
20918
|
opsActions: "/voice/ops-actions",
|
|
20918
20919
|
phoneAgentSmoke: "/sessions",
|
|
20920
|
+
providerContracts: "/provider-contracts",
|
|
20919
20921
|
providerRoutingContracts: "/resilience",
|
|
20920
20922
|
quality: "/quality",
|
|
20921
20923
|
reconnectContracts: "/sessions",
|