{"version":3,"sources":["../daytool/src/apis/microsoft/authConfig.js"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,UAAU,GAAG;IACf,IAAI,EAAE;QACF,uFAAuF;QACvF,QAAQ,EAAE,sCAAsC;QAChD,mFAAmF;QACnF,SAAS,EAAE,6CAA6C;QACxD,sDAAsD;QACtD,WAAW,EAAE,UAAU;KAC1B;IACD,KAAK,EAAE;QACH,aAAa,EAAE,cAAc,EAAE,kDAAkD;QACjF,sBAAsB,EAAE,IAAI,EAAE,8DAA8D;KAC/F;IACD,MAAM,EAAE;QACJ,aAAa,EAAE;YACX,cAAc,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE;gBAC5C,IAAI,WAAW,EAAE,CAAC;oBACd,OAAO;gBACX,CAAC;gBACD,QAAQ,KAAK,EAAE,CAAC;oBACZ,KAAK,IAAI,CAAC,QAAQ,CAAC,KAAK;wBACpB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBACvB,OAAO;oBACX,KAAK,IAAI,CAAC,QAAQ,CAAC,IAAI;wBACnB,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;wBACtB,OAAO;oBACX,KAAK,IAAI,CAAC,QAAQ,CAAC,OAAO;wBACtB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBACvB,OAAO;oBACX,KAAK,IAAI,CAAC,QAAQ,CAAC,OAAO;wBACtB,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;wBACtB,OAAO;gBACf,CAAC;YACL,CAAC;SACJ;KACJ;CACJ,CAAC","file":"authConfig.js","sourcesContent":["/**\n * Configuration object to be passed to MSAL instance on creation.\n * For a full list of MSAL.js configuration parameters, visit:\n * https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/configuration.md\n */\nconst msalConfig = {\n auth: {\n // 'Application (client) ID' of app registration in Azure portal - this value is a GUID\n clientId: \"53a09f75-62c9-4ba2-9e6a-9a5a9a044b27\",\n // Full directory URL, in the form of https://login.microsoftonline.com/\n authority: \"https://login.microsoftonline.com/consumers\",\n // Full redirect URL, in form of http://localhost:3000\n redirectUri: \"/daytool\",\n },\n cache: {\n cacheLocation: \"localStorage\", // This configures where your cache will be stored\n storeAuthStateInCookie: true, // Set this to \"true\" if you are having issues on IE11 or Edge\n },\n system: {\n loggerOptions: {\n loggerCallback: (level, message, containsPii) => {\n if (containsPii) {\n return;\n }\n switch (level) {\n case msal.LogLevel.Error:\n console.error(message);\n return;\n case msal.LogLevel.Info:\n console.info(message);\n return;\n case msal.LogLevel.Verbose:\n console.debug(message);\n return;\n case msal.LogLevel.Warning:\n console.warn(message);\n return;\n }\n }\n }\n }\n};\n\n"]}