@tellescope/types-models 1.112.0 → 1.114.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 +21 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +21 -0
- 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 +19 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -264,6 +264,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
264
264
|
customProviderURL?: string;
|
|
265
265
|
customTermsOfService?: string;
|
|
266
266
|
customPrivacyPolicy?: string;
|
|
267
|
+
requireCustomTermsOnMagicLink?: boolean;
|
|
267
268
|
settings?: OrganizationSettings;
|
|
268
269
|
portalSettings?: PortalSettings;
|
|
269
270
|
enduserDisplayName?: string;
|
|
@@ -344,6 +345,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
344
345
|
}[];
|
|
345
346
|
externalFormIdsToSync?: string[];
|
|
346
347
|
enforceMFA?: boolean;
|
|
348
|
+
analyticsIframes?: {
|
|
349
|
+
title: string;
|
|
350
|
+
iframeURL: string;
|
|
351
|
+
}[];
|
|
347
352
|
}
|
|
348
353
|
export type OrganizationTheme = {
|
|
349
354
|
name: string;
|
|
@@ -358,6 +363,7 @@ export type OrganizationTheme = {
|
|
|
358
363
|
portalSettings?: PortalSettings;
|
|
359
364
|
customTermsOfService?: string;
|
|
360
365
|
customPrivacyPolicy?: string;
|
|
366
|
+
requireCustomTermsOnMagicLink?: boolean;
|
|
361
367
|
};
|
|
362
368
|
export interface RecordInfo {
|
|
363
369
|
businessId: string;
|
|
@@ -450,6 +456,10 @@ export type UserCallRoutingBehavior = ('' | 'Assigned' | 'Unassigned' | 'All');
|
|
|
450
456
|
export type MFASettings = {
|
|
451
457
|
email?: boolean;
|
|
452
458
|
};
|
|
459
|
+
export type LabeledField = {
|
|
460
|
+
field: string;
|
|
461
|
+
value: string;
|
|
462
|
+
};
|
|
453
463
|
export interface User_readonly extends ClientRecord {
|
|
454
464
|
organization?: string;
|
|
455
465
|
username?: string;
|
|
@@ -521,6 +531,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
521
531
|
doseSpotUserId?: string;
|
|
522
532
|
url?: string;
|
|
523
533
|
requiresMFAConfiguration?: boolean;
|
|
534
|
+
templateFields?: LabeledField[];
|
|
524
535
|
}
|
|
525
536
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
526
537
|
export type CustomField = string | number | object | {
|
|
@@ -726,6 +737,8 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
726
737
|
frequency?: string;
|
|
727
738
|
};
|
|
728
739
|
notes?: string;
|
|
740
|
+
pharmacyName?: string;
|
|
741
|
+
orderStatus?: string;
|
|
729
742
|
}
|
|
730
743
|
export interface APIKey_readonly extends ClientRecord {
|
|
731
744
|
hashedKey: string;
|
|
@@ -868,6 +881,7 @@ export interface Journey extends Journey_readonly, Journey_required, Journey_upd
|
|
|
868
881
|
export interface TextCommunication extends WithLinkOpenTrackingIds {
|
|
869
882
|
automationStepId?: string;
|
|
870
883
|
templateId?: string;
|
|
884
|
+
calendarEventId?: string;
|
|
871
885
|
}
|
|
872
886
|
export type EmailEncoding = '' | 'base64';
|
|
873
887
|
export interface Email_readonly extends ClientRecord {
|
|
@@ -1387,6 +1401,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
1387
1401
|
externalId?: string;
|
|
1388
1402
|
sharedWithEnduser?: boolean;
|
|
1389
1403
|
prepopulateFromFields?: boolean;
|
|
1404
|
+
disabledWhenPrepopulated?: boolean;
|
|
1390
1405
|
calloutConditions?: FormFieldCalloutCondition[];
|
|
1391
1406
|
feedback?: FormFieldFeedback[];
|
|
1392
1407
|
highlightOnTimeline?: boolean;
|
|
@@ -1435,6 +1450,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1435
1450
|
intakeDateOfBirth?: 'required' | 'optional' | 'hidden';
|
|
1436
1451
|
intakeState?: 'required' | 'optional' | 'hidden';
|
|
1437
1452
|
intakeGender?: 'required' | 'optional' | 'hidden';
|
|
1453
|
+
intakeGenderIsSex?: boolean;
|
|
1438
1454
|
thanksMessage?: string;
|
|
1439
1455
|
htmlThanksMessage?: string;
|
|
1440
1456
|
type?: FormType;
|
|
@@ -1675,6 +1691,7 @@ export type FormResponseValue = {
|
|
|
1675
1691
|
externalId?: string;
|
|
1676
1692
|
sharedWithEnduser?: boolean;
|
|
1677
1693
|
isCalledOut?: boolean;
|
|
1694
|
+
disabled?: boolean;
|
|
1678
1695
|
isHighlightedOnTimeline?: boolean;
|
|
1679
1696
|
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth';
|
|
1680
1697
|
};
|
|
@@ -1894,6 +1911,8 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1894
1911
|
at: Date;
|
|
1895
1912
|
}[];
|
|
1896
1913
|
useUserURL?: boolean;
|
|
1914
|
+
healthieZoomStartURL?: string;
|
|
1915
|
+
healthieZoomJoinURL?: string;
|
|
1897
1916
|
}
|
|
1898
1917
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
1899
1918
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2234,6 +2253,7 @@ interface AutomationActionBuilder<T extends string, V extends object> {
|
|
|
2234
2253
|
}
|
|
2235
2254
|
export type AssignToQueueInfo = {
|
|
2236
2255
|
queueId: string;
|
|
2256
|
+
tags?: ListOfStringsWithQualifier;
|
|
2237
2257
|
};
|
|
2238
2258
|
export type CreateTicketAssignmentStrategies = {
|
|
2239
2259
|
'care-team-random': {
|
|
@@ -2883,6 +2903,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
2883
2903
|
fields?: {
|
|
2884
2904
|
key: string;
|
|
2885
2905
|
value: string;
|
|
2906
|
+
operator?: string;
|
|
2886
2907
|
range?: DateRange | '';
|
|
2887
2908
|
}[];
|
|
2888
2909
|
gender?: TellescopeGender;
|