@wix/forms 1.0.174 → 1.0.175
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.175",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/forms_form-spam-submission-reports": "1.0.24",
|
|
26
26
|
"@wix/forms_form-submissions": "1.0.31",
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
28
|
-
"@wix/forms_submissions": "1.0.
|
|
27
|
+
"@wix/forms_forms": "1.0.44",
|
|
28
|
+
"@wix/forms_submissions": "1.0.78"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"glob": "^10.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "ce7811bedb860de238bfb652e345193e5e966c93f44ac9d17fe5478f"
|
|
54
54
|
}
|
|
@@ -3868,9 +3868,13 @@ declare enum CountFormsFieldset {
|
|
|
3868
3868
|
DELETED = "DELETED"
|
|
3869
3869
|
}
|
|
3870
3870
|
interface CountFormsResponse {
|
|
3871
|
-
/**
|
|
3871
|
+
/** Total forms count. Includes active and disabled forms. Does not include deleted forms. */
|
|
3872
|
+
totalCount?: number;
|
|
3873
|
+
/** Active forms count. Only includes non-disabled forms if FT CountFormsActiveCountExcludeDisabled is true, otherwise behaves like total_count. */
|
|
3872
3874
|
activeCount?: number;
|
|
3873
|
-
/**
|
|
3875
|
+
/** Disabled forms count. */
|
|
3876
|
+
disabledCount?: number;
|
|
3877
|
+
/** Deleted forms count. Counted only if specifically requested using a fieldset. */
|
|
3874
3878
|
deletedCount?: number | null;
|
|
3875
3879
|
}
|
|
3876
3880
|
interface ListFormsRequest {
|
|
@@ -3903,6 +3907,8 @@ interface ListFormsRequest {
|
|
|
3903
3907
|
formIds?: string[];
|
|
3904
3908
|
/** Identifies if the form is a payment form */
|
|
3905
3909
|
paymentForm?: boolean | null;
|
|
3910
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3911
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3906
3912
|
}
|
|
3907
3913
|
declare enum ListFormsOrder {
|
|
3908
3914
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -4894,7 +4900,9 @@ interface QueryFormsResponseNonNullableFields {
|
|
|
4894
4900
|
forms: FormNonNullableFields[];
|
|
4895
4901
|
}
|
|
4896
4902
|
interface CountFormsResponseNonNullableFields {
|
|
4903
|
+
totalCount: number;
|
|
4897
4904
|
activeCount: number;
|
|
4905
|
+
disabledCount: number;
|
|
4898
4906
|
}
|
|
4899
4907
|
interface ListFormsResponseNonNullableFields {
|
|
4900
4908
|
forms: FormNonNullableFields[];
|
|
@@ -5141,6 +5149,8 @@ interface ListFormsOptions {
|
|
|
5141
5149
|
formIds?: string[];
|
|
5142
5150
|
/** Identifies if the form is a payment form */
|
|
5143
5151
|
paymentForm?: boolean | null;
|
|
5152
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
5153
|
+
additionalMetadata?: Record<string, any> | null;
|
|
5144
5154
|
}
|
|
5145
5155
|
interface ListDeletedFormsOptions {
|
|
5146
5156
|
/** Identifies if the form is disabled. */
|
|
@@ -9837,6 +9847,8 @@ interface CreateSubmissionRequest {
|
|
|
9837
9847
|
submission: FormSubmission;
|
|
9838
9848
|
/** Captcha token. */
|
|
9839
9849
|
captchaToken?: string | null;
|
|
9850
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
9851
|
+
additionalMetadata?: Record<string, any> | null;
|
|
9840
9852
|
}
|
|
9841
9853
|
interface CreateSubmissionResponse {
|
|
9842
9854
|
/** The created submission. */
|
|
@@ -10553,6 +10565,8 @@ interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
|
10553
10565
|
interface CreateSubmissionOptions {
|
|
10554
10566
|
/** Captcha token. */
|
|
10555
10567
|
captchaToken?: string | null;
|
|
10568
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
10569
|
+
additionalMetadata?: Record<string, any> | null;
|
|
10556
10570
|
}
|
|
10557
10571
|
interface BulkCreateSubmissionBySubmitterOptions {
|
|
10558
10572
|
/**
|
|
@@ -3868,9 +3868,13 @@ declare enum CountFormsFieldset {
|
|
|
3868
3868
|
DELETED = "DELETED"
|
|
3869
3869
|
}
|
|
3870
3870
|
interface CountFormsResponse {
|
|
3871
|
-
/**
|
|
3871
|
+
/** Total forms count. Includes active and disabled forms. Does not include deleted forms. */
|
|
3872
|
+
totalCount?: number;
|
|
3873
|
+
/** Active forms count. Only includes non-disabled forms if FT CountFormsActiveCountExcludeDisabled is true, otherwise behaves like total_count. */
|
|
3872
3874
|
activeCount?: number;
|
|
3873
|
-
/**
|
|
3875
|
+
/** Disabled forms count. */
|
|
3876
|
+
disabledCount?: number;
|
|
3877
|
+
/** Deleted forms count. Counted only if specifically requested using a fieldset. */
|
|
3874
3878
|
deletedCount?: number | null;
|
|
3875
3879
|
}
|
|
3876
3880
|
interface ListFormsRequest {
|
|
@@ -3903,6 +3907,8 @@ interface ListFormsRequest {
|
|
|
3903
3907
|
formIds?: string[];
|
|
3904
3908
|
/** Identifies if the form is a payment form */
|
|
3905
3909
|
paymentForm?: boolean | null;
|
|
3910
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3911
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3906
3912
|
}
|
|
3907
3913
|
declare enum ListFormsOrder {
|
|
3908
3914
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -4894,7 +4900,9 @@ interface QueryFormsResponseNonNullableFields {
|
|
|
4894
4900
|
forms: FormNonNullableFields[];
|
|
4895
4901
|
}
|
|
4896
4902
|
interface CountFormsResponseNonNullableFields {
|
|
4903
|
+
totalCount: number;
|
|
4897
4904
|
activeCount: number;
|
|
4905
|
+
disabledCount: number;
|
|
4898
4906
|
}
|
|
4899
4907
|
interface ListFormsResponseNonNullableFields {
|
|
4900
4908
|
forms: FormNonNullableFields[];
|
|
@@ -5141,6 +5149,8 @@ interface ListFormsOptions {
|
|
|
5141
5149
|
formIds?: string[];
|
|
5142
5150
|
/** Identifies if the form is a payment form */
|
|
5143
5151
|
paymentForm?: boolean | null;
|
|
5152
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
5153
|
+
additionalMetadata?: Record<string, any> | null;
|
|
5144
5154
|
}
|
|
5145
5155
|
interface ListDeletedFormsOptions {
|
|
5146
5156
|
/** Identifies if the form is disabled. */
|
|
@@ -9837,6 +9847,8 @@ interface CreateSubmissionRequest {
|
|
|
9837
9847
|
submission: FormSubmission;
|
|
9838
9848
|
/** Captcha token. */
|
|
9839
9849
|
captchaToken?: string | null;
|
|
9850
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
9851
|
+
additionalMetadata?: Record<string, any> | null;
|
|
9840
9852
|
}
|
|
9841
9853
|
interface CreateSubmissionResponse {
|
|
9842
9854
|
/** The created submission. */
|
|
@@ -10553,6 +10565,8 @@ interface UpsertContactFromSubmissionResponseNonNullableFields {
|
|
|
10553
10565
|
interface CreateSubmissionOptions {
|
|
10554
10566
|
/** Captcha token. */
|
|
10555
10567
|
captchaToken?: string | null;
|
|
10568
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
10569
|
+
additionalMetadata?: Record<string, any> | null;
|
|
10556
10570
|
}
|
|
10557
10571
|
interface BulkCreateSubmissionBySubmitterOptions {
|
|
10558
10572
|
/**
|
|
@@ -3320,9 +3320,13 @@ declare enum CountFormsFieldset$1 {
|
|
|
3320
3320
|
DELETED = "DELETED"
|
|
3321
3321
|
}
|
|
3322
3322
|
interface CountFormsResponse$1 {
|
|
3323
|
-
/**
|
|
3323
|
+
/** Total forms count. Includes active and disabled forms. Does not include deleted forms. */
|
|
3324
|
+
totalCount?: number;
|
|
3325
|
+
/** Active forms count. Only includes non-disabled forms if FT CountFormsActiveCountExcludeDisabled is true, otherwise behaves like total_count. */
|
|
3324
3326
|
activeCount?: number;
|
|
3325
|
-
/**
|
|
3327
|
+
/** Disabled forms count. */
|
|
3328
|
+
disabledCount?: number;
|
|
3329
|
+
/** Deleted forms count. Counted only if specifically requested using a fieldset. */
|
|
3326
3330
|
deletedCount?: number | null;
|
|
3327
3331
|
}
|
|
3328
3332
|
interface ListFormsRequest$1 {
|
|
@@ -3355,6 +3359,8 @@ interface ListFormsRequest$1 {
|
|
|
3355
3359
|
formIds?: string[];
|
|
3356
3360
|
/** Identifies if the form is a payment form */
|
|
3357
3361
|
paymentForm?: boolean | null;
|
|
3362
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3363
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3358
3364
|
}
|
|
3359
3365
|
declare enum ListFormsOrder$1 {
|
|
3360
3366
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -4179,7 +4185,9 @@ interface QueryFormsResponseNonNullableFields$1 {
|
|
|
4179
4185
|
forms: FormNonNullableFields$1[];
|
|
4180
4186
|
}
|
|
4181
4187
|
interface CountFormsResponseNonNullableFields$1 {
|
|
4188
|
+
totalCount: number;
|
|
4182
4189
|
activeCount: number;
|
|
4190
|
+
disabledCount: number;
|
|
4183
4191
|
}
|
|
4184
4192
|
interface ListFormsResponseNonNullableFields$1 {
|
|
4185
4193
|
forms: FormNonNullableFields$1[];
|
|
@@ -7511,9 +7519,13 @@ declare enum CountFormsFieldset {
|
|
|
7511
7519
|
DELETED = "DELETED"
|
|
7512
7520
|
}
|
|
7513
7521
|
interface CountFormsResponse {
|
|
7514
|
-
/**
|
|
7522
|
+
/** Total forms count. Includes active and disabled forms. Does not include deleted forms. */
|
|
7523
|
+
totalCount?: number;
|
|
7524
|
+
/** Active forms count. Only includes non-disabled forms if FT CountFormsActiveCountExcludeDisabled is true, otherwise behaves like total_count. */
|
|
7515
7525
|
activeCount?: number;
|
|
7516
|
-
/**
|
|
7526
|
+
/** Disabled forms count. */
|
|
7527
|
+
disabledCount?: number;
|
|
7528
|
+
/** Deleted forms count. Counted only if specifically requested using a fieldset. */
|
|
7517
7529
|
deletedCount?: number | null;
|
|
7518
7530
|
}
|
|
7519
7531
|
interface ListFormsRequest {
|
|
@@ -7546,6 +7558,8 @@ interface ListFormsRequest {
|
|
|
7546
7558
|
formIds?: string[];
|
|
7547
7559
|
/** Identifies if the form is a payment form */
|
|
7548
7560
|
paymentForm?: boolean | null;
|
|
7561
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
7562
|
+
additionalMetadata?: Record<string, any> | null;
|
|
7549
7563
|
}
|
|
7550
7564
|
declare enum ListFormsOrder {
|
|
7551
7565
|
/** Sorting by updated date descending. The default value. */
|
|
@@ -8364,7 +8378,9 @@ interface QueryFormsResponseNonNullableFields {
|
|
|
8364
8378
|
forms: FormNonNullableFields[];
|
|
8365
8379
|
}
|
|
8366
8380
|
interface CountFormsResponseNonNullableFields {
|
|
8381
|
+
totalCount: number;
|
|
8367
8382
|
activeCount: number;
|
|
8383
|
+
disabledCount: number;
|
|
8368
8384
|
}
|
|
8369
8385
|
interface ListFormsResponseNonNullableFields {
|
|
8370
8386
|
forms: FormNonNullableFields[];
|
|
@@ -9664,6 +9680,8 @@ interface CreateSubmissionRequest$1 {
|
|
|
9664
9680
|
submission: FormSubmission$1;
|
|
9665
9681
|
/** Captcha token. */
|
|
9666
9682
|
captchaToken?: string | null;
|
|
9683
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
9684
|
+
additionalMetadata?: Record<string, any> | null;
|
|
9667
9685
|
}
|
|
9668
9686
|
interface CreateSubmissionResponse$1 {
|
|
9669
9687
|
/** The created submission. */
|
|
@@ -10390,6 +10408,8 @@ interface CreateSubmissionRequest {
|
|
|
10390
10408
|
submission: FormSubmission;
|
|
10391
10409
|
/** Captcha token. */
|
|
10392
10410
|
captchaToken?: string | null;
|
|
10411
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
10412
|
+
additionalMetadata?: Record<string, any> | null;
|
|
10393
10413
|
}
|
|
10394
10414
|
interface CreateSubmissionResponse {
|
|
10395
10415
|
/** The created submission. */
|