@tellescope/types-models 1.193.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 +9 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +9 -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 +9 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -345,6 +345,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
345
345
|
hasConnectedEmotii?: boolean;
|
|
346
346
|
hasConnectedDevelopHealth?: boolean;
|
|
347
347
|
hasConnectedCustomerIO?: boolean;
|
|
348
|
+
hasConnectedSuperDial?: boolean;
|
|
348
349
|
hasConfiguredZoom?: boolean;
|
|
349
350
|
hasTicketQueues?: boolean;
|
|
350
351
|
vitalTeamId?: string;
|
|
@@ -695,6 +696,10 @@ export type EnduserDiagnosis = {
|
|
|
695
696
|
source?: string;
|
|
696
697
|
references?: RelatedRecord[];
|
|
697
698
|
};
|
|
699
|
+
export type RecentViewer = {
|
|
700
|
+
id: string;
|
|
701
|
+
at: Date;
|
|
702
|
+
};
|
|
698
703
|
export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
|
|
699
704
|
export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
|
|
700
705
|
lastCommunication?: Date;
|
|
@@ -715,6 +720,7 @@ export interface Enduser_updatesDisabled {
|
|
|
715
720
|
references?: RelatedRecord[];
|
|
716
721
|
}
|
|
717
722
|
export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_updatesDisabled {
|
|
723
|
+
recentViewers?: RecentViewer[];
|
|
718
724
|
healthie_dietitian_id?: string;
|
|
719
725
|
unsubscribePhone?: boolean;
|
|
720
726
|
externalId?: string;
|
|
@@ -799,6 +805,8 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
799
805
|
chargebeeEnvironment?: string;
|
|
800
806
|
chargebeeId?: string;
|
|
801
807
|
healthieSyncError?: string;
|
|
808
|
+
lastSuperdialEligibilityCheckAt?: Date;
|
|
809
|
+
superdialEligibilityResponse?: string;
|
|
802
810
|
}
|
|
803
811
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
804
812
|
}
|
|
@@ -1581,6 +1589,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1581
1589
|
chargebeePlanId?: string;
|
|
1582
1590
|
chargebeeItemId?: string;
|
|
1583
1591
|
relatedContactTypes?: string[];
|
|
1592
|
+
radioChoices?: string[];
|
|
1584
1593
|
};
|
|
1585
1594
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1586
1595
|
export type FormFieldCalloutConditionComparison = 'Equals';
|