@tellescope/types-models 1.154.0 → 1.156.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.
@@ -191,6 +191,7 @@ export type OrganizationSettings = {
191
191
  requireDueDate?: boolean;
192
192
  allowArchival?: boolean;
193
193
  returnToTicketsList?: boolean;
194
+ dontAddToCareTeamOnTicketAssignment?: boolean;
194
195
  };
195
196
  calendar?: {
196
197
  dayStart?: {
@@ -795,6 +796,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
795
796
  pharmacyName?: string;
796
797
  pharmacyId?: string;
797
798
  orderStatus?: string;
799
+ reasonForTaking?: string;
798
800
  }
799
801
  export interface APIKey_readonly extends ClientRecord {
800
802
  hashedKey: string;
@@ -1524,6 +1526,7 @@ export type FormCustomization = {
1524
1526
  hideLogo?: boolean;
1525
1527
  multiPagePublicQuestions?: boolean;
1526
1528
  hideBg?: boolean;
1529
+ portalShowThanksAfterSubmission?: boolean;
1527
1530
  };
1528
1531
  export interface Form_readonly extends ClientRecord {
1529
1532
  numFields: number;
@@ -1995,6 +1998,10 @@ export type EnduserFormResponseForEvent = {
1995
1998
  enduserId: string;
1996
1999
  accessCode: string;
1997
2000
  };
2001
+ export type GroupCancellation = {
2002
+ at: Date;
2003
+ id: string;
2004
+ };
1998
2005
  export interface CalendarEventPortalSettings {
1999
2006
  hideUsers?: boolean;
2000
2007
  }
@@ -2069,10 +2076,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2069
2076
  holdUntil?: Date;
2070
2077
  holdFormResponseId?: string;
2071
2078
  tags?: string[];
2072
- cancelledGroupAttendees?: {
2073
- id: string;
2074
- at: Date;
2075
- }[];
2079
+ cancelledGroupAttendees?: GroupCancellation[];
2076
2080
  useUserURL?: boolean;
2077
2081
  healthieZoomStartURL?: string;
2078
2082
  healthieZoomJoinURL?: string;
@@ -2087,6 +2091,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
2087
2091
  displayDescription?: string;
2088
2092
  dontBlockAvailability?: boolean;
2089
2093
  previousStartTimes?: (number | string)[];
2094
+ requirePortalCancelReason?: boolean;
2090
2095
  }
2091
2096
  export type PaymentProcessor = 'Square' | 'Stripe';
2092
2097
  export interface Product_readonly extends ClientRecord {
@@ -2205,6 +2210,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
2205
2210
  displayTitle?: string;
2206
2211
  displayDescription?: string;
2207
2212
  requiresEnduser?: boolean;
2213
+ requirePortalCancelReason?: boolean;
2208
2214
  }
2209
2215
  export interface AppointmentLocation_readonly extends ClientRecord {
2210
2216
  }
@@ -2282,6 +2288,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
2282
2288
  publicUserTags?: string[];
2283
2289
  publicUserFilterTags?: string[];
2284
2290
  appointmentSlotsMaxHeight?: number;
2291
+ includeRelatedContactTypes?: string[];
2285
2292
  }
2286
2293
  export interface CalendarEventRSVP_readonly extends ClientRecord {
2287
2294
  creatorType: SessionType;
@@ -3332,6 +3339,7 @@ export declare const resource_to_modelName: {
3332
3339
  export type AnalyticsQueryOptions = {
3333
3340
  createdRange?: DateRange;
3334
3341
  updatedRange?: DateRange;
3342
+ overrideGlobalRange?: boolean;
3335
3343
  groupByCareTeam?: boolean;
3336
3344
  };
3337
3345
  export type AnalyticsFrameGroupingCategory = {
@@ -3621,6 +3629,9 @@ export type AutomationTriggerEvents = {
3621
3629
  'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
3622
3630
  databaseId: string;
3623
3631
  }, {}>;
3632
+ 'Form Started': AutomationTriggerEventBuilder<"Form Started", {
3633
+ formIds?: string[];
3634
+ }, {}>;
3624
3635
  };
3625
3636
  export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
3626
3637
  export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
@@ -4220,7 +4231,22 @@ export interface AllergyCode_updatesDisabled {
4220
4231
  }
4221
4232
  export interface AllergyCode extends AllergyCode_readonly, AllergyCode_required, AllergyCode_updatesDisabled {
4222
4233
  }
4234
+ export interface IntegrationLog_readonly extends ClientRecord {
4235
+ integration: string;
4236
+ status: "Success" | "Error";
4237
+ type: string;
4238
+ url?: string;
4239
+ payload?: string;
4240
+ response?: string;
4241
+ }
4242
+ export interface IntegrationLog_required {
4243
+ }
4244
+ export interface IntegrationLog_updatesDisabled {
4245
+ }
4246
+ export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
4247
+ }
4223
4248
  export type ModelForName_required = {
4249
+ integration_logs: IntegrationLog_required;
4224
4250
  allergy_codes: AllergyCode_required;
4225
4251
  diagnosis_codes: DiagnosisCode_required;
4226
4252
  suggested_contacts: SuggestedContact_required;
@@ -4306,6 +4332,7 @@ export type ModelForName_required = {
4306
4332
  };
4307
4333
  export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
4308
4334
  export interface ModelForName_readonly {
4335
+ integration_logs: IntegrationLog_readonly;
4309
4336
  allergy_codes: AllergyCode_readonly;
4310
4337
  diagnosis_codes: DiagnosisCode_readonly;
4311
4338
  suggested_contacts: SuggestedContact_readonly;
@@ -4391,6 +4418,7 @@ export interface ModelForName_readonly {
4391
4418
  }
4392
4419
  export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
4393
4420
  export interface ModelForName_updatesDisabled {
4421
+ integration_logs: IntegrationLog_updatesDisabled;
4394
4422
  allergy_codes: AllergyCode_updatesDisabled;
4395
4423
  diagnosis_codes: DiagnosisCode_updatesDisabled;
4396
4424
  suggested_contacts: SuggestedContact_updatesDisabled;
@@ -4476,6 +4504,7 @@ export interface ModelForName_updatesDisabled {
4476
4504
  }
4477
4505
  export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
4478
4506
  export interface ModelForName extends ModelForName_required, ModelForName_readonly {
4507
+ integration_logs: IntegrationLog;
4479
4508
  allergy_codes: AllergyCode;
4480
4509
  diagnosis_codes: DiagnosisCode;
4481
4510
  suggested_contacts: SuggestedContact;