@backstage/plugin-catalog-unprocessed-entities 0.2.27 → 0.2.29-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-catalog-unprocessed-entities
2
2
 
3
+ ## 0.2.29-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - b6f1fae: The unprocessed entities view is now primarily intended for use as a tab within the DevTools plugin. The standalone page is still available but disabled by default. To re-enable it, add the following to your `app-config.yaml`:
8
+
9
+ ```yaml
10
+ app:
11
+ extensions:
12
+ - page:catalog-unprocessed-entities
13
+ ```
14
+
15
+ - Updated dependencies
16
+ - @backstage/ui@0.14.0-next.0
17
+ - @backstage/core-components@0.18.9-next.0
18
+ - @backstage/frontend-plugin-api@0.15.2-next.0
19
+ - @backstage/core-compat-api@0.5.10-next.0
20
+ - @backstage/core-plugin-api@1.12.5-next.0
21
+ - @backstage/errors@1.2.7
22
+ - @backstage/plugin-catalog-unprocessed-entities-common@0.0.13
23
+
3
24
  ## 0.2.27
4
25
 
5
26
  ### Patch Changes
@@ -1,8 +1,9 @@
1
1
  import { jsx } from 'react/jsx-runtime';
2
- import { ApiBlueprint, fetchApiRef, discoveryApiRef, PageBlueprint, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
2
+ import { ApiBlueprint, fetchApiRef, discoveryApiRef, PageBlueprint, NavItemBlueprint, SubPageBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
3
3
  import { CatalogUnprocessedEntitiesClient, catalogUnprocessedEntitiesApiRef } from '../api/index.esm.js';
4
4
  import QueueIcon from '@material-ui/icons/Queue';
5
5
  import { rootRouteRef } from '../routes.esm.js';
6
+ import { Container } from '@backstage/ui';
6
7
 
7
8
  const catalogUnprocessedEntitiesApi = ApiBlueprint.make({
8
9
  params: (defineParams) => defineParams({
@@ -15,6 +16,7 @@ const catalogUnprocessedEntitiesApi = ApiBlueprint.make({
15
16
  })
16
17
  });
17
18
  const catalogUnprocessedEntitiesPage = PageBlueprint.make({
19
+ disabled: true,
18
20
  params: {
19
21
  path: "/catalog-unprocessed-entities",
20
22
  routeRef: rootRouteRef,
@@ -28,6 +30,14 @@ const catalogUnprocessedEntitiesNavItem = NavItemBlueprint.make({
28
30
  icon: QueueIcon
29
31
  }
30
32
  });
33
+ const unprocessedEntitiesDevToolsContent = SubPageBlueprint.make({
34
+ attachTo: { id: "page:devtools", input: "pages" },
35
+ params: {
36
+ path: "unprocessed-entities",
37
+ title: "Unprocessed Entities",
38
+ loader: () => import('../components/UnprocessedEntities.esm.js').then((m) => /* @__PURE__ */ jsx(Container, { children: /* @__PURE__ */ jsx(m.UnprocessedEntitiesContent, {}) }))
39
+ }
40
+ });
31
41
  var plugin = createFrontendPlugin({
32
42
  pluginId: "catalog-unprocessed-entities",
33
43
  title: "Unprocessed Entities",
@@ -39,9 +49,10 @@ var plugin = createFrontendPlugin({
39
49
  extensions: [
40
50
  catalogUnprocessedEntitiesApi,
41
51
  catalogUnprocessedEntitiesPage,
42
- catalogUnprocessedEntitiesNavItem
52
+ catalogUnprocessedEntitiesNavItem,
53
+ unprocessedEntitiesDevToolsContent
43
54
  ]
44
55
  });
45
56
 
46
- export { catalogUnprocessedEntitiesApi, catalogUnprocessedEntitiesNavItem, catalogUnprocessedEntitiesPage, plugin as default };
57
+ export { catalogUnprocessedEntitiesApi, catalogUnprocessedEntitiesNavItem, catalogUnprocessedEntitiesPage, plugin as default, unprocessedEntitiesDevToolsContent };
47
58
  //# sourceMappingURL=plugin.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createFrontendPlugin,\n discoveryApiRef,\n fetchApiRef,\n ApiBlueprint,\n PageBlueprint,\n NavItemBlueprint,\n} from '@backstage/frontend-plugin-api';\n\nimport {\n catalogUnprocessedEntitiesApiRef,\n CatalogUnprocessedEntitiesClient,\n} from '../api';\nimport QueueIcon from '@material-ui/icons/Queue';\nimport { rootRouteRef } from '../routes';\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesApi = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: catalogUnprocessedEntitiesApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) =>\n new CatalogUnprocessedEntitiesClient(discoveryApi, fetchApi),\n }),\n});\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesPage = PageBlueprint.make({\n params: {\n path: '/catalog-unprocessed-entities',\n routeRef: rootRouteRef,\n loader: () =>\n import('../components/UnprocessedEntities').then(m => (\n <m.NfsUnprocessedEntities />\n )),\n },\n});\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesNavItem = NavItemBlueprint.make({\n params: {\n title: 'Unprocessed Entities',\n routeRef: rootRouteRef,\n icon: QueueIcon,\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'catalog-unprocessed-entities',\n title: 'Unprocessed Entities',\n icon: <QueueIcon fontSize=\"inherit\" />,\n info: { packageJson: () => import('../../package.json') },\n routes: {\n root: rootRouteRef,\n },\n extensions: [\n catalogUnprocessedEntitiesApi,\n catalogUnprocessedEntitiesPage,\n catalogUnprocessedEntitiesNavItem,\n ],\n});\n"],"names":[],"mappings":";;;;;;AAiCO,MAAM,6BAAA,GAAgC,aAAa,IAAA,CAAK;AAAA,EAC7D,MAAA,EAAQ,kBACN,YAAA,CAAa;AAAA,IACX,GAAA,EAAK,gCAAA;AAAA,IACL,IAAA,EAAM;AAAA,MACJ,YAAA,EAAc,eAAA;AAAA,MACd,QAAA,EAAU;AAAA,KACZ;AAAA,IACA,OAAA,EAAS,CAAC,EAAE,YAAA,EAAc,UAAS,KACjC,IAAI,gCAAA,CAAiC,YAAA,EAAc,QAAQ;AAAA,GAC9D;AACL,CAAC;AAGM,MAAM,8BAAA,GAAiC,cAAc,IAAA,CAAK;AAAA,EAC/D,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,+BAAA;AAAA,IACN,QAAA,EAAU,YAAA;AAAA,IACV,MAAA,EAAQ,MACN,OAAO,0CAAmC,CAAA,CAAE,IAAA,CAAK,CAAA,CAAA,qBAC/C,GAAA,CAAC,CAAA,CAAE,sBAAA,EAAF,EAAyB,CAC3B;AAAA;AAEP,CAAC;AAGM,MAAM,iCAAA,GAAoC,iBAAiB,IAAA,CAAK;AAAA,EACrE,MAAA,EAAQ;AAAA,IACN,KAAA,EAAO,sBAAA;AAAA,IACP,QAAA,EAAU,YAAA;AAAA,IACV,IAAA,EAAM;AAAA;AAEV,CAAC;AAGD,aAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,8BAAA;AAAA,EACV,KAAA,EAAO,sBAAA;AAAA,EACP,IAAA,kBAAM,GAAA,CAAC,SAAA,EAAA,EAAU,QAAA,EAAS,SAAA,EAAU,CAAA;AAAA,EACpC,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,wBAAoB,CAAA,EAAE;AAAA,EACxD,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM;AAAA,GACR;AAAA,EACA,UAAA,EAAY;AAAA,IACV,6BAAA;AAAA,IACA,8BAAA;AAAA,IACA;AAAA;AAEJ,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createFrontendPlugin,\n discoveryApiRef,\n fetchApiRef,\n ApiBlueprint,\n PageBlueprint,\n NavItemBlueprint,\n SubPageBlueprint,\n} from '@backstage/frontend-plugin-api';\n\nimport {\n catalogUnprocessedEntitiesApiRef,\n CatalogUnprocessedEntitiesClient,\n} from '../api';\nimport QueueIcon from '@material-ui/icons/Queue';\nimport { rootRouteRef } from '../routes';\nimport { Container } from '@backstage/ui';\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesApi = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: catalogUnprocessedEntitiesApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) =>\n new CatalogUnprocessedEntitiesClient(discoveryApi, fetchApi),\n }),\n});\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesPage = PageBlueprint.make({\n disabled: true,\n params: {\n path: '/catalog-unprocessed-entities',\n routeRef: rootRouteRef,\n loader: () =>\n import('../components/UnprocessedEntities').then(m => (\n <m.NfsUnprocessedEntities />\n )),\n },\n});\n\n/** @alpha */\nexport const catalogUnprocessedEntitiesNavItem = NavItemBlueprint.make({\n params: {\n title: 'Unprocessed Entities',\n routeRef: rootRouteRef,\n icon: QueueIcon,\n },\n});\n\n/**\n * DevTools content for catalog unprocessed entities.\n *\n * @alpha\n */\nexport const unprocessedEntitiesDevToolsContent = SubPageBlueprint.make({\n attachTo: { id: 'page:devtools', input: 'pages' },\n params: {\n path: 'unprocessed-entities',\n title: 'Unprocessed Entities',\n loader: () =>\n import('../components/UnprocessedEntities').then(m => (\n <Container>\n <m.UnprocessedEntitiesContent />\n </Container>\n )),\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'catalog-unprocessed-entities',\n title: 'Unprocessed Entities',\n icon: <QueueIcon fontSize=\"inherit\" />,\n info: { packageJson: () => import('../../package.json') },\n routes: {\n root: rootRouteRef,\n },\n extensions: [\n catalogUnprocessedEntitiesApi,\n catalogUnprocessedEntitiesPage,\n catalogUnprocessedEntitiesNavItem,\n unprocessedEntitiesDevToolsContent,\n ],\n});\n"],"names":[],"mappings":";;;;;;;AAmCO,MAAM,6BAAA,GAAgC,aAAa,IAAA,CAAK;AAAA,EAC7D,MAAA,EAAQ,kBACN,YAAA,CAAa;AAAA,IACX,GAAA,EAAK,gCAAA;AAAA,IACL,IAAA,EAAM;AAAA,MACJ,YAAA,EAAc,eAAA;AAAA,MACd,QAAA,EAAU;AAAA,KACZ;AAAA,IACA,OAAA,EAAS,CAAC,EAAE,YAAA,EAAc,UAAS,KACjC,IAAI,gCAAA,CAAiC,YAAA,EAAc,QAAQ;AAAA,GAC9D;AACL,CAAC;AAGM,MAAM,8BAAA,GAAiC,cAAc,IAAA,CAAK;AAAA,EAC/D,QAAA,EAAU,IAAA;AAAA,EACV,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,+BAAA;AAAA,IACN,QAAA,EAAU,YAAA;AAAA,IACV,MAAA,EAAQ,MACN,OAAO,0CAAmC,CAAA,CAAE,IAAA,CAAK,CAAA,CAAA,qBAC/C,GAAA,CAAC,CAAA,CAAE,sBAAA,EAAF,EAAyB,CAC3B;AAAA;AAEP,CAAC;AAGM,MAAM,iCAAA,GAAoC,iBAAiB,IAAA,CAAK;AAAA,EACrE,MAAA,EAAQ;AAAA,IACN,KAAA,EAAO,sBAAA;AAAA,IACP,QAAA,EAAU,YAAA;AAAA,IACV,IAAA,EAAM;AAAA;AAEV,CAAC;AAOM,MAAM,kCAAA,GAAqC,iBAAiB,IAAA,CAAK;AAAA,EACtE,QAAA,EAAU,EAAE,EAAA,EAAI,eAAA,EAAiB,OAAO,OAAA,EAAQ;AAAA,EAChD,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,sBAAA;AAAA,IACN,KAAA,EAAO,sBAAA;AAAA,IACP,MAAA,EAAQ,MACN,OAAO,0CAAmC,EAAE,IAAA,CAAK,CAAA,CAAA,qBAC/C,GAAA,CAAC,SAAA,EAAA,EACC,QAAA,kBAAA,GAAA,CAAC,CAAA,CAAE,0BAAA,EAAF,EAA6B,GAChC,CACD;AAAA;AAEP,CAAC;AAGD,aAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,8BAAA;AAAA,EACV,KAAA,EAAO,sBAAA;AAAA,EACP,IAAA,kBAAM,GAAA,CAAC,SAAA,EAAA,EAAU,QAAA,EAAS,SAAA,EAAU,CAAA;AAAA,EACpC,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,wBAAoB,CAAA,EAAE;AAAA,EACxD,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM;AAAA,GACR;AAAA,EACA,UAAA,EAAY;AAAA,IACV,6BAAA;AAAA,IACA,8BAAA;AAAA,IACA,iCAAA;AAAA,IACA;AAAA;AAEJ,CAAC,CAAA;;;;"}
package/dist/alpha.d.ts CHANGED
@@ -72,37 +72,31 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
72
72
  noHeader?: boolean;
73
73
  };
74
74
  }>;
75
- }>;
76
-
77
- /**
78
- * DevTools content for catalog unprocessed entities.
79
- *
80
- * @alpha
81
- */
82
- declare const unprocessedEntitiesDevToolsContent: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
83
- kind: "sub-page";
84
- name: "unprocessed-entities";
85
- config: {
86
- path: string | undefined;
87
- title: string | undefined;
88
- };
89
- configInput: {
90
- title?: string | undefined;
91
- path?: string | undefined;
92
- };
93
- output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
94
- optional: true;
95
- }> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
96
- optional: true;
75
+ "sub-page:catalog-unprocessed-entities": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
76
+ kind: "sub-page";
77
+ name: undefined;
78
+ config: {
79
+ path: string | undefined;
80
+ title: string | undefined;
81
+ };
82
+ configInput: {
83
+ title?: string | undefined;
84
+ path?: string | undefined;
85
+ };
86
+ output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
87
+ optional: true;
88
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
89
+ optional: true;
90
+ }>;
91
+ inputs: {};
92
+ params: {
93
+ path: string;
94
+ title: string;
95
+ icon?: _backstage_frontend_plugin_api.IconElement;
96
+ loader: () => Promise<JSX.Element>;
97
+ routeRef?: _backstage_frontend_plugin_api.RouteRef;
98
+ };
97
99
  }>;
98
- inputs: {};
99
- params: {
100
- path: string;
101
- title: string;
102
- icon?: _backstage_frontend_plugin_api.IconElement;
103
- loader: () => Promise<JSX.Element>;
104
- routeRef?: _backstage_frontend_plugin_api.RouteRef;
105
- };
106
100
  }>;
107
101
 
108
- export { _default as default, unprocessedEntitiesDevToolsContent };
102
+ export { _default as default };
package/dist/alpha.esm.js CHANGED
@@ -1,3 +1,2 @@
1
1
  export { default } from './alpha/plugin.esm.js';
2
- export { unprocessedEntitiesDevToolsContent } from './alpha/devToolsContent.esm.js';
3
2
  //# sourceMappingURL=alpha.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"alpha.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
1
+ {"version":3,"file":"alpha.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,5 +1,5 @@
1
1
  var name = "@backstage/plugin-catalog-unprocessed-entities";
2
- var version = "0.2.27";
2
+ var version = "0.2.29-next.0";
3
3
  var backstage = {
4
4
  role: "frontend-plugin",
5
5
  pluginId: "catalog-unprocessed-entities",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-unprocessed-entities",
3
- "version": "0.2.27",
3
+ "version": "0.2.29-next.0",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "catalog-unprocessed-entities",
@@ -62,13 +62,13 @@
62
62
  "test": "backstage-cli package test"
63
63
  },
64
64
  "dependencies": {
65
- "@backstage/core-compat-api": "^0.5.9",
66
- "@backstage/core-components": "^0.18.8",
67
- "@backstage/core-plugin-api": "^1.12.4",
68
- "@backstage/errors": "^1.2.7",
69
- "@backstage/frontend-plugin-api": "^0.15.0",
70
- "@backstage/plugin-catalog-unprocessed-entities-common": "^0.0.13",
71
- "@backstage/ui": "^0.13.0",
65
+ "@backstage/core-compat-api": "0.5.10-next.0",
66
+ "@backstage/core-components": "0.18.9-next.0",
67
+ "@backstage/core-plugin-api": "1.12.5-next.0",
68
+ "@backstage/errors": "1.2.7",
69
+ "@backstage/frontend-plugin-api": "0.15.2-next.0",
70
+ "@backstage/plugin-catalog-unprocessed-entities-common": "0.0.13",
71
+ "@backstage/ui": "0.14.0-next.0",
72
72
  "@material-ui/core": "^4.9.13",
73
73
  "@material-ui/icons": "^4.9.1",
74
74
  "@material-ui/lab": "^4.0.0-alpha.60",
@@ -76,8 +76,8 @@
76
76
  "react-use": "^17.2.4"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/cli": "^0.36.0",
80
- "@backstage/dev-utils": "^1.1.21",
79
+ "@backstage/cli": "0.36.1-next.0",
80
+ "@backstage/dev-utils": "1.1.22-next.0",
81
81
  "@testing-library/jest-dom": "^6.0.0",
82
82
  "@testing-library/react": "^16.0.0",
83
83
  "@types/react": "^18.0.0",
@@ -1,16 +0,0 @@
1
- import { jsx } from 'react/jsx-runtime';
2
- import { SubPageBlueprint } from '@backstage/frontend-plugin-api';
3
- import { Content } from '@backstage/core-components';
4
-
5
- const unprocessedEntitiesDevToolsContent = SubPageBlueprint.make({
6
- attachTo: { id: "page:devtools", input: "pages" },
7
- name: "unprocessed-entities",
8
- params: {
9
- path: "unprocessed-entities",
10
- title: "Unprocessed Entities",
11
- loader: () => import('../components/UnprocessedEntities.esm.js').then((m) => /* @__PURE__ */ jsx(Content, { children: /* @__PURE__ */ jsx(m.UnprocessedEntitiesContent, {}) }))
12
- }
13
- });
14
-
15
- export { unprocessedEntitiesDevToolsContent };
16
- //# sourceMappingURL=devToolsContent.esm.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"devToolsContent.esm.js","sources":["../../src/alpha/devToolsContent.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SubPageBlueprint } from '@backstage/frontend-plugin-api';\nimport { Content } from '@backstage/core-components';\n\n/**\n * DevTools content for catalog unprocessed entities.\n *\n * @alpha\n */\nexport const unprocessedEntitiesDevToolsContent = SubPageBlueprint.make({\n attachTo: { id: 'page:devtools', input: 'pages' },\n name: 'unprocessed-entities',\n params: {\n path: 'unprocessed-entities',\n title: 'Unprocessed Entities',\n loader: () =>\n import('../components/UnprocessedEntities').then(m => (\n <Content>\n <m.UnprocessedEntitiesContent />\n </Content>\n )),\n },\n});\n"],"names":[],"mappings":";;;;AAwBO,MAAM,kCAAA,GAAqC,iBAAiB,IAAA,CAAK;AAAA,EACtE,QAAA,EAAU,EAAE,EAAA,EAAI,eAAA,EAAiB,OAAO,OAAA,EAAQ;AAAA,EAChD,IAAA,EAAM,sBAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,sBAAA;AAAA,IACN,KAAA,EAAO,sBAAA;AAAA,IACP,MAAA,EAAQ,MACN,OAAO,0CAAmC,EAAE,IAAA,CAAK,CAAA,CAAA,qBAC/C,GAAA,CAAC,OAAA,EAAA,EACC,QAAA,kBAAA,GAAA,CAAC,CAAA,CAAE,0BAAA,EAAF,EAA6B,GAChC,CACD;AAAA;AAEP,CAAC;;;;"}