@ikas/code-components-mcp 0.132.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.
- package/data/storefront-api.json +53 -1
- package/data/storefront-types.json +13 -3
- package/package.json +1 -1
package/data/storefront-api.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-04-
|
|
2
|
+
"generatedAt": "2026-04-29T14:12:43.014Z",
|
|
3
3
|
"functions": [
|
|
4
4
|
{
|
|
5
5
|
"name": "fbp_initAdvancedMatching",
|
|
@@ -10661,6 +10661,38 @@
|
|
|
10661
10661
|
"isAsync": false,
|
|
10662
10662
|
"isClass": false
|
|
10663
10663
|
},
|
|
10664
|
+
{
|
|
10665
|
+
"name": "setAccountInfoFormIsMarketingAccepted",
|
|
10666
|
+
"displayName": "setIsMarketingAccepted",
|
|
10667
|
+
"signature": "function setAccountInfoFormIsMarketingAccepted(accountInfoForm: AccountInfoForm, value: boolean): void",
|
|
10668
|
+
"description": "Sets the marketing acceptance field on the account info form and re-validates if the form has already been submitted.",
|
|
10669
|
+
"params": [
|
|
10670
|
+
{
|
|
10671
|
+
"name": "accountInfoForm",
|
|
10672
|
+
"description": "- The AccountInfoForm instance to update."
|
|
10673
|
+
},
|
|
10674
|
+
{
|
|
10675
|
+
"name": "value",
|
|
10676
|
+
"description": "- The new marketing acceptance value."
|
|
10677
|
+
}
|
|
10678
|
+
],
|
|
10679
|
+
"returns": "void",
|
|
10680
|
+
"returnType": "void",
|
|
10681
|
+
"example": "```typescript\nimport { setAccountInfoFormIsMarketingAccepted } from \"@ikas/bp-storefront\";\nsetAccountInfoFormIsMarketingAccepted(accountInfoForm, true);\n```",
|
|
10682
|
+
"categories": [
|
|
10683
|
+
"AccountInfo",
|
|
10684
|
+
"Form"
|
|
10685
|
+
],
|
|
10686
|
+
"related": [
|
|
10687
|
+
"setAccountInfoFormFirstName",
|
|
10688
|
+
"setAccountInfoFormLastName",
|
|
10689
|
+
"setAccountInfoFormPhone",
|
|
10690
|
+
"initAccountInfoForm",
|
|
10691
|
+
"submitAccountInfoForm"
|
|
10692
|
+
],
|
|
10693
|
+
"isAsync": false,
|
|
10694
|
+
"isClass": false
|
|
10695
|
+
},
|
|
10664
10696
|
{
|
|
10665
10697
|
"name": "submitAccountInfoForm",
|
|
10666
10698
|
"displayName": "submit",
|
|
@@ -16177,6 +16209,26 @@
|
|
|
16177
16209
|
"isClass": true,
|
|
16178
16210
|
"className": "Router"
|
|
16179
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
|
+
},
|
|
16180
16232
|
{
|
|
16181
16233
|
"name": "isBrowser",
|
|
16182
16234
|
"signature": "function isBrowser(yes?: () => void, no?: () => void): void",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-04-
|
|
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": "
|
|
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
|
],
|
|
@@ -10923,6 +10928,11 @@
|
|
|
10923
10928
|
"type": "IkasFormItem",
|
|
10924
10929
|
"optional": true
|
|
10925
10930
|
},
|
|
10931
|
+
{
|
|
10932
|
+
"name": "isMarketingAccepted",
|
|
10933
|
+
"type": "IkasFormItemBoolean",
|
|
10934
|
+
"optional": true
|
|
10935
|
+
},
|
|
10926
10936
|
{
|
|
10927
10937
|
"name": "isInitialized",
|
|
10928
10938
|
"type": "boolean",
|