@tellescope/types-models 1.126.0 → 1.127.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.
@@ -1822,8 +1822,20 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
1822
1822
  groupPosition?: number;
1823
1823
  utm?: LabeledField[];
1824
1824
  emotii?: {
1825
- id?: string;
1826
- scores?: any;
1825
+ id: string;
1826
+ scores: {
1827
+ total: {
1828
+ score: number;
1829
+ relative: number;
1830
+ percentile: number;
1831
+ };
1832
+ byAnswer: {
1833
+ label: string;
1834
+ score: number;
1835
+ relative: number;
1836
+ percentile: number;
1837
+ }[];
1838
+ };
1827
1839
  }[];
1828
1840
  }
1829
1841
  export interface WebHook_readonly extends ClientRecord {
@@ -3392,6 +3404,15 @@ export type AutomationTriggerEvents = {
3392
3404
  groupId: string;
3393
3405
  intervalInMS: number;
3394
3406
  }, {}>;
3407
+ 'Message Opened': AutomationTriggerEventBuilder<"Message Opened", {
3408
+ templateIds?: string[];
3409
+ }, {}>;
3410
+ 'Message Link Clicked': AutomationTriggerEventBuilder<"Message Link Clicked", {
3411
+ templateIds?: string[];
3412
+ }, {}>;
3413
+ 'Healthie Note Locked': AutomationTriggerEventBuilder<"Healthie Note Locked", {
3414
+ healthieFormIds?: string[];
3415
+ }, {}>;
3395
3416
  };
3396
3417
  export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
3397
3418
  export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
@@ -4285,6 +4306,8 @@ export type JourneyContext = {
4285
4306
  smsId?: string;
4286
4307
  formGroupId?: string;
4287
4308
  publicIdentifier?: string;
4309
+ chatId?: string;
4310
+ emailId?: string;
4288
4311
  };
4289
4312
  export declare const TIMEZONE_MAP: {
4290
4313
  readonly "Africa/Abidjan": "+00:00";