@tellescope/types-models 1.231.0 → 1.232.1
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 +18 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +18 -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 +15 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export type PortalSettings = {
|
|
|
89
89
|
hideRegister?: boolean;
|
|
90
90
|
dontPromptSetPassword?: boolean;
|
|
91
91
|
requireOTP?: boolean;
|
|
92
|
+
requireOTPAfterPassword?: boolean;
|
|
92
93
|
};
|
|
93
94
|
communication?: {
|
|
94
95
|
allowEnduserInitiatedChat?: boolean;
|
|
@@ -404,6 +405,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
404
405
|
priorityGroups?: string[];
|
|
405
406
|
resolutionFieldId?: string;
|
|
406
407
|
resolutionFieldOptions?: string[];
|
|
408
|
+
syncTagsToZendesk?: boolean;
|
|
407
409
|
};
|
|
408
410
|
replyToAllEmails?: string;
|
|
409
411
|
replyToEnduserTransactionalEmails?: string;
|
|
@@ -684,6 +686,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
684
686
|
mfa?: MFASettings;
|
|
685
687
|
skills?: string[];
|
|
686
688
|
lockedOutUntil?: number;
|
|
689
|
+
failedLoginAttempts?: number;
|
|
687
690
|
elationUserId?: number;
|
|
688
691
|
iOSBadgeCount?: number;
|
|
689
692
|
doseSpotUserId?: string;
|
|
@@ -1681,6 +1684,11 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1681
1684
|
saveIntakeOnPartial?: boolean;
|
|
1682
1685
|
stripeKey?: string;
|
|
1683
1686
|
stripeProductSelectionMode?: boolean;
|
|
1687
|
+
productConditions?: {
|
|
1688
|
+
productId: string;
|
|
1689
|
+
showCondition: CompoundFilter<string>;
|
|
1690
|
+
}[];
|
|
1691
|
+
stripeCouponCodes?: string[];
|
|
1684
1692
|
dataSource?: string;
|
|
1685
1693
|
canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
|
|
1686
1694
|
canvasDocumentType?: CanvasCoding;
|
|
@@ -2249,6 +2257,11 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2249
2257
|
canvasEncounterId?: string;
|
|
2250
2258
|
pushedToPortalAt?: Date;
|
|
2251
2259
|
belugaStatus?: string;
|
|
2260
|
+
fieldViews?: {
|
|
2261
|
+
fieldId: string;
|
|
2262
|
+
fieldTitle: string;
|
|
2263
|
+
timestamp: Date;
|
|
2264
|
+
}[];
|
|
2252
2265
|
}
|
|
2253
2266
|
export interface WebHook_readonly extends ClientRecord {
|
|
2254
2267
|
}
|
|
@@ -2445,6 +2458,8 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2445
2458
|
confirmedAt?: Date | '';
|
|
2446
2459
|
preventRescheduleMinutesInAdvance?: number;
|
|
2447
2460
|
preventCancelMinutesInAdvance?: number;
|
|
2461
|
+
preventRescheduleInPortal?: boolean;
|
|
2462
|
+
preventCancelInPortal?: boolean;
|
|
2448
2463
|
sendIcsEmail?: boolean;
|
|
2449
2464
|
healthieInsuranceBillingEnabled?: boolean;
|
|
2450
2465
|
}
|
|
@@ -2576,6 +2591,8 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2576
2591
|
allowGroupReschedule?: boolean;
|
|
2577
2592
|
preventRescheduleMinutesInAdvance?: number;
|
|
2578
2593
|
preventCancelMinutesInAdvance?: number;
|
|
2594
|
+
preventRescheduleInPortal?: boolean;
|
|
2595
|
+
preventCancelInPortal?: boolean;
|
|
2579
2596
|
athenaDepartmentId?: string;
|
|
2580
2597
|
generateAthenaTelehealthLink?: boolean;
|
|
2581
2598
|
athenaTypeId?: string;
|
|
@@ -3387,6 +3404,7 @@ export type PortalBlockForType = {
|
|
|
3387
3404
|
title?: string;
|
|
3388
3405
|
formIds?: string[];
|
|
3389
3406
|
}>;
|
|
3407
|
+
"Appointment Booking Pages": BuildPortalBlockInfo<'Appointment Booking Pages', {}>;
|
|
3390
3408
|
};
|
|
3391
3409
|
export type PortalBlockType = keyof PortalBlockForType;
|
|
3392
3410
|
export type PortalBlock = PortalBlockForType[PortalBlockType];
|