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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
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
|