@tellescope/types-models 1.118.1 → 1.119.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.
@@ -1371,6 +1371,7 @@ export type FormFieldOptions = FormFieldValidation & {
1371
1371
  holdAppointmentMinutes?: number;
1372
1372
  rangeStepSize?: number;
1373
1373
  redirectFormId?: string;
1374
+ groupPadding?: number;
1374
1375
  };
1375
1376
  export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
1376
1377
  export type FormFieldCalloutConditionComparison = 'Equals';
@@ -1775,6 +1776,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1775
1776
  groupId?: string;
1776
1777
  groupInstance?: string;
1777
1778
  groupPosition?: number;
1779
+ utm?: LabeledField[];
1778
1780
  }
1779
1781
  export interface WebHook_readonly extends ClientRecord {
1780
1782
  }
@@ -1915,6 +1917,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
1915
1917
  useUserURL?: boolean;
1916
1918
  healthieZoomStartURL?: string;
1917
1919
  healthieZoomJoinURL?: string;
1920
+ instructions?: string;
1918
1921
  }
1919
1922
  export type PaymentProcessor = 'Square' | 'Stripe';
1920
1923
  export interface Product_readonly extends ClientRecord {
@@ -2023,6 +2026,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
2023
2026
  tags?: string[];
2024
2027
  matchToHealthieTemplate?: boolean;
2025
2028
  useUserURL?: boolean;
2029
+ instructions?: string;
2026
2030
  }
2027
2031
  export interface AppointmentLocation_readonly extends ClientRecord {
2028
2032
  }
@@ -2033,6 +2037,7 @@ export interface AppointmentLocation_updatesDisabled {
2033
2037
  }
2034
2038
  export interface AppointmentLocation extends AppointmentLocation_readonly, AppointmentLocation_required, AppointmentLocation_updatesDisabled {
2035
2039
  address?: string;
2040
+ city?: string;
2036
2041
  zipCode?: string;
2037
2042
  state?: string;
2038
2043
  phone?: string;
@@ -2041,6 +2046,7 @@ export interface AppointmentLocation extends AppointmentLocation_readonly, Appoi
2041
2046
  healthieContactType?: string;
2042
2047
  healthieLocationId?: string;
2043
2048
  healthieUseZoom?: boolean;
2049
+ instructions?: string;
2044
2050
  }
2045
2051
  export type AppointmentTerm = {
2046
2052
  title: string;
@@ -2370,6 +2376,9 @@ export type SmartMeterPlaceOrderAutomationAction = AutomationActionBuilder<'smar
2370
2376
  shipping?: string;
2371
2377
  }>;
2372
2378
  export type HealthieSyncAutomationAction = AutomationActionBuilder<'healthieSync', {}>;
2379
+ export type HealthieAddToCourseAutomationAction = AutomationActionBuilder<'healthieAddToCourse', {
2380
+ courseId: string;
2381
+ }>;
2373
2382
  export type CompleteTicketsAutomationAction = AutomationActionBuilder<'completeTickets', {
2374
2383
  journeyIds?: string[];
2375
2384
  }>;
@@ -2424,6 +2433,7 @@ export type AutomationActionForType = {
2424
2433
  'pagerDutyCreateIncident': PagerDutyCreateIncidentAutomationAction;
2425
2434
  'smartMeterPlaceOrder': SmartMeterPlaceOrderAutomationAction;
2426
2435
  'healthieSync': HealthieSyncAutomationAction;
2436
+ healthieAddToCourse: HealthieAddToCourseAutomationAction;
2427
2437
  'completeTickets': CompleteTicketsAutomationAction;
2428
2438
  'changeContactType': ChangeContactTypeAutomationAction;
2429
2439
  };
@@ -3566,6 +3576,7 @@ export interface TicketQueue extends TicketQueue_readonly, TicketQueue_required,
3566
3576
  type?: string;
3567
3577
  defaultFromNumber?: string;
3568
3578
  enduserFields?: string[];
3579
+ lastRefreshedCountAt?: Date;
3569
3580
  }
3570
3581
  export interface EnduserOrder_readonly extends ClientRecord {
3571
3582
  }