@tellescope/types-models 1.255.5 → 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;
@@ -4685,8 +4688,10 @@ export interface CustomDashboard_required {
4685
4688
  export interface CustomDashboard_updatesDisabled {
4686
4689
  }
4687
4690
  export interface CustomDashboard extends CustomDashboard_readonly, CustomDashboard_required, CustomDashboard_updatesDisabled {
4691
+ type?: string;
4688
4692
  description?: string;
4689
4693
  userIds?: string[];
4694
+ visibleToAllUsers?: boolean;
4690
4695
  defaultForUserIds?: string[];
4691
4696
  defaultForRoles?: string[];
4692
4697
  hiddenFromRoles?: string[];