@tellescope/types-models 1.109.0 → 1.110.0

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.
@@ -452,6 +452,7 @@ export interface User_readonly extends ClientRecord {
452
452
  lastActive?: Date;
453
453
  lastLogout?: Date;
454
454
  isa?: boolean;
455
+ passwordLastChangedAt?: Date;
455
456
  }
456
457
  export interface User_required {
457
458
  email: string;
@@ -590,6 +591,7 @@ export interface Enduser_readonly extends UserActivityInfo, ClientRecord, Enduse
590
591
  _age?: number;
591
592
  mergedIds?: string[];
592
593
  _updateKey?: string;
594
+ passwordLastChangedAt?: Date;
593
595
  }
594
596
  export interface Enduser_required {
595
597
  }
@@ -889,6 +891,7 @@ export interface Email_updatesDisabled {
889
891
  logOnly?: boolean;
890
892
  timestamp?: Date;
891
893
  userId: string;
894
+ journeyId?: string;
892
895
  }
893
896
  export interface Email extends Email_required, Email_readonly, Email_updatesDisabled, TextCommunication {
894
897
  isAutoreply?: boolean;
@@ -906,6 +909,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
906
909
  syncedAt?: Date;
907
910
  cc?: string[];
908
911
  fromEmailOverride?: string;
912
+ scheduledFromEmail?: string;
909
913
  ticketIds?: string[];
910
914
  alternateToAddress?: string;
911
915
  hiddenBy?: {
@@ -943,6 +947,7 @@ export interface SMSMessage_updatesDisabled {
943
947
  inbound: boolean;
944
948
  newThread: boolean;
945
949
  logOnly?: boolean;
950
+ journeyId?: string;
946
951
  }
947
952
  export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SMSMessage_updatesDisabled, TextCommunication, WithLinkOpenTrackingIds {
948
953
  isAutoreply?: boolean;
@@ -1244,7 +1249,7 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
1244
1249
  tags?: string[];
1245
1250
  }
1246
1251
  export type FormFieldLiteralType = 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
1247
- export type FormFieldComplexType = "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
1252
+ export type FormFieldComplexType = "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
1248
1253
  export type FormFieldType = FormFieldLiteralType | FormFieldComplexType;
1249
1254
  export type PreviousFormFieldType = 'root' | 'after' | 'previousEquals' | 'compoundLogic';
1250
1255
  export type PreviousFormFieldBuilder<T extends PreviousFormFieldType, V> = {
@@ -1327,6 +1332,7 @@ export type FormFieldOptions = FormFieldValidation & {
1327
1332
  useDatePicker?: boolean;
1328
1333
  sharedIntakeFields?: string[];
1329
1334
  hiddenDefaultFields?: string[];
1335
+ customTypeId?: string;
1330
1336
  copyResponse?: boolean;
1331
1337
  disableGoBack?: boolean;
1332
1338
  disableNext?: boolean;
@@ -1643,6 +1649,7 @@ export type FormResponseAnswerMultipleChoiceValue = string[];
1643
1649
  export type FormResponseAnswerMultipleChoice = FormResponseValueAnswerBuilder<'multiple_choice', FormResponseAnswerMultipleChoiceValue>;
1644
1650
  export type FormResponseAnswerDropdown = FormResponseValueAnswerBuilder<'Dropdown', FormResponseAnswerMultipleChoiceValue>;
1645
1651
  export type FormResponseAnswerRanking = FormResponseValueAnswerBuilder<'ranking', FormResponseAnswerMultipleChoiceValue>;
1652
+ export type FormResponseAnswerHiddenValue = FormResponseValueAnswerBuilder<'Hidden Value', string>;
1646
1653
  export type FormResponseAnswerFileValue = {
1647
1654
  secureName: string;
1648
1655
  name: string;
@@ -1650,13 +1657,14 @@ export type FormResponseAnswerFileValue = {
1650
1657
  };
1651
1658
  export type FormResponseAnswerFile = FormResponseValueAnswerBuilder<'file', FormResponseAnswerFileValue>;
1652
1659
  export type FormResponseAnswerFiles = FormResponseValueAnswerBuilder<'files', FormResponseAnswerFileValue[]>;
1653
- export type FormResponseValueAnswer = (FormResponseAnswerGroup | FormResponseAnswerTable | FormResponseAnswerDescription | FormResponseAnswerEmail | FormResponseAnswerNumber | FormResponseAnswerPhone | FormResponseAnswerString | FormResponseAnswerStringLong | FormResponseAnswerSignature | FormResponseAnswerMultipleChoice | FormResponseAnswerFile | FormResponseAnswerFiles | FormResponseAnswerDate | FormResponseAnswerRating | FormResponseAnswerRanking | FormResponseAnswerDateString | FormResponseAnswerAddress | FormResponseAnswerTime | FormResponseAnswerStripe | FormResponseAnswerDropdown | FormResponseAnswerDatabaseSelect | FormResponseAnswerMedications | FormResponseAnswerRelatedContacts | FormResponseAnswerInsurance | FormResponseAnswerAppointmentBooking | FormResponseAnswerHeight | FormResponseAnswerRedirect);
1660
+ export type FormResponseValueAnswer = (FormResponseAnswerGroup | FormResponseAnswerTable | FormResponseAnswerDescription | FormResponseAnswerEmail | FormResponseAnswerNumber | FormResponseAnswerPhone | FormResponseAnswerString | FormResponseAnswerStringLong | FormResponseAnswerSignature | FormResponseAnswerMultipleChoice | FormResponseAnswerFile | FormResponseAnswerFiles | FormResponseAnswerDate | FormResponseAnswerRating | FormResponseAnswerRanking | FormResponseAnswerDateString | FormResponseAnswerAddress | FormResponseAnswerTime | FormResponseAnswerStripe | FormResponseAnswerDropdown | FormResponseAnswerDatabaseSelect | FormResponseAnswerMedications | FormResponseAnswerRelatedContacts | FormResponseAnswerInsurance | FormResponseAnswerAppointmentBooking | FormResponseAnswerHeight | FormResponseAnswerRedirect | FormResponseAnswerHiddenValue);
1654
1661
  export type FormResponseValue = {
1655
1662
  fieldId: string;
1656
1663
  fieldTitle: string;
1657
1664
  fieldDescription?: string;
1658
1665
  fieldHtmlDescription?: string;
1659
1666
  answer: FormResponseValueAnswer;
1667
+ answerIsHTML?: boolean;
1660
1668
  externalId?: string;
1661
1669
  sharedWithEnduser?: boolean;
1662
1670
  isCalledOut?: boolean;
@@ -1689,6 +1697,7 @@ export type AnswerForType = {
1689
1697
  'Appointment Booking': FormResponseAnswerAppointmentBooking['value'];
1690
1698
  'Height': FormResponseAnswerHeight['value'];
1691
1699
  'Redirect': FormResponseAnswerRedirect['value'];
1700
+ 'Hidden Value': FormResponseAnswerHiddenValue['value'];
1692
1701
  };
1693
1702
  export interface FormResponse_readonly extends ClientRecord {
1694
1703
  openedAt?: Date;
@@ -1877,6 +1886,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
1877
1886
  id: string;
1878
1887
  at: Date;
1879
1888
  }[];
1889
+ useUserURL?: boolean;
1880
1890
  }
1881
1891
  export type PaymentProcessor = 'Square' | 'Stripe';
1882
1892
  export interface Product_readonly extends ClientRecord {
@@ -1984,6 +1994,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
1984
1994
  canvasCoding?: CanvasCoding;
1985
1995
  tags?: string[];
1986
1996
  matchToHealthieTemplate?: boolean;
1997
+ useUserURL?: boolean;
1987
1998
  }
1988
1999
  export interface AppointmentLocation_readonly extends ClientRecord {
1989
2000
  }