@terasky/backstage-plugin-vcf-automation 1.1.1 → 1.3.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/dist/api/VcfAutomationClient.esm.js +140 -0
- package/dist/api/VcfAutomationClient.esm.js.map +1 -1
- package/dist/components/VCFAutomationCCINamespaceDetails.esm.js +180 -0
- package/dist/components/VCFAutomationCCINamespaceDetails.esm.js.map +1 -0
- package/dist/components/VCFAutomationCCINamespaceOverview.esm.js +187 -0
- package/dist/components/VCFAutomationCCINamespaceOverview.esm.js.map +1 -0
- package/dist/components/VCFAutomationCCIResourceDetails.esm.js +459 -0
- package/dist/components/VCFAutomationCCIResourceDetails.esm.js.map +1 -0
- package/dist/components/VCFAutomationCCIResourceOverview.esm.js +341 -0
- package/dist/components/VCFAutomationCCIResourceOverview.esm.js.map +1 -0
- package/dist/components/VCFAutomationProjectDetails.esm.js +25 -8
- package/dist/components/VCFAutomationProjectDetails.esm.js.map +1 -1
- package/dist/components/VCFAutomationProjectOverview.esm.js +17 -6
- package/dist/components/VCFAutomationProjectOverview.esm.js.map +1 -1
- package/dist/components/VCFAutomationVMPowerManagement.esm.js +262 -0
- package/dist/components/VCFAutomationVMPowerManagement.esm.js.map +1 -0
- package/dist/index.d.ts +182 -18
- package/dist/index.esm.js +5 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/plugin.esm.js +28 -0
- package/dist/plugin.esm.js.map +1 -1
- package/package.json +4 -2
package/dist/plugin.esm.js
CHANGED
|
@@ -77,6 +77,34 @@ vcfAutomationPlugin.provide(
|
|
|
77
77
|
mountPoint: rootRouteRef
|
|
78
78
|
})
|
|
79
79
|
);
|
|
80
|
+
vcfAutomationPlugin.provide(
|
|
81
|
+
createRoutableExtension({
|
|
82
|
+
name: "VcfAutomationCCINamespaceOverview",
|
|
83
|
+
component: () => import('./components/VCFAutomationCCINamespaceOverview.esm.js').then((m) => m.VCFAutomationCCINamespaceOverview),
|
|
84
|
+
mountPoint: rootRouteRef
|
|
85
|
+
})
|
|
86
|
+
);
|
|
87
|
+
vcfAutomationPlugin.provide(
|
|
88
|
+
createRoutableExtension({
|
|
89
|
+
name: "VcfAutomationCCINamespaceDetails",
|
|
90
|
+
component: () => import('./components/VCFAutomationCCINamespaceDetails.esm.js').then((m) => m.VCFAutomationCCINamespaceDetails),
|
|
91
|
+
mountPoint: rootRouteRef
|
|
92
|
+
})
|
|
93
|
+
);
|
|
94
|
+
vcfAutomationPlugin.provide(
|
|
95
|
+
createRoutableExtension({
|
|
96
|
+
name: "VcfAutomationCCIResourceOverview",
|
|
97
|
+
component: () => import('./components/VCFAutomationCCIResourceOverview.esm.js').then((m) => m.VCFAutomationCCIResourceOverview),
|
|
98
|
+
mountPoint: rootRouteRef
|
|
99
|
+
})
|
|
100
|
+
);
|
|
101
|
+
vcfAutomationPlugin.provide(
|
|
102
|
+
createRoutableExtension({
|
|
103
|
+
name: "VcfAutomationCCIResourceDetails",
|
|
104
|
+
component: () => import('./components/VCFAutomationCCIResourceDetails.esm.js').then((m) => m.VCFAutomationCCIResourceDetails),
|
|
105
|
+
mountPoint: rootRouteRef
|
|
106
|
+
})
|
|
107
|
+
);
|
|
80
108
|
|
|
81
109
|
export { catalogIndexRouteRef, vcfAutomationPlugin };
|
|
82
110
|
//# sourceMappingURL=plugin.esm.js.map
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["import {\n createPlugin,\n createApiFactory,\n discoveryApiRef,\n identityApiRef,\n createRoutableExtension,\n createExternalRouteRef,\n} from '@backstage/core-plugin-api';\nimport { rootRouteRef } from './routes';\nimport { vcfAutomationApiRef, VcfAutomationClient } from './api';\n\nexport const catalogIndexRouteRef = createExternalRouteRef({\n id: 'catalog-index',\n});\n\nexport const vcfAutomationPlugin = createPlugin({\n id: 'vcf-automation',\n apis: [\n createApiFactory({\n api: vcfAutomationApiRef,\n deps: { discoveryApi: discoveryApiRef, identityApi: identityApiRef },\n factory: ({ discoveryApi, identityApi }) =>\n new VcfAutomationClient({ discoveryApi, identityApi }),\n }),\n ],\n routes: {\n root: rootRouteRef,\n },\n externalRoutes: {\n catalogIndex: catalogIndexRouteRef,\n },\n});\n\nexport const VcfAutomationDeploymentDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationDeploymentDetails',\n component: () =>\n import('./components/VCFAutomationDeploymentDetails').then(m => m.VCFAutomationDeploymentDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationVSphereVMDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationVSphereVMDetails',\n component: () =>\n import('./components/VCFAutomationVSphereVMDetails').then(m => m.VCFAutomationVSphereVMDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationProjectDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationProjectDetails',\n component: () =>\n import('./components/VCFAutomationProjectDetails').then(m => m.VCFAutomationProjectDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationDeploymentOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationDeploymentOverview',\n component: () =>\n import('./components/VCFAutomationDeploymentOverview').then(m => m.VCFAutomationDeploymentOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationVSphereVMOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationVSphereVMOverview',\n component: () =>\n import('./components/VCFAutomationVSphereVMOverview').then(m => m.VCFAutomationVSphereVMOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationProjectOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationProjectOverview',\n component: () =>\n import('./components/VCFAutomationProjectOverview').then(m => m.VCFAutomationProjectOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationGenericResourceDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationGenericResourceDetails',\n component: () =>\n import('./components/VCFAutomationGenericResourceDetails').then(m => m.VCFAutomationGenericResourceDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationGenericResourceOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationGenericResourceOverview',\n component: () =>\n import('./components/VCFAutomationGenericResourceOverview').then(m => m.VCFAutomationGenericResourceOverview),\n mountPoint: rootRouteRef,\n }),\n);\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["import {\n createPlugin,\n createApiFactory,\n discoveryApiRef,\n identityApiRef,\n createRoutableExtension,\n createExternalRouteRef,\n} from '@backstage/core-plugin-api';\nimport { rootRouteRef } from './routes';\nimport { vcfAutomationApiRef, VcfAutomationClient } from './api';\n\nexport const catalogIndexRouteRef = createExternalRouteRef({\n id: 'catalog-index',\n});\n\nexport const vcfAutomationPlugin = createPlugin({\n id: 'vcf-automation',\n apis: [\n createApiFactory({\n api: vcfAutomationApiRef,\n deps: { discoveryApi: discoveryApiRef, identityApi: identityApiRef },\n factory: ({ discoveryApi, identityApi }) =>\n new VcfAutomationClient({ discoveryApi, identityApi }),\n }),\n ],\n routes: {\n root: rootRouteRef,\n },\n externalRoutes: {\n catalogIndex: catalogIndexRouteRef,\n },\n});\n\nexport const VcfAutomationDeploymentDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationDeploymentDetails',\n component: () =>\n import('./components/VCFAutomationDeploymentDetails').then(m => m.VCFAutomationDeploymentDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationVSphereVMDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationVSphereVMDetails',\n component: () =>\n import('./components/VCFAutomationVSphereVMDetails').then(m => m.VCFAutomationVSphereVMDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationProjectDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationProjectDetails',\n component: () =>\n import('./components/VCFAutomationProjectDetails').then(m => m.VCFAutomationProjectDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationDeploymentOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationDeploymentOverview',\n component: () =>\n import('./components/VCFAutomationDeploymentOverview').then(m => m.VCFAutomationDeploymentOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationVSphereVMOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationVSphereVMOverview',\n component: () =>\n import('./components/VCFAutomationVSphereVMOverview').then(m => m.VCFAutomationVSphereVMOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationProjectOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationProjectOverview',\n component: () =>\n import('./components/VCFAutomationProjectOverview').then(m => m.VCFAutomationProjectOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationGenericResourceDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationGenericResourceDetails',\n component: () =>\n import('./components/VCFAutomationGenericResourceDetails').then(m => m.VCFAutomationGenericResourceDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationGenericResourceOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationGenericResourceOverview',\n component: () =>\n import('./components/VCFAutomationGenericResourceOverview').then(m => m.VCFAutomationGenericResourceOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationCCINamespaceOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationCCINamespaceOverview',\n component: () =>\n import('./components/VCFAutomationCCINamespaceOverview').then(m => m.VCFAutomationCCINamespaceOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationCCINamespaceDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationCCINamespaceDetails',\n component: () =>\n import('./components/VCFAutomationCCINamespaceDetails').then(m => m.VCFAutomationCCINamespaceDetails),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationCCIResourceOverview = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationCCIResourceOverview',\n component: () =>\n import('./components/VCFAutomationCCIResourceOverview').then(m => m.VCFAutomationCCIResourceOverview),\n mountPoint: rootRouteRef,\n }),\n);\n\nexport const VcfAutomationCCIResourceDetails = vcfAutomationPlugin.provide(\n createRoutableExtension({\n name: 'VcfAutomationCCIResourceDetails',\n component: () =>\n import('./components/VCFAutomationCCIResourceDetails').then(m => m.VCFAutomationCCIResourceDetails),\n mountPoint: rootRouteRef,\n }),\n);\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terasky/backstage-plugin-vcf-automation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"@material-ui/core": "^4.12.4",
|
|
44
44
|
"@material-ui/icons": "^4.11.3",
|
|
45
45
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
46
|
-
"@terasky/backstage-plugin-vcf-automation-common": "^1.0
|
|
46
|
+
"@terasky/backstage-plugin-vcf-automation-common": "^1.1.0",
|
|
47
|
+
"js-yaml": "^4.1.0",
|
|
47
48
|
"react-use": "^17.6.0"
|
|
48
49
|
},
|
|
49
50
|
"peerDependencies": {
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"@testing-library/jest-dom": "^5.10.1",
|
|
60
61
|
"@testing-library/react": "^12.1.3",
|
|
61
62
|
"@testing-library/user-event": "^14.0.0",
|
|
63
|
+
"@types/js-yaml": "^4.0.5",
|
|
62
64
|
"@types/node": "*",
|
|
63
65
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
64
66
|
"msw": "^1.0.0"
|