@ikas/code-components-mcp 0.133.0 → 1.1.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-22T15:43:26.831Z",
2
+ "generatedAt": "2026-04-29T14:12:43.014Z",
3
3
  "functions": [
4
4
  {
5
5
  "name": "fbp_initAdvancedMatching",
@@ -16209,6 +16209,26 @@
16209
16209
  "isClass": true,
16210
16210
  "className": "Router"
16211
16211
  },
16212
+ {
16213
+ "name": "Router.router_getQueryParams",
16214
+ "displayName": "getQueryParams",
16215
+ "signature": "static Router.router_getQueryParams(): Record<string, string>",
16216
+ "description": "Get the current URL query parameters as an object.",
16217
+ "params": [],
16218
+ "returns": "Object containing query parameters parsed from the current URL",
16219
+ "returnType": "Record<string, string>",
16220
+ "example": "```typescript\nimport { Router } from \"@ikas/bp-storefront\";\n\n// URL: /search?q=shoes&color=red\nconst query = Router.router_getQueryParams();\nconsole.log(query.q); // \"shoes\"\nconsole.log(query.color); // \"red\"\n```",
16221
+ "categories": [
16222
+ "Navigation"
16223
+ ],
16224
+ "related": [
16225
+ "getCurrentPath",
16226
+ "getPageParams"
16227
+ ],
16228
+ "isAsync": false,
16229
+ "isClass": true,
16230
+ "className": "Router"
16231
+ },
16212
16232
  {
16213
16233
  "name": "isBrowser",
16214
16234
  "signature": "function isBrowser(yes?: () => void, no?: () => void): void",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-22T15:43:26.879Z",
2
+ "generatedAt": "2026-04-29T14:12:43.040Z",
3
3
  "types": [
4
4
  {
5
5
  "name": "IkasProductAttributeDetail",
@@ -10698,6 +10698,11 @@
10698
10698
  "type": "IkasStorefrontPopupDisplaySettings",
10699
10699
  "optional": false
10700
10700
  },
10701
+ {
10702
+ "name": "hideFilters",
10703
+ "type": "IkasStorefrontPopupDisplayFilter[] | null",
10704
+ "optional": false
10705
+ },
10701
10706
  {
10702
10707
  "name": "name",
10703
10708
  "type": "string",
@@ -10787,7 +10792,7 @@
10787
10792
  "properties": [
10788
10793
  {
10789
10794
  "name": "operator",
10790
- "type": "string",
10795
+ "type": "IkasStorefrontPopupDisplayFilterOperatorEnum",
10791
10796
  "optional": false
10792
10797
  },
10793
10798
  {
@@ -10797,7 +10802,7 @@
10797
10802
  },
10798
10803
  {
10799
10804
  "name": "value",
10800
- "type": "string",
10805
+ "type": "string[]",
10801
10806
  "optional": false
10802
10807
  }
10803
10808
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/code-components-mcp",
3
- "version": "0.133.0",
3
+ "version": "1.1.0",
4
4
  "description": "MCP server for ikas code components documentation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",