@wix/forms 1.0.143 → 1.0.145
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.145",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@wix/forms_form-spam-submission-reports": "1.0.15",
|
|
23
23
|
"@wix/forms_form-submissions": "1.0.23",
|
|
24
|
-
"@wix/forms_forms": "1.0.
|
|
24
|
+
"@wix/forms_forms": "1.0.25",
|
|
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": "
|
|
50
|
+
"falconPackageHash": "a632f1b4240b8992352760b5f6084da5cfc13c139790d6f07c955620"
|
|
51
51
|
}
|
|
@@ -3346,6 +3346,8 @@ interface ListFormsRequest {
|
|
|
3346
3346
|
fieldsets?: Fieldset[];
|
|
3347
3347
|
/** Form ids. */
|
|
3348
3348
|
formIds?: string[];
|
|
3349
|
+
/** Identifies if the form is a payment form */
|
|
3350
|
+
paymentForm?: boolean | null;
|
|
3349
3351
|
}
|
|
3350
3352
|
declare enum ListFormsOrder {
|
|
3351
3353
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -3405,16 +3407,18 @@ interface ListDeletedFormsRequest {
|
|
|
3405
3407
|
order?: ListDeletedFormsOrder;
|
|
3406
3408
|
/** 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
3409
|
paging?: CursorPaging$2;
|
|
3410
|
+
/** Identifies if the form is a payment form */
|
|
3411
|
+
paymentForm?: boolean | null;
|
|
3408
3412
|
}
|
|
3409
3413
|
declare enum ListDeletedFormsOrder {
|
|
3410
3414
|
/** Sorting by updated date descending. The default value. */
|
|
3411
3415
|
UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
|
|
3412
3416
|
/** Sorting by updated date ascending. */
|
|
3413
3417
|
UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
|
|
3414
|
-
/** Sorting by name ascending. */
|
|
3415
|
-
NAME_ASC = "NAME_ASC",
|
|
3416
3418
|
/** Sorting by name descending. */
|
|
3417
|
-
NAME_DESC = "NAME_DESC"
|
|
3419
|
+
NAME_DESC = "NAME_DESC",
|
|
3420
|
+
/** Sorting by name ascending. */
|
|
3421
|
+
NAME_ASC = "NAME_ASC"
|
|
3418
3422
|
}
|
|
3419
3423
|
interface ListDeletedFormsResponse {
|
|
3420
3424
|
/** The retrieved forms. */
|
|
@@ -4497,6 +4501,8 @@ interface ListFormsOptions {
|
|
|
4497
4501
|
fieldsets?: Fieldset[];
|
|
4498
4502
|
/** Form ids. */
|
|
4499
4503
|
formIds?: string[];
|
|
4504
|
+
/** Identifies if the form is a payment form */
|
|
4505
|
+
paymentForm?: boolean | null;
|
|
4500
4506
|
}
|
|
4501
4507
|
interface ListDeletedFormsOptions {
|
|
4502
4508
|
/** Identifies if the form is disabled. */
|
|
@@ -4516,6 +4522,8 @@ interface ListDeletedFormsOptions {
|
|
|
4516
4522
|
order?: ListDeletedFormsOrder;
|
|
4517
4523
|
/** 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
4524
|
paging?: CursorPaging$2;
|
|
4525
|
+
/** Identifies if the form is a payment form */
|
|
4526
|
+
paymentForm?: boolean | null;
|
|
4519
4527
|
}
|
|
4520
4528
|
interface BulkRemoveDeletedFieldOptions {
|
|
4521
4529
|
/** Ids of the deleted fields to remove. */
|
|
@@ -3346,6 +3346,8 @@ interface ListFormsRequest {
|
|
|
3346
3346
|
fieldsets?: Fieldset[];
|
|
3347
3347
|
/** Form ids. */
|
|
3348
3348
|
formIds?: string[];
|
|
3349
|
+
/** Identifies if the form is a payment form */
|
|
3350
|
+
paymentForm?: boolean | null;
|
|
3349
3351
|
}
|
|
3350
3352
|
declare enum ListFormsOrder {
|
|
3351
3353
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -3405,16 +3407,18 @@ interface ListDeletedFormsRequest {
|
|
|
3405
3407
|
order?: ListDeletedFormsOrder;
|
|
3406
3408
|
/** 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
3409
|
paging?: CursorPaging$2;
|
|
3410
|
+
/** Identifies if the form is a payment form */
|
|
3411
|
+
paymentForm?: boolean | null;
|
|
3408
3412
|
}
|
|
3409
3413
|
declare enum ListDeletedFormsOrder {
|
|
3410
3414
|
/** Sorting by updated date descending. The default value. */
|
|
3411
3415
|
UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
|
|
3412
3416
|
/** Sorting by updated date ascending. */
|
|
3413
3417
|
UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
|
|
3414
|
-
/** Sorting by name ascending. */
|
|
3415
|
-
NAME_ASC = "NAME_ASC",
|
|
3416
3418
|
/** Sorting by name descending. */
|
|
3417
|
-
NAME_DESC = "NAME_DESC"
|
|
3419
|
+
NAME_DESC = "NAME_DESC",
|
|
3420
|
+
/** Sorting by name ascending. */
|
|
3421
|
+
NAME_ASC = "NAME_ASC"
|
|
3418
3422
|
}
|
|
3419
3423
|
interface ListDeletedFormsResponse {
|
|
3420
3424
|
/** The retrieved forms. */
|
|
@@ -4497,6 +4501,8 @@ interface ListFormsOptions {
|
|
|
4497
4501
|
fieldsets?: Fieldset[];
|
|
4498
4502
|
/** Form ids. */
|
|
4499
4503
|
formIds?: string[];
|
|
4504
|
+
/** Identifies if the form is a payment form */
|
|
4505
|
+
paymentForm?: boolean | null;
|
|
4500
4506
|
}
|
|
4501
4507
|
interface ListDeletedFormsOptions {
|
|
4502
4508
|
/** Identifies if the form is disabled. */
|
|
@@ -4516,6 +4522,8 @@ interface ListDeletedFormsOptions {
|
|
|
4516
4522
|
order?: ListDeletedFormsOrder;
|
|
4517
4523
|
/** 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
4524
|
paging?: CursorPaging$2;
|
|
4525
|
+
/** Identifies if the form is a payment form */
|
|
4526
|
+
paymentForm?: boolean | null;
|
|
4519
4527
|
}
|
|
4520
4528
|
interface BulkRemoveDeletedFieldOptions {
|
|
4521
4529
|
/** Ids of the deleted fields to remove. */
|
|
@@ -3276,6 +3276,8 @@ interface ListFormsRequest$1 {
|
|
|
3276
3276
|
fieldsets?: Fieldset$1[];
|
|
3277
3277
|
/** Form ids. */
|
|
3278
3278
|
formIds?: string[];
|
|
3279
|
+
/** Identifies if the form is a payment form */
|
|
3280
|
+
paymentForm?: boolean | null;
|
|
3279
3281
|
}
|
|
3280
3282
|
declare enum ListFormsOrder$1 {
|
|
3281
3283
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -3335,16 +3337,18 @@ interface ListDeletedFormsRequest$1 {
|
|
|
3335
3337
|
order?: ListDeletedFormsOrder$1;
|
|
3336
3338
|
/** 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
3339
|
paging?: CursorPaging$5;
|
|
3340
|
+
/** Identifies if the form is a payment form */
|
|
3341
|
+
paymentForm?: boolean | null;
|
|
3338
3342
|
}
|
|
3339
3343
|
declare enum ListDeletedFormsOrder$1 {
|
|
3340
3344
|
/** Sorting by updated date descending. The default value. */
|
|
3341
3345
|
UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
|
|
3342
3346
|
/** Sorting by updated date ascending. */
|
|
3343
3347
|
UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
|
|
3344
|
-
/** Sorting by name ascending. */
|
|
3345
|
-
NAME_ASC = "NAME_ASC",
|
|
3346
3348
|
/** Sorting by name descending. */
|
|
3347
|
-
NAME_DESC = "NAME_DESC"
|
|
3349
|
+
NAME_DESC = "NAME_DESC",
|
|
3350
|
+
/** Sorting by name ascending. */
|
|
3351
|
+
NAME_ASC = "NAME_ASC"
|
|
3348
3352
|
}
|
|
3349
3353
|
interface ListDeletedFormsResponse$1 {
|
|
3350
3354
|
/** The retrieved forms. */
|
|
@@ -7370,6 +7374,8 @@ interface ListFormsRequest {
|
|
|
7370
7374
|
fieldsets?: Fieldset[];
|
|
7371
7375
|
/** Form ids. */
|
|
7372
7376
|
formIds?: string[];
|
|
7377
|
+
/** Identifies if the form is a payment form */
|
|
7378
|
+
paymentForm?: boolean | null;
|
|
7373
7379
|
}
|
|
7374
7380
|
declare enum ListFormsOrder {
|
|
7375
7381
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -7429,16 +7435,18 @@ interface ListDeletedFormsRequest {
|
|
|
7429
7435
|
order?: ListDeletedFormsOrder;
|
|
7430
7436
|
/** 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
7437
|
paging?: CursorPaging$4;
|
|
7438
|
+
/** Identifies if the form is a payment form */
|
|
7439
|
+
paymentForm?: boolean | null;
|
|
7432
7440
|
}
|
|
7433
7441
|
declare enum ListDeletedFormsOrder {
|
|
7434
7442
|
/** Sorting by updated date descending. The default value. */
|
|
7435
7443
|
UPDATED_DATE_DESC = "UPDATED_DATE_DESC",
|
|
7436
7444
|
/** Sorting by updated date ascending. */
|
|
7437
7445
|
UPDATED_DATE_ASC = "UPDATED_DATE_ASC",
|
|
7438
|
-
/** Sorting by name ascending. */
|
|
7439
|
-
NAME_ASC = "NAME_ASC",
|
|
7440
7446
|
/** Sorting by name descending. */
|
|
7441
|
-
NAME_DESC = "NAME_DESC"
|
|
7447
|
+
NAME_DESC = "NAME_DESC",
|
|
7448
|
+
/** Sorting by name ascending. */
|
|
7449
|
+
NAME_ASC = "NAME_ASC"
|
|
7442
7450
|
}
|
|
7443
7451
|
interface ListDeletedFormsResponse {
|
|
7444
7452
|
/** The retrieved forms. */
|