{ "version": 3, "sources": ["../../assets/scripts/utils/configuration.ts"], "sourcesContent": ["export interface IAppConfiguration {\r\n culture: string;\r\n currencyCode: string;\r\n xsrf: string;\r\n isAuthenticated: boolean;\r\n useBeforeVat: boolean;\r\n}\r\n\r\ntype AppWindow = Window &\r\n typeof globalThis & {\r\n netbiz: {\r\n configuration: IAppConfiguration;\r\n };\r\n };\r\n\r\nexport function getAppConfiguration(): IAppConfiguration {\r\n return (window as AppWindow).netbiz.configuration;\r\n}\r\n\r\nexport function initAppConfiguration(): void {\r\n const html = document.querySelector('html') as HTMLElement;\r\n const configurationJson = html.dataset.reactConfiguration;\r\n const configuration = JSON.parse(configurationJson!) as IAppConfiguration;\r\n html.removeAttribute('data-react-configuration');\r\n\r\n const w = window as AppWindow;\r\n if (!('netbiz' in w) || !('configuration' in w.netbiz))\r\n w.netbiz = {\r\n configuration,\r\n };\r\n}\r\n"], "mappings": ";AAeO,SAAS,sBAAyC;AACvD,SAAQ,OAAqB,OAAO;AACtC;AAEO,SAAS,uBAA6B;AAC3C,QAAM,OAAO,SAAS,cAAc,MAAM;AAC1C,QAAM,oBAAoB,KAAK,QAAQ;AACvC,QAAM,gBAAgB,KAAK,MAAM,iBAAkB;AACnD,OAAK,gBAAgB,0BAA0B;AAE/C,QAAM,IAAI;AACV,MAAI,EAAE,YAAY,MAAM,EAAE,mBAAmB,EAAE;AAC7C,MAAE,SAAS;AAAA,MACT;AAAA,IACF;AACJ;", "names": [] }