@tellescope/types-models 1.113.0 → 1.115.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 +40 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +2 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +40 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +2 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +39 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export interface Organization_updatesDisabled {
|
|
|
251
251
|
subdomain: string;
|
|
252
252
|
}
|
|
253
253
|
export interface Organization extends Organization_readonly, Organization_required, Organization_updatesDisabled {
|
|
254
|
+
subdomains?: string[];
|
|
254
255
|
owner?: string;
|
|
255
256
|
timezone?: Timezone;
|
|
256
257
|
roles?: string[];
|
|
@@ -264,6 +265,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
264
265
|
customProviderURL?: string;
|
|
265
266
|
customTermsOfService?: string;
|
|
266
267
|
customPrivacyPolicy?: string;
|
|
268
|
+
requireCustomTermsOnMagicLink?: boolean;
|
|
267
269
|
settings?: OrganizationSettings;
|
|
268
270
|
portalSettings?: PortalSettings;
|
|
269
271
|
enduserDisplayName?: string;
|
|
@@ -344,6 +346,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
344
346
|
}[];
|
|
345
347
|
externalFormIdsToSync?: string[];
|
|
346
348
|
enforceMFA?: boolean;
|
|
349
|
+
analyticsIframes?: {
|
|
350
|
+
title: string;
|
|
351
|
+
iframeURL: string;
|
|
352
|
+
}[];
|
|
347
353
|
}
|
|
348
354
|
export type OrganizationTheme = {
|
|
349
355
|
name: string;
|
|
@@ -358,6 +364,7 @@ export type OrganizationTheme = {
|
|
|
358
364
|
portalSettings?: PortalSettings;
|
|
359
365
|
customTermsOfService?: string;
|
|
360
366
|
customPrivacyPolicy?: string;
|
|
367
|
+
requireCustomTermsOnMagicLink?: boolean;
|
|
361
368
|
};
|
|
362
369
|
export interface RecordInfo {
|
|
363
370
|
businessId: string;
|
|
@@ -450,6 +457,10 @@ export type UserCallRoutingBehavior = ('' | 'Assigned' | 'Unassigned' | 'All');
|
|
|
450
457
|
export type MFASettings = {
|
|
451
458
|
email?: boolean;
|
|
452
459
|
};
|
|
460
|
+
export type LabeledField = {
|
|
461
|
+
field: string;
|
|
462
|
+
value: string;
|
|
463
|
+
};
|
|
453
464
|
export interface User_readonly extends ClientRecord {
|
|
454
465
|
organization?: string;
|
|
455
466
|
username?: string;
|
|
@@ -521,6 +532,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
521
532
|
doseSpotUserId?: string;
|
|
522
533
|
url?: string;
|
|
523
534
|
requiresMFAConfiguration?: boolean;
|
|
535
|
+
templateFields?: LabeledField[];
|
|
524
536
|
}
|
|
525
537
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
526
538
|
export type CustomField = string | number | object | {
|
|
@@ -726,6 +738,8 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
726
738
|
frequency?: string;
|
|
727
739
|
};
|
|
728
740
|
notes?: string;
|
|
741
|
+
pharmacyName?: string;
|
|
742
|
+
orderStatus?: string;
|
|
729
743
|
}
|
|
730
744
|
export interface APIKey_readonly extends ClientRecord {
|
|
731
745
|
hashedKey: string;
|
|
@@ -868,6 +882,7 @@ export interface Journey extends Journey_readonly, Journey_required, Journey_upd
|
|
|
868
882
|
export interface TextCommunication extends WithLinkOpenTrackingIds {
|
|
869
883
|
automationStepId?: string;
|
|
870
884
|
templateId?: string;
|
|
885
|
+
calendarEventId?: string;
|
|
871
886
|
}
|
|
872
887
|
export type EmailEncoding = '' | 'base64';
|
|
873
888
|
export interface Email_readonly extends ClientRecord {
|
|
@@ -1387,6 +1402,7 @@ export interface FormField extends FormField_readonly, FormField_required, FormF
|
|
|
1387
1402
|
externalId?: string;
|
|
1388
1403
|
sharedWithEnduser?: boolean;
|
|
1389
1404
|
prepopulateFromFields?: boolean;
|
|
1405
|
+
disabledWhenPrepopulated?: boolean;
|
|
1390
1406
|
calloutConditions?: FormFieldCalloutCondition[];
|
|
1391
1407
|
feedback?: FormFieldFeedback[];
|
|
1392
1408
|
highlightOnTimeline?: boolean;
|
|
@@ -1676,6 +1692,7 @@ export type FormResponseValue = {
|
|
|
1676
1692
|
externalId?: string;
|
|
1677
1693
|
sharedWithEnduser?: boolean;
|
|
1678
1694
|
isCalledOut?: boolean;
|
|
1695
|
+
disabled?: boolean;
|
|
1679
1696
|
isHighlightedOnTimeline?: boolean;
|
|
1680
1697
|
computedValueKey?: 'Height' | 'Weight' | 'Date of Birth';
|
|
1681
1698
|
};
|
|
@@ -1895,6 +1912,8 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1895
1912
|
at: Date;
|
|
1896
1913
|
}[];
|
|
1897
1914
|
useUserURL?: boolean;
|
|
1915
|
+
healthieZoomStartURL?: string;
|
|
1916
|
+
healthieZoomJoinURL?: string;
|
|
1898
1917
|
}
|
|
1899
1918
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
1900
1919
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2558,7 +2577,7 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
2558
2577
|
}
|
|
2559
2578
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
2560
2579
|
}
|
|
2561
|
-
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking";
|
|
2580
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders";
|
|
2562
2581
|
type BuildPortalBlockInfo<T, I> = {
|
|
2563
2582
|
type: T;
|
|
2564
2583
|
info: I;
|
|
@@ -3748,6 +3767,22 @@ export interface FlowchartNote extends FlowchartNote_readonly, FlowchartNote_req
|
|
|
3748
3767
|
note: string;
|
|
3749
3768
|
flowchartUI?: FlowchartUI;
|
|
3750
3769
|
}
|
|
3770
|
+
export interface PortalBranding_readonly extends ClientRecord {
|
|
3771
|
+
}
|
|
3772
|
+
export interface PortalBranding_required {
|
|
3773
|
+
title: string;
|
|
3774
|
+
enduserField: string;
|
|
3775
|
+
enduserValue: string;
|
|
3776
|
+
}
|
|
3777
|
+
export interface PortalBranding_updatesDisabled {
|
|
3778
|
+
}
|
|
3779
|
+
export interface PortalBranding extends PortalBranding_readonly, PortalBranding_required, PortalBranding_updatesDisabled {
|
|
3780
|
+
primary?: string;
|
|
3781
|
+
secondary?: string;
|
|
3782
|
+
logoURL?: string;
|
|
3783
|
+
subdomain?: string;
|
|
3784
|
+
customPortalURL?: string;
|
|
3785
|
+
}
|
|
3751
3786
|
export interface WebhookLog_readonly extends ClientRecord {
|
|
3752
3787
|
url: string;
|
|
3753
3788
|
payload: object;
|
|
@@ -3761,6 +3796,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3761
3796
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3762
3797
|
}
|
|
3763
3798
|
export type ModelForName_required = {
|
|
3799
|
+
portal_brandings: PortalBranding_required;
|
|
3764
3800
|
form_groups: FormGroup_required;
|
|
3765
3801
|
webhook_logs: WebhookLog_required;
|
|
3766
3802
|
flowchart_notes: FlowchartNote_required;
|
|
@@ -3839,6 +3875,7 @@ export type ModelForName_required = {
|
|
|
3839
3875
|
};
|
|
3840
3876
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
3841
3877
|
export interface ModelForName_readonly {
|
|
3878
|
+
portal_brandings: PortalBranding_readonly;
|
|
3842
3879
|
form_groups: FormGroup_readonly;
|
|
3843
3880
|
webhook_logs: WebhookLog_readonly;
|
|
3844
3881
|
flowchart_notes: FlowchartNote_readonly;
|
|
@@ -3917,6 +3954,7 @@ export interface ModelForName_readonly {
|
|
|
3917
3954
|
}
|
|
3918
3955
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
3919
3956
|
export interface ModelForName_updatesDisabled {
|
|
3957
|
+
portal_brandings: PortalBranding_updatesDisabled;
|
|
3920
3958
|
form_groups: FormGroup_updatesDisabled;
|
|
3921
3959
|
webhook_logs: WebhookLog_updatesDisabled;
|
|
3922
3960
|
flowchart_notes: FlowchartNote_updatesDisabled;
|
|
@@ -3995,6 +4033,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
3995
4033
|
}
|
|
3996
4034
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
3997
4035
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4036
|
+
portal_brandings: PortalBranding;
|
|
3998
4037
|
form_groups: FormGroup;
|
|
3999
4038
|
webhook_logs: WebhookLog;
|
|
4000
4039
|
flowchart_notes: FlowchartNote;
|