@tellescope/types-models 1.255.12 → 1.255.13
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 +6 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +2 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +6 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +7 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -695,6 +695,7 @@ export interface UserSession extends Session, OrganizationLimits {
|
|
|
695
695
|
actorUserId?: string;
|
|
696
696
|
actorEmail?: string;
|
|
697
697
|
actorBusinessId?: string;
|
|
698
|
+
allowedMFAMethods?: MFAMethod[];
|
|
698
699
|
}
|
|
699
700
|
export type StateCredentialInfo = {
|
|
700
701
|
state: string;
|
|
@@ -731,7 +732,10 @@ export type AccountType = string;
|
|
|
731
732
|
export type UserCallRoutingBehavior = ('' | 'Assigned' | 'Unassigned' | 'All');
|
|
732
733
|
export type MFASettings = {
|
|
733
734
|
email?: boolean;
|
|
735
|
+
authenticator?: boolean;
|
|
734
736
|
};
|
|
737
|
+
export type MFAMethod = 'email' | 'authenticator';
|
|
738
|
+
export declare const MFA_METHODS: MFAMethod[];
|
|
735
739
|
export interface LinkedAccount {
|
|
736
740
|
id: string;
|
|
737
741
|
email: string;
|
|
@@ -844,6 +848,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
844
848
|
dashboardView?: CustomDashboardView;
|
|
845
849
|
hideFromCalendarView?: boolean;
|
|
846
850
|
requireSSO?: string[];
|
|
851
|
+
allowedMFAMethods?: MFAMethod[];
|
|
847
852
|
linkedAccountAccess?: LinkedAccountAccessEntry[];
|
|
848
853
|
}
|
|
849
854
|
export type Preference = 'email' | 'sms' | 'call' | 'chat';
|
|
@@ -4192,6 +4197,7 @@ export interface PhoneCall extends PhoneCall_readonly, PhoneCall_required, Phone
|
|
|
4192
4197
|
timestamp?: Date;
|
|
4193
4198
|
dialedUserIds?: string[][];
|
|
4194
4199
|
ignoredUserIds?: string[][];
|
|
4200
|
+
lastDialedUserIds?: string[];
|
|
4195
4201
|
ticketId?: string;
|
|
4196
4202
|
hungUpByCaller?: boolean;
|
|
4197
4203
|
archivedAt?: Date | '';
|