@tellescope/types-models 1.226.0 → 1.227.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 +37 -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 +37 -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 +3 -3
- package/src/index.ts +47 -6
package/lib/cjs/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export type PortalSettings = {
|
|
|
82
82
|
loginTitle?: string;
|
|
83
83
|
loginDescription?: string;
|
|
84
84
|
loginGraphic?: string;
|
|
85
|
+
loginBottomHTML?: string;
|
|
85
86
|
registerTitle?: string;
|
|
86
87
|
registerDescription?: string;
|
|
87
88
|
registerGraphic?: string;
|
|
@@ -386,6 +387,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
386
387
|
hasConnectedSuperDial?: boolean;
|
|
387
388
|
hasConnectedBeluga?: boolean;
|
|
388
389
|
hasConnectedMetriport?: boolean;
|
|
390
|
+
hasConnectedPaubox?: boolean;
|
|
389
391
|
hasConfiguredZoom?: boolean;
|
|
390
392
|
hasTicketQueues?: boolean;
|
|
391
393
|
vitalTeamId?: string;
|
|
@@ -471,6 +473,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
471
473
|
creditTrialStartedAt?: Date;
|
|
472
474
|
hasIntegrations?: string[];
|
|
473
475
|
outOfOfficeHours?: OutOfOfficeBlock[];
|
|
476
|
+
skipActivePatientBilling?: boolean;
|
|
474
477
|
}
|
|
475
478
|
export type OrganizationTheme = {
|
|
476
479
|
name: string;
|
|
@@ -601,6 +604,7 @@ export interface User_readonly extends ClientRecord {
|
|
|
601
604
|
organization?: string;
|
|
602
605
|
username?: string;
|
|
603
606
|
orgEmail?: string;
|
|
607
|
+
pauboxEmail?: string;
|
|
604
608
|
lastActive?: Date;
|
|
605
609
|
lastLogout?: Date;
|
|
606
610
|
isa?: boolean;
|
|
@@ -1604,12 +1608,17 @@ export type FormFieldFeedback = {
|
|
|
1604
1608
|
ifEquals: string;
|
|
1605
1609
|
display: string;
|
|
1606
1610
|
};
|
|
1611
|
+
export type FormFieldOptionDetails = {
|
|
1612
|
+
option: string;
|
|
1613
|
+
description?: string;
|
|
1614
|
+
};
|
|
1607
1615
|
export interface CanvasConsentCategory extends CanvasCoding {
|
|
1608
1616
|
}
|
|
1609
1617
|
export type FormFieldOptions = FormFieldValidation & {
|
|
1610
1618
|
default?: string;
|
|
1611
1619
|
tableChoices?: TableInputChoice[];
|
|
1612
1620
|
choices?: string[];
|
|
1621
|
+
optionDetails?: FormFieldOptionDetails[];
|
|
1613
1622
|
canvasCodings?: CanvasCoding[];
|
|
1614
1623
|
from?: number;
|
|
1615
1624
|
to?: number;
|
|
@@ -1627,6 +1636,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1627
1636
|
databaseId?: string;
|
|
1628
1637
|
databaseLabel?: string;
|
|
1629
1638
|
databaseLabels?: string[];
|
|
1639
|
+
filterByEnduserState?: boolean;
|
|
1630
1640
|
databaseFilter?: {
|
|
1631
1641
|
fieldId?: string;
|
|
1632
1642
|
databaseLabel?: string;
|
|
@@ -1658,6 +1668,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1658
1668
|
groupPadding?: number;
|
|
1659
1669
|
saveIntakeOnPartial?: boolean;
|
|
1660
1670
|
stripeKey?: string;
|
|
1671
|
+
stripeProductSelectionMode?: boolean;
|
|
1661
1672
|
dataSource?: string;
|
|
1662
1673
|
canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
|
|
1663
1674
|
canvasDocumentType?: CanvasCoding;
|
|
@@ -1678,7 +1689,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1678
1689
|
elationAppendToNote?: boolean;
|
|
1679
1690
|
elationAppendToNotePrefix?: string;
|
|
1680
1691
|
};
|
|
1681
|
-
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1692
|
+
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other' | 'optionDetails' | 'radioChoices'>;
|
|
1682
1693
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
1683
1694
|
export type FormFieldCalloutCondition = {
|
|
1684
1695
|
comparison: FormFieldCalloutConditionComparison;
|
|
@@ -1959,6 +1970,7 @@ export interface Database_updatesDisabled {
|
|
|
1959
1970
|
}
|
|
1960
1971
|
export interface Database extends Database_readonly, Database_required, Database_updatesDisabled {
|
|
1961
1972
|
visibleForRoles?: string[];
|
|
1973
|
+
isReferralDatabase?: boolean;
|
|
1962
1974
|
}
|
|
1963
1975
|
export interface DatabaseRecord_readonly extends ClientRecord {
|
|
1964
1976
|
}
|
|
@@ -2143,6 +2155,7 @@ export interface FormResponse_required {
|
|
|
2143
2155
|
publicSubmit?: boolean;
|
|
2144
2156
|
submittedBy?: string;
|
|
2145
2157
|
submittedByIsPlaceholder?: boolean;
|
|
2158
|
+
markedAsSubmitted?: boolean;
|
|
2146
2159
|
submittedAt?: Date;
|
|
2147
2160
|
accessCode?: string;
|
|
2148
2161
|
userEmail?: string;
|
|
@@ -2405,6 +2418,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2405
2418
|
preventRescheduleMinutesInAdvance?: number;
|
|
2406
2419
|
preventCancelMinutesInAdvance?: number;
|
|
2407
2420
|
sendIcsEmail?: boolean;
|
|
2421
|
+
healthieInsuranceBillingEnabled?: boolean;
|
|
2408
2422
|
}
|
|
2409
2423
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2410
2424
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2538,6 +2552,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2538
2552
|
generateAthenaTelehealthLink?: boolean;
|
|
2539
2553
|
athenaTypeId?: string;
|
|
2540
2554
|
athenaBookingTypeId?: string;
|
|
2555
|
+
healthieInsuranceBillingEnabled?: boolean;
|
|
2541
2556
|
}
|
|
2542
2557
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2543
2558
|
}
|
|
@@ -3321,6 +3336,7 @@ export type PortalBlockForType = {
|
|
|
3321
3336
|
title: string;
|
|
3322
3337
|
roles?: string[];
|
|
3323
3338
|
showAll?: boolean;
|
|
3339
|
+
hideContactButton?: boolean;
|
|
3324
3340
|
}>;
|
|
3325
3341
|
carePlan: BuildPortalBlockInfo<'carePlan', {}>;
|
|
3326
3342
|
education: BuildPortalBlockInfo<'education', {}>;
|
|
@@ -3553,6 +3569,7 @@ export type UserUIRestrictions = {
|
|
|
3553
3569
|
hideMergeEndusers?: boolean;
|
|
3554
3570
|
hideQueuedTicketsViewer?: boolean;
|
|
3555
3571
|
hideIncomingFaxesIcon?: boolean;
|
|
3572
|
+
hideNotificationsIcon?: boolean;
|
|
3556
3573
|
hideBulkEnduserActions?: boolean;
|
|
3557
3574
|
visibleIntegrations?: string[];
|
|
3558
3575
|
};
|
|
@@ -3685,6 +3702,12 @@ export type AnalyticsQueryInfoForType = {
|
|
|
3685
3702
|
"Orders": {
|
|
3686
3703
|
Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
|
|
3687
3704
|
};
|
|
3705
|
+
"Chat Rooms": {
|
|
3706
|
+
Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
|
|
3707
|
+
};
|
|
3708
|
+
"Chats": {
|
|
3709
|
+
Total: AnalyticsQueryInfoBuilder<'Total', undefined>;
|
|
3710
|
+
};
|
|
3688
3711
|
};
|
|
3689
3712
|
export type AnalyticsQueryInfoType = keyof AnalyticsQueryInfoForType;
|
|
3690
3713
|
export type AnalyticsQueryInfo = AnalyticsQueryInfoForType[AnalyticsQueryInfoType];
|
|
@@ -3762,6 +3785,8 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3762
3785
|
automationStepIds?: string[];
|
|
3763
3786
|
};
|
|
3764
3787
|
Orders: {};
|
|
3788
|
+
"Chat Rooms": {};
|
|
3789
|
+
"Chats": {};
|
|
3765
3790
|
};
|
|
3766
3791
|
export type EnduserGrouping = {
|
|
3767
3792
|
Field?: string;
|
|
@@ -3835,6 +3860,12 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3835
3860
|
"Orders": {} & EnduserGrouping & {
|
|
3836
3861
|
Enduser: string;
|
|
3837
3862
|
};
|
|
3863
|
+
"Chat Rooms": {} & EnduserGrouping & {
|
|
3864
|
+
Enduser: string;
|
|
3865
|
+
};
|
|
3866
|
+
"Chats": {} & EnduserGrouping & {
|
|
3867
|
+
Enduser: string;
|
|
3868
|
+
};
|
|
3838
3869
|
};
|
|
3839
3870
|
type DefaultRangeKey = 'Created At' | 'Updated At';
|
|
3840
3871
|
export type AnalyticsQueryRangeKeyForType = {
|
|
@@ -3852,6 +3883,8 @@ export type AnalyticsQueryRangeKeyForType = {
|
|
|
3852
3883
|
"Meetings": DefaultRangeKey;
|
|
3853
3884
|
"Journey Logs": DefaultRangeKey;
|
|
3854
3885
|
"Orders": DefaultRangeKey;
|
|
3886
|
+
"Chat Rooms": DefaultRangeKey;
|
|
3887
|
+
"Chats": DefaultRangeKey;
|
|
3855
3888
|
};
|
|
3856
3889
|
export type RangeKey = DefaultRangeKey | 'Submitted At' | "Closed At";
|
|
3857
3890
|
export type AnalyticsQueryRangeInterval = 'Hourly' | 'Daily' | 'Weekly' | 'Monthly';
|
|
@@ -3881,6 +3914,8 @@ export type AnalyticsQueryForType = {
|
|
|
3881
3914
|
"Meetings": AnalyticsQueryBuilder<"Meetings", AnalyticsQueryInfoForType['Meetings'][keyof AnalyticsQueryInfoForType['Meetings']], AnalyticsQueryFilterForType['Meetings'], AnalyticsQueryGroupingForType['Meetings'], AnalyticsQueryRangeKeyForType['Meetings']>;
|
|
3882
3915
|
"Journey Logs": AnalyticsQueryBuilder<"Journey Logs", AnalyticsQueryInfoForType['Journey Logs'][keyof AnalyticsQueryInfoForType['Journey Logs']], AnalyticsQueryFilterForType['Journey Logs'], AnalyticsQueryGroupingForType['Journey Logs'], AnalyticsQueryRangeKeyForType['Journey Logs']>;
|
|
3883
3916
|
"Orders": AnalyticsQueryBuilder<"Orders", AnalyticsQueryInfoForType['Orders'][keyof AnalyticsQueryInfoForType['Orders']], AnalyticsQueryFilterForType['Orders'], AnalyticsQueryGroupingForType['Orders'], AnalyticsQueryRangeKeyForType['Orders']>;
|
|
3917
|
+
"Chat Rooms": AnalyticsQueryBuilder<"Chat Rooms", AnalyticsQueryInfoForType['Chat Rooms'][keyof AnalyticsQueryInfoForType['Chat Rooms']], AnalyticsQueryFilterForType['Chat Rooms'], AnalyticsQueryGroupingForType['Chat Rooms'], AnalyticsQueryRangeKeyForType['Chat Rooms']>;
|
|
3918
|
+
"Chats": AnalyticsQueryBuilder<"Chats", AnalyticsQueryInfoForType['Chats'][keyof AnalyticsQueryInfoForType['Chats']], AnalyticsQueryFilterForType['Chats'], AnalyticsQueryGroupingForType['Chats'], AnalyticsQueryRangeKeyForType['Chats']>;
|
|
3884
3919
|
};
|
|
3885
3920
|
export type AnalyticsQueryType = keyof AnalyticsQueryForType;
|
|
3886
3921
|
export type AnalyticsQuery = AnalyticsQueryForType[AnalyticsQueryType];
|
|
@@ -4126,6 +4161,7 @@ export type AutomationTriggerEvents = {
|
|
|
4126
4161
|
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {
|
|
4127
4162
|
titles?: string[];
|
|
4128
4163
|
productIds?: string[];
|
|
4164
|
+
titlePartialMatches?: string[];
|
|
4129
4165
|
}, {}>;
|
|
4130
4166
|
'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
|
|
4131
4167
|
'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {
|