@tellescope/types-models 1.203.2 → 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 +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -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 +4 -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;
|
|
@@ -459,6 +460,7 @@ export type OrganizationTheme = {
|
|
|
459
460
|
customPolicies?: Organization['customPolicies'];
|
|
460
461
|
customPoliciesVersion?: string;
|
|
461
462
|
requireCustomTermsOnMagicLink?: boolean;
|
|
463
|
+
hasConnectedVital?: boolean;
|
|
462
464
|
};
|
|
463
465
|
export interface RecordInfo {
|
|
464
466
|
businessId: string;
|
|
@@ -487,6 +489,7 @@ export interface EnduserSession extends Session, Enduser {
|
|
|
487
489
|
passwordIsUnset?: boolean;
|
|
488
490
|
denySocket?: boolean;
|
|
489
491
|
fromPublicSession?: boolean;
|
|
492
|
+
requiresOTP?: boolean;
|
|
490
493
|
}
|
|
491
494
|
export interface UserSession extends Session, OrganizationLimits {
|
|
492
495
|
type: "user";
|
|
@@ -3441,6 +3444,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
3441
3444
|
dialedUserIds?: string[][];
|
|
3442
3445
|
ignoredUserIds?: string[][];
|
|
3443
3446
|
ticketId?: string;
|
|
3447
|
+
hungUpByCaller?: boolean;
|
|
3444
3448
|
}
|
|
3445
3449
|
export type AnalyticsQueryResultValue = {
|
|
3446
3450
|
key?: string;
|