@f5-sales-demo/xcsh 19.95.0 → 19.95.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5-sales-demo/xcsh",
4
- "version": "19.95.0",
4
+ "version": "19.95.2",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -57,13 +57,13 @@
57
57
  "dependencies": {
58
58
  "@agentclientprotocol/sdk": "1.3.0",
59
59
  "@mozilla/readability": "^0.6",
60
- "@f5-sales-demo/xcsh-stats": "19.95.0",
61
- "@f5-sales-demo/pi-agent-core": "19.95.0",
62
- "@f5-sales-demo/pi-ai": "19.95.0",
63
- "@f5-sales-demo/pi-natives": "19.95.0",
64
- "@f5-sales-demo/pi-resource-management": "19.95.0",
65
- "@f5-sales-demo/pi-tui": "19.95.0",
66
- "@f5-sales-demo/pi-utils": "19.95.0",
60
+ "@f5-sales-demo/xcsh-stats": "19.95.2",
61
+ "@f5-sales-demo/pi-agent-core": "19.95.2",
62
+ "@f5-sales-demo/pi-ai": "19.95.2",
63
+ "@f5-sales-demo/pi-natives": "19.95.2",
64
+ "@f5-sales-demo/pi-resource-management": "19.95.2",
65
+ "@f5-sales-demo/pi-tui": "19.95.2",
66
+ "@f5-sales-demo/pi-utils": "19.95.2",
67
67
  "@sinclair/typebox": "^0.34",
68
68
  "@xterm/headless": "^6.0",
69
69
  "ajv": "^8.20",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "19.95.0",
21
- "commit": "6239a5a701200eab5295f16c6b7698898480d4b0",
22
- "shortCommit": "6239a5a",
20
+ "version": "19.95.2",
21
+ "commit": "95ee4dfa4f70938a037aa315296536deb9da8842",
22
+ "shortCommit": "95ee4df",
23
23
  "branch": "main",
24
- "tag": "v19.95.0",
25
- "commitDate": "2026-07-26T17:07:54Z",
26
- "buildDate": "2026-07-26T17:33:27.485Z",
24
+ "tag": "v19.95.2",
25
+ "commitDate": "2026-07-27T11:29:51Z",
26
+ "buildDate": "2026-07-27T11:51:22.869Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5-sales-demo/xcsh",
30
30
  "repoSlug": "f5-sales-demo/xcsh",
31
- "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/6239a5a701200eab5295f16c6b7698898480d4b0",
32
- "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.95.0"
31
+ "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/95ee4dfa4f70938a037aa315296536deb9da8842",
32
+ "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.95.2"
33
33
  };
@@ -2,10 +2,10 @@
2
2
 
3
3
  import type { ConsoleCatalogData } from "./console-catalog-types";
4
4
 
5
- export const CONSOLE_CATALOG_VERSION = "d0c5c7c4ceba9b377124550ebf66b9a13717f5ff";
5
+ export const CONSOLE_CATALOG_VERSION = "6bc37113b222827033ee81fc8f009344ca11058b";
6
6
 
7
7
  export const CONSOLE_CATALOG_DATA: ConsoleCatalogData = {
8
- version: "d0c5c7c4ceba9b377124550ebf66b9a13717f5ff",
8
+ version: "6bc37113b222827033ee81fc8f009344ca11058b",
9
9
  workflows: {
10
10
  "address-allocator/create":
11
11
  'schema: urn:xcsh:console:workflow:v1\nid: address-allocator-create\nlabel: Create IP Address Allocators\nresource: address-allocator\noperation: create\npreconditions:\n - user_logged_in\n - namespace_selected\n - "role_minimum: admin"\nparams:\n namespace:\n required: true\n description: Target namespace\n example: demo\n name:\n required: true\n description: IP Address Allocators name (lowercase alphanumeric and hyphens)\n example: example-address-allocator\n address_allocator_mode:\n required: true\n description: Address Allocator Mode\n allocation_unit:\n required: false\n description: Allocation Unit\n default: 0\n address_pool:\n required: false\n description: Address Pool\n default: value\n address_allocation_scheme:\n required: false\n description: "Server-required: Field should be not nil"\n default: value\nsteps:\n - id: navigate-to-list\n action: navigate\n url: /web/workspaces/multi-cloud-network-connect/manage/networking/legacy_network_configuration/address_allocators\n wait_for: text(\'IP Address Allocators\')\n description: Navigate to IP Address Allocators list page\n - id: click-add-tab\n action: click\n selector: text(\'Add IP Address Allocator\')\n wait_for: textbox[name=\'Name\']\n description: Click Add IP Address Allocator to open the create form\n - id: fill-name\n action: fill\n selector: textbox[name=\'Name\']\n value: "{name}"\n description: Enter Name\n - id: select-address_allocator_mode\n action: select\n selector: listbox\n context: Address Allocator Mode section\n value: "{address_allocator_mode}"\n description: Select Address Allocator Mode\n - id: fill-allocation_unit\n action: fill\n selector: spinbutton[name=\'Allocation Unit\']\n value: "{allocation_unit}"\n description: Set Allocation Unit\n - id: fill-address_pool\n action: fill\n selector: ngx-datatable input.form-control\n context: Address Pool table\n value: "{address_pool}"\n description: Enter Address Pool in the existing table row (no Add Item needed — the table ships one empty row)\n - id: select-address_allocation_scheme\n action: select\n selector: listbox\n context: Address Allocation Scheme section\n value: "{address_allocation_scheme}"\n description: Select Address Allocation Scheme\n - id: save\n action: click\n selector: "[class*=\'save-bt\'],[class*=\'submit-button\']"\n context: footer\n wait_for: text(\'{name}\')\n wait_timeout_ms: 30000\n description: Save/submit the form (union selector matches save-bt OR submit-button)\npostconditions:\n - resource_list_page_visible\n - "resource_name_in_list: {name}"\nmetadata:\n confidence: inferred\n discovered_at: 2026-06-24\n console_version: "2025.06"\n notes: Auto-generated by scripts/generate-workflows.ts from api-specs-enriched field metadata.\n',