{"version":3,"file":"js/951.0e426001.js","mappings":"yJAsBM,SAAUA,EACdC,CAAyC,EAGnB,aAAlB,OAAOC,SAGqB,SAArBA,OAAOC,SAAS,EACzBD,CAAAA,OAAOC,SAAS,CAAG,CAAC,GAItBD,OAAOC,SAAS,CAACF,aAAa,CAAGA,EAGQ,YAArC,OAAOC,OAAOC,SAAS,CAACC,QAAQ,EAClCF,OAAOC,SAAS,CAACC,QAAQ,GAE7B,CC3Be,eAAeC,EAC5BC,CAAyC,CACzCC,CAAqD,EAErD,IAAMC,EAAwB,CAAC,MAAM,+BAA+BC,OAAO,CAE3E,SAASR,EAAeS,CAAsB,EAC5C,OAAOF,EAAsBF,EAAqB,CAChD,GAAGC,CAAsB,CACzB,GAAGG,CAAM,EAEb,CAMA,OAHAV,EAA4BC,GAGrBA,CACT,C","sources":["webpack://@busyrooms/template-centerhotels/../../libs/vue-commons/entries/attach_global.ts","webpack://@busyrooms/template-centerhotels/./src/entries/default.entry.ts"],"sourcesContent":["import type { BaseScenarioParams } from './types'\n\ntype TemplateMountScenarioFn = (params: T) => Promise\n\ndeclare global {\n interface Window {\n BusyRooms: BusyRoomsGlobal\n }\n\n interface BusyRoomsGlobal {\n /** Generic scenario mounting function */\n mountScenario?: TemplateMountScenarioFn\n\n onLoaded?: () => void\n }\n}\n\n/**\n * The Federated entrypoint for the IBE.\n * It will attach the `mountScenario` function to `window.BusyRooms` when in browser context.\n * @param mountScenario Function which mounts the scenario to the DOM\n */\nexport function attachMountScenarioToWindow (\n mountScenario: TemplateMountScenarioFn\n) {\n // Browser-only\n if (typeof window === 'undefined') return\n\n // Create BusyRooms namespace if it doesn't exist\n if (typeof window.BusyRooms === 'undefined') {\n window.BusyRooms = {}\n }\n\n // Also export `mountScenario` function\n window.BusyRooms.mountScenario = mountScenario\n\n // Check callback\n if (typeof window.BusyRooms.onLoaded === 'function') {\n window.BusyRooms.onLoaded()\n }\n}\n","import { attachMountScenarioToWindow } from '@busyrooms/vue-commons/entries/attach_global'\n\nimport type { IStaticConfiguration, PredefinedClientConfiguration, ScenarioParams } from './types'\n\n/**\n * The Federated entrypoint for the IBE.\n * It will attach the `mountScenario` function to `window.BusyRooms` when in browser context,\n * and will also return it.\n * @param staticConfiguration Precompiled template configuration to apply (comes from Federated Host).\n * This has the same schema for all templates and provides api keys, etc.\n * @param predefinedClientConfig Precompiled client configuration (also from Federated Host).\n * This is for template-specific configurations, can be rewritten from outside.\n */\nexport default async function defaultEntry (\n staticConfiguration: IStaticConfiguration,\n predefinedClientConfig: PredefinedClientConfiguration\n) {\n const templateMountScenario = (await import('./default.bootstrap')).default\n\n function mountScenario (params: ScenarioParams) {\n return templateMountScenario(staticConfiguration, {\n ...predefinedClientConfig,\n ...params\n })\n }\n\n // Standard attachment to `window`\n attachMountScenarioToWindow(mountScenario)\n\n // Return function as well (ease of consumption)\n return mountScenario\n}\n"],"names":["attachMountScenarioToWindow","mountScenario","window","BusyRooms","onLoaded","defaultEntry","staticConfiguration","predefinedClientConfig","templateMountScenario","default","params"],"sourceRoot":""}