@absolutejs/voice 0.0.22-beta.276 → 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.
package/dist/index.js CHANGED
@@ -28525,6 +28525,7 @@ var profileSurfaceLabels = {
28525
28525
  observabilityExportDeliveryHistory: "observability export delivery history configured",
28526
28526
  phoneAgentSmokes: "phone-agent smoke proof configured",
28527
28527
  providerRoutingContracts: "provider routing contracts configured",
28528
+ telephonyWebhookSecurity: "carrier webhook security configured",
28528
28529
  traceDeliveries: "trace delivery queue configured"
28529
28530
  }
28530
28531
  };
@@ -28547,6 +28548,7 @@ var profileRequiredKeys = {
28547
28548
  "phoneAgentSmokes",
28548
28549
  "campaignReadiness",
28549
28550
  "providerRoutingContracts",
28551
+ "telephonyWebhookSecurity",
28550
28552
  "auditDeliveries",
28551
28553
  "traceDeliveries",
28552
28554
  "observabilityExportDeliveryHistory",
@@ -28567,6 +28569,7 @@ var configuredProfileKeys = (options) => {
28567
28569
  "phoneAgentSmokes",
28568
28570
  "providerRoutingContracts",
28569
28571
  "reconnectContracts",
28572
+ "telephonyWebhookSecurity",
28570
28573
  "traceDeliveries"
28571
28574
  ]) {
28572
28575
  if (isConfigured(options[key])) {
@@ -28675,6 +28678,12 @@ var profileExplanation = (profile, options, links) => {
28675
28678
  key: "providerRoutingContracts",
28676
28679
  label: "Provider routing contracts"
28677
28680
  },
28681
+ {
28682
+ configured: isConfigured(options.telephonyWebhookSecurity),
28683
+ href: links.telephonyWebhookSecurity,
28684
+ key: "telephonyWebhookSecurity",
28685
+ label: "Carrier webhook security"
28686
+ },
28678
28687
  {
28679
28688
  configured: isConfigured(options.deliveryRuntime),
28680
28689
  href: links.deliveryRuntime,
@@ -28779,6 +28788,7 @@ var createVoiceReadinessProfile = (profile, options = {}) => {
28779
28788
  providerRoutingContracts: "/resilience",
28780
28789
  resilience: "/resilience",
28781
28790
  sessions: "/sessions",
28791
+ telephonyWebhookSecurity: "/api/voice/telephony/webhook-security",
28782
28792
  traceDeliveries: "/traces/deliveries"
28783
28793
  }, options.links);
28784
28794
  return withDefined({
@@ -28793,6 +28803,7 @@ var createVoiceReadinessProfile = (profile, options = {}) => {
28793
28803
  profile: profileExplanation(profile, options, links2),
28794
28804
  proofSources: options.proofSources,
28795
28805
  providerRoutingContracts: options.providerRoutingContracts,
28806
+ telephonyWebhookSecurity: options.telephonyWebhookSecurity,
28796
28807
  traceDeliveries: options.traceDeliveries
28797
28808
  });
28798
28809
  }
@@ -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'>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/voice",
3
- "version": "0.0.22-beta.276",
3
+ "version": "0.0.22-beta.277",
4
4
  "description": "Voice primitives and Elysia plugin for AbsoluteJS",
5
5
  "repository": {
6
6
  "type": "git",