@graphcommerce/next-config 6.2.0-canary.38 → 6.2.0-canary.40
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/generated/config.ts +6 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-config",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "6.2.0-canary.
|
|
5
|
+
"version": "6.2.0-canary.40",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "src/index.ts",
|
package/src/generated/config.ts
CHANGED
|
@@ -145,9 +145,13 @@ export type GraphCommerceConfig = {
|
|
|
145
145
|
*/
|
|
146
146
|
googleAnalyticsId?: InputMaybe<Scalars['String']>;
|
|
147
147
|
/**
|
|
148
|
-
* Google reCAPTCHA key
|
|
148
|
+
* Google reCAPTCHA site key.
|
|
149
|
+
* When using reCAPTCHA, this value is required, even if you are configuring different values for each locale.
|
|
149
150
|
*
|
|
150
|
-
*
|
|
151
|
+
* Get a site key and a secret key from https://developers.google.com/recaptcha/docs/v3
|
|
152
|
+
*
|
|
153
|
+
* The secret key should be added in the Magento admin panel (Stores > Configuration > Security > Google ReCAPTCHA Storefront > reCAPTCHA v3 Invisible)
|
|
154
|
+
* ReCAPTCHA can then be enabled/disabled for the different forms, separately (Stores > Configuration > Security > Google ReCAPTCHA Storefront > Storefront)
|
|
151
155
|
*/
|
|
152
156
|
googleRecaptchaKey?: InputMaybe<Scalars['String']>;
|
|
153
157
|
/**
|