{"version":3,"file":"js/47.d3c133c9.js","mappings":"gJAsBM,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,CCrBe,eAAeC,EAC5BC,CAAyC,CACzCC,CAAqD,EAErD,IAAMC,EAAwB,CAAC,MAAM,+BAA+BC,OAAO,CAG3E,SAASR,EAAeS,CAA8B,EACpD,OAAOF,EAAsBF,EAAqB,CAChD,GAAGC,CAAsB,CACzB,GAAGG,CAAM,EAEb,CAiBA,MAdsB,aAAlB,OAAOR,SACJA,OAAOC,SAAS,EAAED,CAAAA,OAAOC,SAAS,CAAG,CAAC,GAC3CD,OAAOC,SAAS,CAACQ,QAAQ,CAAG,MAAOD,GAC1BT,EAAc,CACnB,GAAGS,CAAM,CACTE,SAAU,qBAMhBZ,EAA4BC,GAGrBA,CACT,C","sources":["webpack://@busyrooms/template-playitas/../../libs/vue-commons/entries/attach_global.ts","webpack://@busyrooms/template-playitas/./src/entries/default.entry.ts"],"sourcesContent":["import type { BaseScenarioParams } from './types'\n\ntype TemplateMountScenarioFn <T extends BaseScenarioParams> = (params: T) => Promise<void>\n\ndeclare global {\n  interface Window {\n    BusyRooms: BusyRoomsGlobal\n  }\n\n  interface BusyRoomsGlobal {\n    /** Generic scenario mounting function */\n    mountScenario?: TemplateMountScenarioFn<any>\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 <T extends BaseScenarioParams> (\n  mountScenario: TemplateMountScenarioFn<T>\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'\nimport type { PredefinedClientConfiguration, PlayitasScenarioParams, IStaticConfiguration } from './types'\n\ndeclare global {\n  interface BusyRoomsGlobal {\n    /** Legacy scenario name, okay for this template */\n    mountIBE?: (params: PlayitasScenarioParams) => 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 * 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 attachToGlobalAndReturn (\n  staticConfiguration: IStaticConfiguration,\n  predefinedClientConfig: PredefinedClientConfiguration\n) {\n  const templateMountScenario = (await import('./default.bootstrap')).default\n\n  // Function which can combines baked configuration with dynamic one\n  function mountScenario (params: PlayitasScenarioParams) {\n    return templateMountScenario(staticConfiguration, {\n      ...predefinedClientConfig,\n      ...params\n    })\n  }\n\n  // For this template only, a consumer expects `mountIBE` function (legacy reasons)\n  if (typeof window !== 'undefined') {\n    if (!window.BusyRooms) window.BusyRooms = {}\n    window.BusyRooms.mountIBE = async (params: PlayitasScenarioParams) => {\n      return mountScenario({\n        ...params,\n        scenario: 'single_property' as const\n      })\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","attachToGlobalAndReturn","staticConfiguration","predefinedClientConfig","templateMountScenario","default","params","mountIBE","scenario"],"sourceRoot":""}