@wix/forms 1.0.142 → 1.0.144

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.142",
3
+ "version": "1.0.144",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,8 +20,8 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@wix/forms_form-spam-submission-reports": "1.0.15",
23
- "@wix/forms_form-submissions": "1.0.22",
24
- "@wix/forms_forms": "1.0.23",
23
+ "@wix/forms_form-submissions": "1.0.23",
24
+ "@wix/forms_forms": "1.0.24",
25
25
  "@wix/forms_submissions": "1.0.58"
26
26
  },
27
27
  "devDependencies": {
@@ -47,5 +47,5 @@
47
47
  "fqdn": ""
48
48
  }
49
49
  },
50
- "falconPackageHash": "f77690d6db9987a51bca02fbe00f683cbff582f03960fa1bfb34ddaa"
50
+ "falconPackageHash": "422958b6db2c47cf4b6ba23b18bd22c276b69d1e62cd590e1f0c1278"
51
51
  }
@@ -3405,16 +3405,18 @@ interface ListDeletedFormsRequest {
3405
3405
  order?: ListDeletedFormsOrder;
3406
3406
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
3407
3407
  paging?: CursorPaging$2;
3408
+ /** Identifies if the form is a payment form */
3409
+ paymentForm?: boolean | null;
3408
3410
  }
3409
3411
  declare enum ListDeletedFormsOrder {
3410
3412
  /** Sorting by updated date descending. The default value. */
3411
3413
  UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
3412
3414
  /** Sorting by updated date ascending. */
3413
3415
  UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
3414
- /** Sorting by name ascending. */
3415
- NAME_ASC = "NAME_ASC",
3416
3416
  /** Sorting by name descending. */
3417
- NAME_DESC = "NAME_DESC"
3417
+ NAME_DESC = "NAME_DESC",
3418
+ /** Sorting by name ascending. */
3419
+ NAME_ASC = "NAME_ASC"
3418
3420
  }
3419
3421
  interface ListDeletedFormsResponse {
3420
3422
  /** The retrieved forms. */
@@ -4516,6 +4518,8 @@ interface ListDeletedFormsOptions {
4516
4518
  order?: ListDeletedFormsOrder;
4517
4519
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
4518
4520
  paging?: CursorPaging$2;
4521
+ /** Identifies if the form is a payment form */
4522
+ paymentForm?: boolean | null;
4519
4523
  }
4520
4524
  interface BulkRemoveDeletedFieldOptions {
4521
4525
  /** Ids of the deleted fields to remove. */
@@ -3405,16 +3405,18 @@ interface ListDeletedFormsRequest {
3405
3405
  order?: ListDeletedFormsOrder;
3406
3406
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
3407
3407
  paging?: CursorPaging$2;
3408
+ /** Identifies if the form is a payment form */
3409
+ paymentForm?: boolean | null;
3408
3410
  }
3409
3411
  declare enum ListDeletedFormsOrder {
3410
3412
  /** Sorting by updated date descending. The default value. */
3411
3413
  UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
3412
3414
  /** Sorting by updated date ascending. */
3413
3415
  UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
3414
- /** Sorting by name ascending. */
3415
- NAME_ASC = "NAME_ASC",
3416
3416
  /** Sorting by name descending. */
3417
- NAME_DESC = "NAME_DESC"
3417
+ NAME_DESC = "NAME_DESC",
3418
+ /** Sorting by name ascending. */
3419
+ NAME_ASC = "NAME_ASC"
3418
3420
  }
3419
3421
  interface ListDeletedFormsResponse {
3420
3422
  /** The retrieved forms. */
@@ -4516,6 +4518,8 @@ interface ListDeletedFormsOptions {
4516
4518
  order?: ListDeletedFormsOrder;
4517
4519
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
4518
4520
  paging?: CursorPaging$2;
4521
+ /** Identifies if the form is a payment form */
4522
+ paymentForm?: boolean | null;
4519
4523
  }
4520
4524
  interface BulkRemoveDeletedFieldOptions {
4521
4525
  /** Ids of the deleted fields to remove. */
@@ -3335,16 +3335,18 @@ interface ListDeletedFormsRequest$1 {
3335
3335
  order?: ListDeletedFormsOrder$1;
3336
3336
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
3337
3337
  paging?: CursorPaging$5;
3338
+ /** Identifies if the form is a payment form */
3339
+ paymentForm?: boolean | null;
3338
3340
  }
3339
3341
  declare enum ListDeletedFormsOrder$1 {
3340
3342
  /** Sorting by updated date descending. The default value. */
3341
3343
  UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
3342
3344
  /** Sorting by updated date ascending. */
3343
3345
  UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
3344
- /** Sorting by name ascending. */
3345
- NAME_ASC = "NAME_ASC",
3346
3346
  /** Sorting by name descending. */
3347
- NAME_DESC = "NAME_DESC"
3347
+ NAME_DESC = "NAME_DESC",
3348
+ /** Sorting by name ascending. */
3349
+ NAME_ASC = "NAME_ASC"
3348
3350
  }
3349
3351
  interface ListDeletedFormsResponse$1 {
3350
3352
  /** The retrieved forms. */
@@ -7429,16 +7431,18 @@ interface ListDeletedFormsRequest {
7429
7431
  order?: ListDeletedFormsOrder;
7430
7432
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not filter or `order`. */
7431
7433
  paging?: CursorPaging$4;
7434
+ /** Identifies if the form is a payment form */
7435
+ paymentForm?: boolean | null;
7432
7436
  }
7433
7437
  declare enum ListDeletedFormsOrder {
7434
7438
  /** Sorting by updated date descending. The default value. */
7435
7439
  UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
7436
7440
  /** Sorting by updated date ascending. */
7437
7441
  UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
7438
- /** Sorting by name ascending. */
7439
- NAME_ASC = "NAME_ASC",
7440
7442
  /** Sorting by name descending. */
7441
- NAME_DESC = "NAME_DESC"
7443
+ NAME_DESC = "NAME_DESC",
7444
+ /** Sorting by name ascending. */
7445
+ NAME_ASC = "NAME_ASC"
7442
7446
  }
7443
7447
  interface ListDeletedFormsResponse {
7444
7448
  /** The retrieved forms. */
@@ -199,7 +199,11 @@ declare enum SubmissionErrorType {
199
199
  DISABLED_FORM_ERROR = "DISABLED_FORM_ERROR"
200
200
  }
201
201
  interface FormSubmissionSpiExtensionConfig {
202
- /** URI where the service plugin Implementer is deployed */
202
+ /**
203
+ * Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI.
204
+ * For example, to call the Validate Submission endpoint at `https://my-form-submissions.com/v1/validateSubmission`,
205
+ * the `deploymentUri` you provide here is `https://my-form-submissions.com/`.
206
+ */
203
207
  deploymentUri?: SpiBaseUri;
204
208
  /** Namespace names. */
205
209
  namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];
@@ -199,7 +199,11 @@ declare enum SubmissionErrorType {
199
199
  DISABLED_FORM_ERROR = "DISABLED_FORM_ERROR"
200
200
  }
201
201
  interface FormSubmissionSpiExtensionConfig {
202
- /** URI where the service plugin Implementer is deployed */
202
+ /**
203
+ * Deployment URI where the endpoints are called. Wix Forms appends the endpoint path to the deployment URI.
204
+ * For example, to call the Validate Submission endpoint at `https://my-form-submissions.com/v1/validateSubmission`,
205
+ * the `deploymentUri` you provide here is `https://my-form-submissions.com/`.
206
+ */
203
207
  deploymentUri?: SpiBaseUri;
204
208
  /** Namespace names. */
205
209
  namespaceConfigs?: FormsSubmissionsExtensionNamespaceConfig[];