@glidevvr/storage-payload-types-pkg 1.0.272 → 1.0.274
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/package.json +1 -1
- package/payload-types.ts +15 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -2353,6 +2353,18 @@ export interface Menu {
|
|
|
2353
2353
|
export interface FormSubmission {
|
|
2354
2354
|
id: string;
|
|
2355
2355
|
tenant?: (string | null) | Tenant;
|
|
2356
|
+
/**
|
|
2357
|
+
* Accepted from API for verification only; not persisted.
|
|
2358
|
+
*/
|
|
2359
|
+
recaptchaToken?: string | null;
|
|
2360
|
+
/**
|
|
2361
|
+
* reCAPTCHA Enterprise risk score (0–1) from verification.
|
|
2362
|
+
*/
|
|
2363
|
+
recaptchaScore?: number | null;
|
|
2364
|
+
/**
|
|
2365
|
+
* reCAPTCHA action name from verification (e.g. form_submit).
|
|
2366
|
+
*/
|
|
2367
|
+
recaptchaAction?: string | null;
|
|
2356
2368
|
form: string | Form;
|
|
2357
2369
|
status?: string | null;
|
|
2358
2370
|
/**
|
|
@@ -3744,6 +3756,9 @@ export interface CurrentCustomerFieldSelect<T extends boolean = true> {
|
|
|
3744
3756
|
*/
|
|
3745
3757
|
export interface FormSubmissionsSelect<T extends boolean = true> {
|
|
3746
3758
|
tenant?: T;
|
|
3759
|
+
recaptchaToken?: T;
|
|
3760
|
+
recaptchaScore?: T;
|
|
3761
|
+
recaptchaAction?: T;
|
|
3747
3762
|
form?: T;
|
|
3748
3763
|
status?: T;
|
|
3749
3764
|
responseMessage?: T;
|