@tellescope/types-models 1.177.0 → 1.178.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.
@@ -323,6 +323,7 @@ export interface Organization extends Organization_readonly, Organization_requir
323
323
  hasConnectedDocsumo?: boolean;
324
324
  hasConnectedEmotii?: boolean;
325
325
  hasConnectedDevelopHealth?: boolean;
326
+ hasConnectedCustomerIO?: boolean;
326
327
  hasConfiguredZoom?: boolean;
327
328
  hasTicketQueues?: boolean;
328
329
  vitalTeamId?: string;
@@ -1394,6 +1395,8 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
1394
1395
  pinnedAt?: Date | '';
1395
1396
  tags?: string[];
1396
1397
  discussionRoomId?: string;
1398
+ source?: string;
1399
+ externalId?: string;
1397
1400
  }
1398
1401
  export type FormFieldLiteralType = 'Rich Text' | 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
1399
1402
  export type FormFieldComplexType = "Conditions" | "Allergies" | "Emotii" | "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Chargebee" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
@@ -2761,6 +2764,11 @@ export type EnduserFieldSetter = {
2761
2764
  export type SetEnduserFieldsAutomationAction = AutomationActionBuilder<'setEnduserFields', {
2762
2765
  fields: EnduserFieldSetter[];
2763
2766
  }>;
2767
+ export type CustomerIOIdentifyAction = AutomationActionBuilder<'customerIOIdentify', {}>;
2768
+ export type CustomerIOTrackAction = AutomationActionBuilder<'customerIOTrack', {
2769
+ event: string;
2770
+ trackProperties?: string[];
2771
+ }>;
2764
2772
  export type AutomationConditionType = 'atJourneyState';
2765
2773
  export type AutomationConditionBuilder<T extends AutomationConditionType, V extends object> = {
2766
2774
  type: T;
@@ -2806,6 +2814,8 @@ export type AutomationActionForType = {
2806
2814
  pushFormsToPortal: PushFormsAutomationAction;
2807
2815
  developHealthMedEligibility: DevelopHealthMedicationEligibilityAutomationAction;
2808
2816
  cancelFutureAppointments: CancelFutureAppointmentsAutomationAction;
2817
+ customerIOIdentify: CustomerIOIdentifyAction;
2818
+ customerIOTrack: CustomerIOTrackAction;
2809
2819
  };
2810
2820
  export type AutomationActionType = keyof AutomationActionForType;
2811
2821
  export type AutomationAction = AutomationActionForType[AutomationActionType];