{"version":3,"sources":["../../src/extensions/dashboard-page-builders.ts","../../src/extensions/dashboard-pages-plugin-props.ts","../../src/extensions/dashboard-page-plugins/c7b86028-b1d2-42b0-be1d-4c95b374fc7d.ts","../../src/extensions/dashboard-page-plugins/a7f877e0-69ac-459f-8b5b-eb7c5e25bad2.ts","../../src/extensions/dashboard-page-plugins/06313e49-80f7-498e-99cd-312eab83f391.ts","../../src/extensions/dashboard-page-plugins/fd3e1c66-89b0-44ee-b824-1a28cc1a6dde.ts","../../src/extensions/dashboard-page-plugins/7c8f91b9-0b65-47ee-92eb-37c1f9a4d410.ts"],"sourcesContent":["/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Analytics page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogAnalytics(): PageBuilderResult {\n  return { pageId: '3272eb63-13c2-4e22-bf9f-66964d1d39a3' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Posts page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogPosts(): PageBuilderResult {\n  return { pageId: 'c7b86028-b1d2-42b0-be1d-4c95b374fc7d' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Writers page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogWriters(): PageBuilderResult {\n  return { pageId: 'b8c96d90-95d6-57de-9a97-0d44c4dfaa96' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Tags page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogTags(): PageBuilderResult {\n  return { pageId: '06313e49-80f7-498e-99cd-312eab83f391' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Comments page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogComments(): PageBuilderResult {\n  return { pageId: '77f77e2b-56b6-4fe5-8011-ed1ebfd95c0b' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Monetization page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogMonetization(): PageBuilderResult {\n  return { pageId: '681cbbb9-800c-414f-856a-ad4be4e1b296' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Categories page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogCategories(): PageBuilderResult {\n  return { pageId: 'fd3e1c66-89b0-44ee-b824-1a28cc1a6dde' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Overview page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogOverview(): PageBuilderResult {\n  return { pageId: '7c8f91b9-0b65-47ee-92eb-37c1f9a4d410' };\n}\n\n/**\n * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Blog Settings page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function blogSettings(): PageBuilderResult {\n  return { pageId: '2718bafd-5769-487e-b162-4b4d747edf89' };\n}\n\nexport interface PageBuilderResult {\n  pageId: string;\n  relativeUrl?: string;\n}\n","export * as BlogPosts from './dashboard-page-plugins/c7b86028-b1d2-42b0-be1d-4c95b374fc7d.js';\nexport * as Posts from './dashboard-page-plugins/a7f877e0-69ac-459f-8b5b-eb7c5e25bad2.js';\nexport * as BlogTags from './dashboard-page-plugins/06313e49-80f7-498e-99cd-312eab83f391.js';\nexport * as BlogCategories from './dashboard-page-plugins/fd3e1c66-89b0-44ee-b824-1a28cc1a6dde.js';\nexport * as BlogOverview from './dashboard-page-plugins/7c8f91b9-0b65-47ee-92eb-37c1f9a4d410.js';\n","/**\n * @pageName BlogPosts\n * @slotType dashboard plugin\n */\nexport type PostsBannerParams = EmptyParams;\n\n/** @internal */\nexport type EmptyParams = {};\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type PublishedPostItemMoreActionsMenuParams = ActionParams;\n\n// These are used in the dev center, do not delete them\n/** @internal */\nexport type ActionParams = {\n  // ID of the selected item.\n  selectedId: string;\n};\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type PublishedPostItemsBulkMoreActionsMenuParams = BulkActionParams;\n\n/** @internal */\nexport type BulkActionParams = {\n  // ID of the selected items.\n  selectedIds: string[];\n};\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type DraftPostItemMoreActionsMenuParams = ActionParams;\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type DraftPostItemsBulkMoreActionsMenuParams = BulkActionParams;\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type ScheduledPostItemMoreActionsMenuParams = ActionParams;\n\n/**\n * @pageName BlogPosts\n * @slotType dashboard menu plugin\n */\nexport type ScheduledItemsBulkMoreActionsMenuParams = BulkActionParams;\n","/**\n * @pageName Posts\n * @slotType dashboard menu plugin\n */\nexport type EditPostMainMoreActionsMenuParams = {};\n","/**\n * @pageName BlogTags\n * @slotType dashboard plugin\n */\nexport type TagsBannerParams = EmptyParams;\n\n/** @internal */\nexport type EmptyParams = {};\n\n/**\n * @pageName BlogTags\n * @slotType dashboard menu plugin\n */\nexport type TagItemMoreActionsMenuParams = ActionParams;\n\n// These are used in the dev center, do not delete them\n/** @internal */\nexport type ActionParams = {\n  // ID of the selected item.\n  selectedId: string;\n};\n\n/**\n * @pageName BlogTags\n * @slotType dashboard menu plugin\n */\nexport type TagItemsBulkMoreActionsMenuParams = BulkActionParams;\n\n/** @internal */\nexport type BulkActionParams = {\n  // ID of the selected items.\n  selectedIds: string[];\n};\n","/**\n * @pageName BlogCategories\n * @slotType dashboard plugin\n */\nexport type CategoriesBannerParams = EmptyParams;\n\n/** @internal */\nexport type EmptyParams = {};\n\n/**\n * @pageName BlogCategories\n * @slotType dashboard menu plugin\n */\nexport type CategoryItemMoreActionsMenuParams = ActionParams;\n\n// These are used in the dev center, do not delete them\n/** @internal */\nexport type ActionParams = {\n  // ID of the selected item.\n  selectedId: string;\n};\n\n/**\n * @pageName BlogCategories\n * @slotType dashboard menu plugin\n */\nexport type CategoryItemsBulkMoreActionsMenuParams = BulkActionParams;\n\n/** @internal */\nexport type BulkActionParams = {\n  // ID of the selected items.\n  selectedIds: string[];\n};\n","/**\n * @pageName BlogOverview\n * @slotType dashboard plugin\n */\nexport type OverviewBannerParams = EmptyParams;\n\n/** @internal */\nexport type EmptyParams = {};\n"],"mappings":";;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIO,SAAS,gBAAmC;AACjD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,YAA+B;AAC7C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,cAAiC;AAC/C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,WAA8B;AAC5C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,eAAkC;AAChD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,mBAAsC;AACpD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,iBAAoC;AAClD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,eAAkC;AAChD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,eAAkC;AAChD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;;;ACtEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;","names":[]}