@tellescope/types-models 1.255.8 → 1.255.9

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.
@@ -404,6 +404,7 @@ export interface Organization_readonly extends ClientRecord {
404
404
  fromEmails?: string[];
405
405
  twilioSID?: string;
406
406
  twilioCustomerId?: string;
407
+ outboundSMSDisabled?: boolean;
407
408
  customPortalScriptTags?: string[];
408
409
  verifiedEmailDomains?: VerifiedEmailDomain[];
409
410
  verifiedEmailDomainSettings?: VerifiedEmailDomainSettings;
@@ -2618,6 +2619,7 @@ export interface WebHook extends WebHook_readonly, WebHook_required, WebHook_upd
2618
2619
  url: string;
2619
2620
  secret: string;
2620
2621
  subscriptions: WebhookSubscriptionsType;
2622
+ deliveryFailureCount?: number;
2621
2623
  }
2622
2624
  export type BaseAvailabilityBlock = {
2623
2625
  userId: string;
@@ -3579,6 +3581,7 @@ export type AIContextSource = {
3579
3581
  type: "Email" | "SMS" | "PhoneCall";
3580
3582
  limit: number;
3581
3583
  };
3584
+ export declare const AI_DECISION_NO_MATCH_OUTCOME = "____NO_MATCH____";
3582
3585
  export type AIDecisionAutomationAction = AutomationActionBuilder<'aiDecision', {
3583
3586
  outcomes: string[];
3584
3587
  prompt?: string;