@ikas/code-components-mcp 1.4.0-beta.10 → 1.4.0-beta.12

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-05-12T14:40:10.710Z",
2
+ "generatedAt": "2026-05-13T13:56:41.830Z",
3
3
  "functions": [
4
4
  {
5
5
  "name": "fbp_initAdvancedMatching",
@@ -7622,6 +7622,32 @@
7622
7622
  "IkasProductOption"
7623
7623
  ]
7624
7624
  },
7625
+ {
7626
+ "name": "hasDisplayedOptions",
7627
+ "signature": "function hasDisplayedOptions(optionSet: IkasProductOptionSet): boolean",
7628
+ "description": "Checks whether the option set has any displayed (top-level) options.",
7629
+ "params": [
7630
+ {
7631
+ "name": "optionSet",
7632
+ "description": "- The product option set to check."
7633
+ }
7634
+ ],
7635
+ "returns": "True if there is at least one displayed option, false otherwise.",
7636
+ "returnType": "boolean",
7637
+ "example": "```typescript\nimport { hasDisplayedOptions } from \"@ikas/bp-storefront\";\nif (hasDisplayedOptions(product.optionSet)) {\n // render option selector\n}\n```",
7638
+ "categories": [
7639
+ "ProductOptionSet"
7640
+ ],
7641
+ "related": [
7642
+ "getDisplayedOptions",
7643
+ "hasValidProductOptionSetValues"
7644
+ ],
7645
+ "isAsync": false,
7646
+ "isClass": false,
7647
+ "parameterTypes": [
7648
+ "IkasProductOptionSet"
7649
+ ]
7650
+ },
7625
7651
  {
7626
7652
  "name": "initProductOptionSetValues",
7627
7653
  "displayName": "initValues",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-05-12T14:40:10.736Z",
2
+ "generatedAt": "2026-05-13T13:56:41.860Z",
3
3
  "types": [
4
4
  {
5
5
  "name": "IkasProductAttributeDetail",
@@ -8030,6 +8030,7 @@
8030
8030
  "setChildOptions",
8031
8031
  "initOptionValues",
8032
8032
  "getDisplayedOptions",
8033
+ "hasDisplayedOptions",
8033
8034
  "initProductOptionSetValues",
8034
8035
  "hasValidProductOptionSetValues",
8035
8036
  "initIkasProductOptionSet"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/code-components-mcp",
3
- "version": "1.4.0-beta.10",
3
+ "version": "1.4.0-beta.12",
4
4
  "description": "MCP server for ikas code components documentation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",