@wix/forms 1.0.130 → 1.0.131
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.131",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@wix/forms_form-spam-submission-reports": "1.0.11",
|
|
23
|
-
"@wix/forms_form-submissions": "1.0.
|
|
23
|
+
"@wix/forms_form-submissions": "1.0.18",
|
|
24
24
|
"@wix/forms_forms": "1.0.16",
|
|
25
25
|
"@wix/forms_submissions": "1.0.50"
|
|
26
26
|
},
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "954a47ea289c4298dfb415e18ff118e469d7550fbd78c13ae087be56"
|
|
51
51
|
}
|
|
@@ -261,6 +261,11 @@ interface AlternativeUri {
|
|
|
261
261
|
interface FormsSubmissionsExtensionNamespaceConfig {
|
|
262
262
|
/** Targeted namespace, with what submissions should trigger defined methods. */
|
|
263
263
|
namespace?: string;
|
|
264
|
+
/**
|
|
265
|
+
* The ID of the specific form that will trigger the defined methods when a submission is made.
|
|
266
|
+
* This field is optional. If not provided, submissions from all forms will trigger the methods.
|
|
267
|
+
*/
|
|
268
|
+
formId?: string | null;
|
|
264
269
|
/** Enable submission validation. */
|
|
265
270
|
submissionValidationEnabled?: boolean;
|
|
266
271
|
}
|
|
@@ -261,6 +261,11 @@ interface AlternativeUri {
|
|
|
261
261
|
interface FormsSubmissionsExtensionNamespaceConfig {
|
|
262
262
|
/** Targeted namespace, with what submissions should trigger defined methods. */
|
|
263
263
|
namespace?: string;
|
|
264
|
+
/**
|
|
265
|
+
* The ID of the specific form that will trigger the defined methods when a submission is made.
|
|
266
|
+
* This field is optional. If not provided, submissions from all forms will trigger the methods.
|
|
267
|
+
*/
|
|
268
|
+
formId?: string | null;
|
|
264
269
|
/** Enable submission validation. */
|
|
265
270
|
submissionValidationEnabled?: boolean;
|
|
266
271
|
}
|