@robinmordasiewicz/f5xc-xcsh 2.0.21-2601091525 → 2.0.21-2601091656
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/index.js +5 -22
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -46994,8 +46994,8 @@ function getLogoModeFromEnv(envPrefix) {
|
|
|
46994
46994
|
var CLI_NAME = "xcsh";
|
|
46995
46995
|
var CLI_FULL_NAME = "F5 Distributed Cloud Shell";
|
|
46996
46996
|
function getVersion() {
|
|
46997
|
-
if ("v2.0.21-
|
|
46998
|
-
return "v2.0.21-
|
|
46997
|
+
if ("v2.0.21-2601091656") {
|
|
46998
|
+
return "v2.0.21-2601091656";
|
|
46999
46999
|
}
|
|
47000
47000
|
if (process.env.XCSH_VERSION) {
|
|
47001
47001
|
return process.env.XCSH_VERSION;
|
|
@@ -74587,7 +74587,6 @@ var listCommand = {
|
|
|
74587
74587
|
description: "Display all saved connection profiles with their tenant URLs and authentication types. Highlights the currently active profile for easy identification when managing multiple tenants.",
|
|
74588
74588
|
descriptionShort: "List all saved profiles",
|
|
74589
74589
|
descriptionMedium: "Show all profiles with tenant URLs, auth types, and active status indicator.",
|
|
74590
|
-
aliases: ["ls"],
|
|
74591
74590
|
async execute(args, session) {
|
|
74592
74591
|
const { options } = parseDomainOutputFlags(
|
|
74593
74592
|
args,
|
|
@@ -76740,7 +76739,6 @@ var statusCommand = {
|
|
|
76740
76739
|
descriptionShort: "Get overall cloud status indicator",
|
|
76741
76740
|
descriptionMedium: "Check overall service health status. Use --quiet for exit code suitable for scripts.",
|
|
76742
76741
|
usage: "[--quiet]",
|
|
76743
|
-
aliases: ["st"],
|
|
76744
76742
|
async execute(args, session) {
|
|
76745
76743
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs(
|
|
76746
76744
|
args,
|
|
@@ -76792,7 +76790,6 @@ var summaryCommand = {
|
|
|
76792
76790
|
descriptionShort: "Get complete status summary",
|
|
76793
76791
|
descriptionMedium: "Show combined overview of health, components, incidents, and maintenance windows.",
|
|
76794
76792
|
usage: "[--brief]",
|
|
76795
|
-
aliases: ["sum"],
|
|
76796
76793
|
async execute(args, session) {
|
|
76797
76794
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs(
|
|
76798
76795
|
args,
|
|
@@ -76832,7 +76829,6 @@ var componentsCommand = {
|
|
|
76832
76829
|
descriptionShort: "List all components and status",
|
|
76833
76830
|
descriptionMedium: "Display service component health. Use --degraded-only to show only affected components.",
|
|
76834
76831
|
usage: "[--degraded-only]",
|
|
76835
|
-
aliases: ["comp"],
|
|
76836
76832
|
async execute(args, session) {
|
|
76837
76833
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs(
|
|
76838
76834
|
args,
|
|
@@ -76889,7 +76885,6 @@ var incidentsCommand = {
|
|
|
76889
76885
|
descriptionShort: "List active and recent incidents",
|
|
76890
76886
|
descriptionMedium: "Display incidents with impact levels and updates. Use --active-only for ongoing issues.",
|
|
76891
76887
|
usage: "[--active-only]",
|
|
76892
|
-
aliases: ["inc"],
|
|
76893
76888
|
async execute(args, session) {
|
|
76894
76889
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs(
|
|
76895
76890
|
args,
|
|
@@ -76942,7 +76937,6 @@ var maintenanceCommand = {
|
|
|
76942
76937
|
descriptionShort: "List scheduled maintenance windows",
|
|
76943
76938
|
descriptionMedium: "Show maintenance schedules and timing. Use --upcoming for future windows only.",
|
|
76944
76939
|
usage: "[--upcoming]",
|
|
76945
|
-
aliases: ["maint"],
|
|
76946
76940
|
async execute(args, session) {
|
|
76947
76941
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs(
|
|
76948
76942
|
args,
|
|
@@ -77112,7 +77106,7 @@ var cloudstatusDomain = {
|
|
|
77112
77106
|
]),
|
|
77113
77107
|
subcommands: /* @__PURE__ */ new Map()
|
|
77114
77108
|
};
|
|
77115
|
-
var cloudstatusAliases = [
|
|
77109
|
+
var cloudstatusAliases = [];
|
|
77116
77110
|
|
|
77117
77111
|
// src/completion/registry.ts
|
|
77118
77112
|
var CompletionRegistry = class {
|
|
@@ -78932,15 +78926,7 @@ var aiServicesDomain = {
|
|
|
78932
78926
|
]),
|
|
78933
78927
|
subcommands: /* @__PURE__ */ new Map([["eval", evalSubcommands]])
|
|
78934
78928
|
};
|
|
78935
|
-
var aiServicesAliases = [
|
|
78936
|
-
"ai",
|
|
78937
|
-
"genai",
|
|
78938
|
-
"assistant",
|
|
78939
|
-
"query",
|
|
78940
|
-
"ask",
|
|
78941
|
-
"q",
|
|
78942
|
-
"chat"
|
|
78943
|
-
];
|
|
78929
|
+
var aiServicesAliases = [];
|
|
78944
78930
|
|
|
78945
78931
|
// src/domains/subscription/client.ts
|
|
78946
78932
|
var SubscriptionClient = class {
|
|
@@ -79416,7 +79402,6 @@ var showCommand3 = {
|
|
|
79416
79402
|
descriptionShort: "Display subscription overview",
|
|
79417
79403
|
descriptionMedium: "Show subscription tier, active addons, quota usage summary, and current billing status.",
|
|
79418
79404
|
usage: "",
|
|
79419
|
-
aliases: ["overview", "info"],
|
|
79420
79405
|
async execute(args, session) {
|
|
79421
79406
|
const { format, noColor, spec } = parseOutputArgs2(args, session);
|
|
79422
79407
|
if (spec) {
|
|
@@ -79639,7 +79624,6 @@ var addonListCommand = {
|
|
|
79639
79624
|
descriptionShort: "List addon services",
|
|
79640
79625
|
descriptionMedium: "Display all addon services with status and access information. Use --subscribed for active only.",
|
|
79641
79626
|
usage: "[--subscribed]",
|
|
79642
|
-
aliases: ["ls"],
|
|
79643
79627
|
async execute(args, session) {
|
|
79644
79628
|
const { format, noColor, spec, filteredArgs } = parseOutputArgs2(
|
|
79645
79629
|
args,
|
|
@@ -80304,7 +80288,6 @@ var reportSummaryCommand = {
|
|
|
80304
80288
|
descriptionShort: "Generate subscription report",
|
|
80305
80289
|
descriptionMedium: "Create comprehensive report with plan, addons, quotas, usage, and billing data.",
|
|
80306
80290
|
usage: "",
|
|
80307
|
-
aliases: ["full"],
|
|
80308
80291
|
async execute(args, session) {
|
|
80309
80292
|
const { format, noColor, spec } = parseOutputArgs2(args, session);
|
|
80310
80293
|
if (spec) {
|
|
@@ -80476,7 +80459,7 @@ var subscriptionDomain = {
|
|
|
80476
80459
|
["report", reportSubcommands]
|
|
80477
80460
|
])
|
|
80478
80461
|
};
|
|
80479
|
-
var subscriptionAliases = [
|
|
80462
|
+
var subscriptionAliases = [];
|
|
80480
80463
|
|
|
80481
80464
|
// src/domains/index.ts
|
|
80482
80465
|
customDomains.register(loginDomain);
|