lynkow 3.2.1 → 3.2.4

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/dist/index.d.mts CHANGED
@@ -1020,6 +1020,14 @@ interface Form {
1020
1020
  settings: FormSettings;
1021
1021
  /** Status */
1022
1022
  status: 'active';
1023
+ /** Locale */
1024
+ locale?: string;
1025
+ /** Whether honeypot spam protection is enabled */
1026
+ honeypotEnabled?: boolean;
1027
+ /** Whether reCAPTCHA is enabled for this form */
1028
+ recaptchaEnabled?: boolean;
1029
+ /** reCAPTCHA site key (public, for rendering the widget) */
1030
+ recaptchaSiteKey?: string | null;
1023
1031
  }
1024
1032
  /**
1025
1033
  * Form submission data
package/dist/index.d.ts CHANGED
@@ -1020,6 +1020,14 @@ interface Form {
1020
1020
  settings: FormSettings;
1021
1021
  /** Status */
1022
1022
  status: 'active';
1023
+ /** Locale */
1024
+ locale?: string;
1025
+ /** Whether honeypot spam protection is enabled */
1026
+ honeypotEnabled?: boolean;
1027
+ /** Whether reCAPTCHA is enabled for this form */
1028
+ recaptchaEnabled?: boolean;
1029
+ /** reCAPTCHA site key (public, for rendering the widget) */
1030
+ recaptchaSiteKey?: string | null;
1023
1031
  }
1024
1032
  /**
1025
1033
  * Form submission data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lynkow",
3
- "version": "3.2.1",
3
+ "version": "3.2.4",
4
4
  "description": "Official SDK for Lynkow Headless",
5
5
  "author": "Lynkow",
6
6
  "license": "SEE LICENSE IN LICENSE",