@wix/forms 1.0.129 → 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.129",
3
+ "version": "1.0.131",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -19,10 +19,10 @@
19
19
  "service-plugins"
20
20
  ],
21
21
  "dependencies": {
22
- "@wix/forms_form-spam-submission-reports": "1.0.10",
23
- "@wix/forms_form-submissions": "1.0.16",
22
+ "@wix/forms_form-spam-submission-reports": "1.0.11",
23
+ "@wix/forms_form-submissions": "1.0.18",
24
24
  "@wix/forms_forms": "1.0.16",
25
- "@wix/forms_submissions": "1.0.49"
25
+ "@wix/forms_submissions": "1.0.50"
26
26
  },
27
27
  "devDependencies": {
28
28
  "glob": "^10.4.1",
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "19c1a8fc90bae9fdf6178e13243bb5b6b0a786485449a0637224e29b"
50
+ "falconPackageHash": "954a47ea289c4298dfb415e18ff118e469d7550fbd78c13ae087be56"
51
51
  }
@@ -4917,6 +4917,11 @@ interface SubmissionContactMappingSkipped$1 {
4917
4917
  formId?: string;
4918
4918
  /** Identifies the namespace that the submission's form belongs to. */
4919
4919
  namespace?: string;
4920
+ /**
4921
+ * Contact ID resolved from the submission context.
4922
+ * @readonly
4923
+ */
4924
+ contactId?: string | null;
4920
4925
  }
4921
4926
  interface CheckForSpamRequest {
4922
4927
  /** Form submission. */
@@ -5817,6 +5822,11 @@ interface SubmissionContactMappingSkipped {
5817
5822
  formId?: string;
5818
5823
  /** Identifies the namespace that the submission's form belongs to. */
5819
5824
  namespace?: string;
5825
+ /**
5826
+ * Contact ID resolved from the submission context.
5827
+ * @readonly
5828
+ */
5829
+ contactId?: string | null;
5820
5830
  }
5821
5831
  interface CreateCheckoutFromSubmissionRequest extends CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf {
5822
5832
  /** Submission's form. */
@@ -4917,6 +4917,11 @@ interface SubmissionContactMappingSkipped$1 {
4917
4917
  formId?: string;
4918
4918
  /** Identifies the namespace that the submission's form belongs to. */
4919
4919
  namespace?: string;
4920
+ /**
4921
+ * Contact ID resolved from the submission context.
4922
+ * @readonly
4923
+ */
4924
+ contactId?: string | null;
4920
4925
  }
4921
4926
  interface CheckForSpamRequest {
4922
4927
  /** Form submission. */
@@ -5817,6 +5822,11 @@ interface SubmissionContactMappingSkipped {
5817
5822
  formId?: string;
5818
5823
  /** Identifies the namespace that the submission's form belongs to. */
5819
5824
  namespace?: string;
5825
+ /**
5826
+ * Contact ID resolved from the submission context.
5827
+ * @readonly
5828
+ */
5829
+ contactId?: string | null;
5820
5830
  }
5821
5831
  interface CreateCheckoutFromSubmissionRequest extends CreateCheckoutFromSubmissionRequestFormSchemaIdentifierOneOf {
5822
5832
  /** Submission's form. */
@@ -34,6 +34,11 @@ interface SubmissionContactMappingSkipped {
34
34
  formId?: string;
35
35
  /** Identifies the namespace that the submission's form belongs to. */
36
36
  namespace?: string;
37
+ /**
38
+ * Contact ID resolved from the submission context.
39
+ * @readonly
40
+ */
41
+ contactId?: string | null;
37
42
  }
38
43
  interface ValidateSubmissionRequest extends ValidateSubmissionRequestActionsOneOf {
39
44
  /** Data for updating an existing submission. */
@@ -256,6 +261,11 @@ interface AlternativeUri {
256
261
  interface FormsSubmissionsExtensionNamespaceConfig {
257
262
  /** Targeted namespace, with what submissions should trigger defined methods. */
258
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;
259
269
  /** Enable submission validation. */
260
270
  submissionValidationEnabled?: boolean;
261
271
  }
@@ -34,6 +34,11 @@ interface SubmissionContactMappingSkipped {
34
34
  formId?: string;
35
35
  /** Identifies the namespace that the submission's form belongs to. */
36
36
  namespace?: string;
37
+ /**
38
+ * Contact ID resolved from the submission context.
39
+ * @readonly
40
+ */
41
+ contactId?: string | null;
37
42
  }
38
43
  interface ValidateSubmissionRequest extends ValidateSubmissionRequestActionsOneOf {
39
44
  /** Data for updating an existing submission. */
@@ -256,6 +261,11 @@ interface AlternativeUri {
256
261
  interface FormsSubmissionsExtensionNamespaceConfig {
257
262
  /** Targeted namespace, with what submissions should trigger defined methods. */
258
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;
259
269
  /** Enable submission validation. */
260
270
  submissionValidationEnabled?: boolean;
261
271
  }