'''Is there a way to pass fromDateTime and toDateTime as parameters in this link?'''
export function MSALInterceptorConfigFactory(): MsalInterceptorConfiguration {
const protectedResourceMap = new Map<string, Array<string>>();
protectedResourceMap.set('https://graph.microsoft.com/v1.0/communications/callRecords/getPstnCalls(fromDateTime=2019-11-01,toDateTime=2019-12-01', ['CallRecords.Read.All','CallRecord-PstnCalls.Read.All','CallRecords.Read.All']);
return {
interactionType: InteractionType.Redirect,
protectedResourceMap
};
}