@tellescope/types-models 1.102.0 → 1.103.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.
- package/lib/cjs/index.d.ts +19 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +19 -2
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +26 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -454,6 +454,8 @@ export interface User_updatesDisabled {
|
|
|
454
454
|
verifiedEmail: boolean;
|
|
455
455
|
}
|
|
456
456
|
export interface User extends User_required, User_readonly, User_updatesDisabled {
|
|
457
|
+
termsSigned?: Date;
|
|
458
|
+
termsVersion?: string;
|
|
457
459
|
externalId?: string;
|
|
458
460
|
phone?: string;
|
|
459
461
|
fname?: string;
|
|
@@ -603,6 +605,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
603
605
|
fname?: string;
|
|
604
606
|
mname?: string;
|
|
605
607
|
lname?: string;
|
|
608
|
+
suffix?: string;
|
|
606
609
|
journeys?: Indexable<string>;
|
|
607
610
|
scheduledJourneys?: ScheduledJourney[];
|
|
608
611
|
tags?: string[];
|
|
@@ -656,6 +659,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
656
659
|
salesforceId?: string;
|
|
657
660
|
athenaPracticeId?: string;
|
|
658
661
|
athenaDepartmentId?: string;
|
|
662
|
+
vitalTriggersDisabled?: boolean;
|
|
659
663
|
}
|
|
660
664
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
661
665
|
}
|
|
@@ -1319,6 +1323,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1319
1323
|
prefillSignature?: boolean;
|
|
1320
1324
|
includeGroupNumber?: boolean;
|
|
1321
1325
|
holdAppointmentMinutes?: number;
|
|
1326
|
+
rangeStepSize?: number;
|
|
1322
1327
|
};
|
|
1323
1328
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1324
1329
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -1471,6 +1476,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1471
1476
|
shouldCreateNotifications?: boolean;
|
|
1472
1477
|
disableEnduserAutoSync?: boolean;
|
|
1473
1478
|
disableTicketAutoSync?: boolean;
|
|
1479
|
+
pushCalendarDetails?: boolean;
|
|
1474
1480
|
redactExternalEvents?: boolean;
|
|
1475
1481
|
fhirClientId?: string;
|
|
1476
1482
|
fhirClientSecret?: string;
|
|
@@ -2201,6 +2207,10 @@ export type CreateTicketAssignmentStrategies = {
|
|
|
2201
2207
|
type: 'Recently-Booked Appointment Host';
|
|
2202
2208
|
info: {};
|
|
2203
2209
|
};
|
|
2210
|
+
'Form Submitter for Journey Trigger': {
|
|
2211
|
+
type: 'Form Submitter for Journey Trigger';
|
|
2212
|
+
info: {};
|
|
2213
|
+
};
|
|
2204
2214
|
'default': {
|
|
2205
2215
|
type: 'default';
|
|
2206
2216
|
info: {};
|
|
@@ -2838,7 +2848,10 @@ export type AnalyticsQueryFilterForType = {
|
|
|
2838
2848
|
};
|
|
2839
2849
|
"Purchases": {};
|
|
2840
2850
|
"Purchase Credits": {};
|
|
2841
|
-
"Tickets": {
|
|
2851
|
+
"Tickets": {
|
|
2852
|
+
titles?: string[];
|
|
2853
|
+
closeReasons?: string[];
|
|
2854
|
+
};
|
|
2842
2855
|
"Phone Calls": {};
|
|
2843
2856
|
"SMS Messages": {
|
|
2844
2857
|
direction?: string;
|
|
@@ -2880,7 +2893,9 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
2880
2893
|
Enduser: string;
|
|
2881
2894
|
};
|
|
2882
2895
|
"Tickets": {
|
|
2883
|
-
Owner
|
|
2896
|
+
Owner?: boolean;
|
|
2897
|
+
Title?: boolean;
|
|
2898
|
+
Outcome?: boolean;
|
|
2884
2899
|
} & EnduserGrouping & {
|
|
2885
2900
|
Enduser: string;
|
|
2886
2901
|
};
|
|
@@ -3090,6 +3105,7 @@ export type AutomationTriggerEvents = {
|
|
|
3090
3105
|
formId: string;
|
|
3091
3106
|
submitterType?: SessionType | 'Anyone';
|
|
3092
3107
|
publicIdentifier?: string;
|
|
3108
|
+
hasExpiredEvent?: boolean;
|
|
3093
3109
|
}, {}>;
|
|
3094
3110
|
'Form Unsubmitted': AutomationTriggerEventBuilder<"Form Unsubmitted", {
|
|
3095
3111
|
formId: string;
|
|
@@ -3416,6 +3432,7 @@ export interface TicketThreadComment_updatesDisabled {
|
|
|
3416
3432
|
}
|
|
3417
3433
|
export interface TicketThreadComment extends TicketThreadComment_readonly, TicketThreadComment_required, TicketThreadComment_updatesDisabled {
|
|
3418
3434
|
userId?: string;
|
|
3435
|
+
userDisplayName?: string;
|
|
3419
3436
|
type?: string;
|
|
3420
3437
|
attachments?: ChatAttachment[];
|
|
3421
3438
|
voice?: {
|