@tellescope/types-models 1.192.0 → 1.194.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 +14 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -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 +3 -3
- package/src/index.ts +14 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -315,6 +315,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
315
315
|
customProviderURL?: string;
|
|
316
316
|
customTermsOfService?: string;
|
|
317
317
|
customPrivacyPolicy?: string;
|
|
318
|
+
customPoliciesVersion?: string;
|
|
318
319
|
requireCustomTermsOnMagicLink?: boolean;
|
|
319
320
|
settings?: OrganizationSettings;
|
|
320
321
|
portalSettings?: PortalSettings;
|
|
@@ -344,6 +345,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
344
345
|
hasConnectedEmotii?: boolean;
|
|
345
346
|
hasConnectedDevelopHealth?: boolean;
|
|
346
347
|
hasConnectedCustomerIO?: boolean;
|
|
348
|
+
hasConnectedSuperDial?: boolean;
|
|
347
349
|
hasConfiguredZoom?: boolean;
|
|
348
350
|
hasTicketQueues?: boolean;
|
|
349
351
|
vitalTeamId?: string;
|
|
@@ -440,6 +442,7 @@ export type OrganizationTheme = {
|
|
|
440
442
|
};
|
|
441
443
|
customTermsOfService?: string;
|
|
442
444
|
customPrivacyPolicy?: string;
|
|
445
|
+
customPoliciesVersion?: string;
|
|
443
446
|
requireCustomTermsOnMagicLink?: boolean;
|
|
444
447
|
};
|
|
445
448
|
export interface RecordInfo {
|
|
@@ -693,6 +696,10 @@ export type EnduserDiagnosis = {
|
|
|
693
696
|
source?: string;
|
|
694
697
|
references?: RelatedRecord[];
|
|
695
698
|
};
|
|
699
|
+
export type RecentViewer = {
|
|
700
|
+
id: string;
|
|
701
|
+
at: Date;
|
|
702
|
+
};
|
|
696
703
|
export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
|
|
697
704
|
export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
|
|
698
705
|
lastCommunication?: Date;
|
|
@@ -713,6 +720,7 @@ export interface Enduser_updatesDisabled {
|
|
|
713
720
|
references?: RelatedRecord[];
|
|
714
721
|
}
|
|
715
722
|
export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_updatesDisabled {
|
|
723
|
+
recentViewers?: RecentViewer[];
|
|
716
724
|
healthie_dietitian_id?: string;
|
|
717
725
|
unsubscribePhone?: boolean;
|
|
718
726
|
externalId?: string;
|
|
@@ -797,6 +805,8 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
797
805
|
chargebeeEnvironment?: string;
|
|
798
806
|
chargebeeId?: string;
|
|
799
807
|
healthieSyncError?: string;
|
|
808
|
+
lastSuperdialEligibilityCheckAt?: Date;
|
|
809
|
+
superdialEligibilityResponse?: string;
|
|
800
810
|
}
|
|
801
811
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
802
812
|
}
|
|
@@ -1066,6 +1076,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
1066
1076
|
markedUnreadForAll?: boolean;
|
|
1067
1077
|
inboxStatus?: string;
|
|
1068
1078
|
relatedContactId?: string;
|
|
1079
|
+
copyOf?: string;
|
|
1069
1080
|
}
|
|
1070
1081
|
export interface SMSMessage_readonly extends ClientRecord {
|
|
1071
1082
|
delivered: boolean;
|
|
@@ -1124,6 +1135,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1124
1135
|
markedUnreadForAll?: boolean;
|
|
1125
1136
|
inboxStatus?: string;
|
|
1126
1137
|
relatedContactId?: string;
|
|
1138
|
+
copyOf?: string;
|
|
1127
1139
|
}
|
|
1128
1140
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1129
1141
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1577,6 +1589,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1577
1589
|
chargebeePlanId?: string;
|
|
1578
1590
|
chargebeeItemId?: string;
|
|
1579
1591
|
relatedContactTypes?: string[];
|
|
1592
|
+
radioChoices?: string[];
|
|
1580
1593
|
};
|
|
1581
1594
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1582
1595
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -1702,6 +1715,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1702
1715
|
}[];
|
|
1703
1716
|
hideAfterUnsubmittedInMS?: number;
|
|
1704
1717
|
hideFromCompose?: boolean;
|
|
1718
|
+
hideFromBulkSubmission?: boolean;
|
|
1705
1719
|
enduserFieldsToAppendForSync?: string[];
|
|
1706
1720
|
allowPortalSubmission?: boolean;
|
|
1707
1721
|
canvasNoteCoding?: Partial<CanvasCoding>;
|