@tellescope/types-models 1.185.2 → 1.187.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.
@@ -199,6 +199,7 @@ export type OrganizationSettings = {
199
199
  detailField?: string;
200
200
  showDownloadCallRecordings?: boolean;
201
201
  launchDosespotWebhookURL?: string;
202
+ reverseTimeline?: boolean;
202
203
  };
203
204
  tickets?: {
204
205
  defaultJourneyDueDateOffsetInMS?: number | '';
@@ -3061,6 +3062,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
3061
3062
  activeIconURL?: string;
3062
3063
  showStripePortalLink?: boolean;
3063
3064
  hideCancellatation?: boolean;
3065
+ hideReschedule?: boolean;
3064
3066
  hiddenEventTitles?: string[];
3065
3067
  hiddenFormIds?: string[];
3066
3068
  }
@@ -3786,6 +3788,9 @@ export type AutomationTriggerEvents = {
3786
3788
  field: string;
3787
3789
  value: string;
3788
3790
  }, {}>;
3791
+ 'Tag Added': AutomationTriggerEventBuilder<"Tag Added", {
3792
+ tag: string;
3793
+ }, {}>;
3789
3794
  'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {}, {}>;
3790
3795
  'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
3791
3796
  titles?: string[];
@@ -3844,6 +3849,7 @@ export type AutomationTriggerEvents = {
3844
3849
  }, {}>;
3845
3850
  'Order Created': AutomationTriggerEventBuilder<"Order Created", {
3846
3851
  titles?: string[];
3852
+ fills?: string[];
3847
3853
  partialFrequency?: string;
3848
3854
  }, {}>;
3849
3855
  'Problem Created': AutomationTriggerEventBuilder<"Problem Created", {
@@ -4218,14 +4224,14 @@ export interface EnduserOrder_readonly extends ClientRecord {
4218
4224
  export interface EnduserOrder_updatesDisabled {
4219
4225
  }
4220
4226
  export interface EnduserOrder_required {
4221
- }
4222
- export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_required, EnduserOrder_updatesDisabled {
4223
4227
  externalId: string;
4224
4228
  source: string;
4225
4229
  title: string;
4226
- description?: string;
4227
4230
  status: string;
4228
4231
  enduserId: string;
4232
+ }
4233
+ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_required, EnduserOrder_updatesDisabled {
4234
+ description?: string;
4229
4235
  userId?: string;
4230
4236
  error?: string;
4231
4237
  items?: {
@@ -4237,6 +4243,7 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
4237
4243
  shippedDate?: string;
4238
4244
  frequency?: string;
4239
4245
  activateBy?: string;
4246
+ fill?: string;
4240
4247
  }
4241
4248
  export interface EnduserProblem_readonly extends ClientRecord {
4242
4249
  }