@tellescope/types-models 1.122.0 → 1.123.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 +8 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +8 -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 +9 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -354,6 +354,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
354
354
|
title: string;
|
|
355
355
|
iframeURL: string;
|
|
356
356
|
}[];
|
|
357
|
+
stripePublicKeys?: string[];
|
|
357
358
|
}
|
|
358
359
|
export type OrganizationTheme = {
|
|
359
360
|
name: string;
|
|
@@ -538,6 +539,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
538
539
|
requiresMFAConfiguration?: boolean;
|
|
539
540
|
templateFields?: LabeledField[];
|
|
540
541
|
dashboardView?: CustomDashboardView;
|
|
542
|
+
hideFromCalendarView?: boolean;
|
|
541
543
|
}
|
|
542
544
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
543
545
|
export type CustomField = string | number | object | {
|
|
@@ -696,6 +698,8 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
696
698
|
defaultFromPhone?: string;
|
|
697
699
|
defaultFromEmail?: string;
|
|
698
700
|
useDefaultFromEmailInAutomations?: boolean;
|
|
701
|
+
stripeCustomerId?: string;
|
|
702
|
+
stripeKey?: string;
|
|
699
703
|
}
|
|
700
704
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
701
705
|
}
|
|
@@ -1949,6 +1953,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1949
1953
|
healthieZoomStartURL?: string;
|
|
1950
1954
|
healthieZoomJoinURL?: string;
|
|
1951
1955
|
instructions?: string;
|
|
1956
|
+
scheduledBy?: string;
|
|
1952
1957
|
}
|
|
1953
1958
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
1954
1959
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -1995,6 +2000,7 @@ export interface Purchase extends Purchase_readonly, Purchase_required, Purchase
|
|
|
1995
2000
|
externalId?: string;
|
|
1996
2001
|
cptCode?: BillingCode;
|
|
1997
2002
|
notes?: string;
|
|
2003
|
+
references?: RelatedRecord[];
|
|
1998
2004
|
}
|
|
1999
2005
|
type BuildPurchaseCreditInfo<T, I> = {
|
|
2000
2006
|
type: T;
|
|
@@ -2034,6 +2040,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2034
2040
|
type?: string;
|
|
2035
2041
|
enableVideoCall?: boolean;
|
|
2036
2042
|
videoIntegration?: VideoIntegrationType;
|
|
2043
|
+
generateZoomLinkWhenBooked?: boolean;
|
|
2037
2044
|
enableSelfScheduling?: boolean;
|
|
2038
2045
|
restrictedByState?: boolean;
|
|
2039
2046
|
publicRead?: boolean;
|
|
@@ -2674,6 +2681,7 @@ export interface PortalCustomization extends PortalCustomization_readonly, Porta
|
|
|
2674
2681
|
iframeURL?: string;
|
|
2675
2682
|
iconURL?: string;
|
|
2676
2683
|
activeIconURL?: string;
|
|
2684
|
+
showStripePortalLink?: boolean;
|
|
2677
2685
|
}
|
|
2678
2686
|
export declare const MOBILE_BOTTOM_NAVIGATION_DISABLED_POSITION = 1000;
|
|
2679
2687
|
export declare const DEFAULT_PATIENT_PORTAL_BOTTOM_NAVIGATION_POSITIONS: {
|