@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 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?.providerRoutingContracts ?? options.links?.resilience ?? "/resilience",
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?.providerRoutingContracts ?? options.links?.resilience ?? "/resilience",
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",
@@ -88,6 +88,7 @@ export type VoiceProductionReadinessReport = {
88
88
  liveLatency?: string;
89
89
  opsActions?: string;
90
90
  phoneAgentSmoke?: string;
91
+ providerContracts?: string;
91
92
  providerRoutingContracts?: string;
92
93
  quality?: string;
93
94
  reconnectContracts?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/voice",
3
- "version": "0.0.22-beta.171",
3
+ "version": "0.0.22-beta.172",
4
4
  "description": "Voice primitives and Elysia plugin for AbsoluteJS",
5
5
  "repository": {
6
6
  "type": "git",