@tellescope/types-models 1.203.1 → 1.204.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 +11 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +12 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export type PortalSettings = {
|
|
|
86
86
|
registerGraphic?: string;
|
|
87
87
|
hideRegister?: boolean;
|
|
88
88
|
dontPromptSetPassword?: boolean;
|
|
89
|
+
requireOTP?: boolean;
|
|
89
90
|
};
|
|
90
91
|
communication?: {
|
|
91
92
|
allowEnduserInitiatedChat?: boolean;
|
|
@@ -278,6 +279,10 @@ export type AthenaSubscription = {
|
|
|
278
279
|
frequencyInMinutes: number;
|
|
279
280
|
lastSyncedAt: Date;
|
|
280
281
|
};
|
|
282
|
+
export type StripeKeyDetail = {
|
|
283
|
+
key: string;
|
|
284
|
+
title: string;
|
|
285
|
+
};
|
|
281
286
|
export interface Organization_readonly extends ClientRecord {
|
|
282
287
|
subscriptionExpiresAt: Date;
|
|
283
288
|
subscriptionPeriod: number;
|
|
@@ -418,6 +423,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
418
423
|
iframeURL: string;
|
|
419
424
|
}[];
|
|
420
425
|
stripePublicKeys?: string[];
|
|
426
|
+
stripeKeyDetails?: StripeKeyDetail[];
|
|
421
427
|
additionalIterableKeys?: string[];
|
|
422
428
|
defaultDoseSpotPharmacies?: {
|
|
423
429
|
id: string;
|
|
@@ -454,6 +460,7 @@ export type OrganizationTheme = {
|
|
|
454
460
|
customPolicies?: Organization['customPolicies'];
|
|
455
461
|
customPoliciesVersion?: string;
|
|
456
462
|
requireCustomTermsOnMagicLink?: boolean;
|
|
463
|
+
hasConnectedVital?: boolean;
|
|
457
464
|
};
|
|
458
465
|
export interface RecordInfo {
|
|
459
466
|
businessId: string;
|
|
@@ -482,6 +489,7 @@ export interface EnduserSession extends Session, Enduser {
|
|
|
482
489
|
passwordIsUnset?: boolean;
|
|
483
490
|
denySocket?: boolean;
|
|
484
491
|
fromPublicSession?: boolean;
|
|
492
|
+
requiresOTP?: boolean;
|
|
485
493
|
}
|
|
486
494
|
export interface UserSession extends Session, OrganizationLimits {
|
|
487
495
|
type: "user";
|
|
@@ -2226,6 +2234,7 @@ export interface CalendarEvent_required {
|
|
|
2226
2234
|
export interface CalendarEvent_updatesDisabled {
|
|
2227
2235
|
}
|
|
2228
2236
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2237
|
+
createAndBookAthenaSlot?: boolean;
|
|
2229
2238
|
athenaDepartmentId?: string;
|
|
2230
2239
|
generateAthenaTelehealthLink?: boolean;
|
|
2231
2240
|
athenaTypeId?: string;
|
|
@@ -2405,6 +2414,7 @@ export interface CalendarEventTemplate_required {
|
|
|
2405
2414
|
export interface CalendarEventTemplate_updatesDisabled {
|
|
2406
2415
|
}
|
|
2407
2416
|
export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, CalendarEventTemplate_required, CalendarEventTemplate_updatesDisabled {
|
|
2417
|
+
createAndBookAthenaSlot?: boolean;
|
|
2408
2418
|
dontSyncToCanvas?: boolean;
|
|
2409
2419
|
archivedAt?: Date | '';
|
|
2410
2420
|
type?: string;
|
|
@@ -3434,6 +3444,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3434
3444
|
dialedUserIds?: string[][];
|
|
3435
3445
|
ignoredUserIds?: string[][];
|
|
3436
3446
|
ticketId?: string;
|
|
3447
|
+
hungUpByCaller?: boolean;
|
|
3437
3448
|
}
|
|
3438
3449
|
export type AnalyticsQueryResultValue = {
|
|
3439
3450
|
key?: string;
|