@robinmordasiewicz/f5xc-xcsh 1.0.91-2601040443 → 1.0.91-2601040531

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -47052,8 +47052,8 @@ function getLogoModeFromEnv(envPrefix) {
47052
47052
  var CLI_NAME = "xcsh";
47053
47053
  var CLI_FULL_NAME = "F5 Distributed Cloud Shell";
47054
47054
  function getVersion() {
47055
- if ("v1.0.91-2601040443") {
47056
- return "v1.0.91-2601040443";
47055
+ if ("v1.0.91-2601040531") {
47056
+ return "v1.0.91-2601040531";
47057
47057
  }
47058
47058
  if (process.env.XCSH_VERSION) {
47059
47059
  return process.env.XCSH_VERSION;
@@ -47964,7 +47964,13 @@ function getValue(row, accessor) {
47964
47964
  if (typeof accessor === "function") {
47965
47965
  return accessor(row);
47966
47966
  }
47967
- const value = row[accessor];
47967
+ let value = row[accessor];
47968
+ if (value === null || value === void 0) {
47969
+ const metadata = row["metadata"];
47970
+ if (metadata && typeof metadata === "object") {
47971
+ value = metadata[accessor];
47972
+ }
47973
+ }
47968
47974
  if (value === null || value === void 0) {
47969
47975
  return "";
47970
47976
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robinmordasiewicz/f5xc-xcsh",
3
- "version": "1.0.91-2601040443",
3
+ "version": "1.0.91-2601040531",
4
4
  "description": "F5 Distributed Cloud Shell - Interactive CLI for F5 XC",
5
5
  "type": "module",
6
6
  "bin": {