@wix/forms 1.0.166 → 1.0.167
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.167",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/forms_form-spam-submission-reports": "1.0.23",
|
|
26
26
|
"@wix/forms_form-submissions": "1.0.30",
|
|
27
|
-
"@wix/forms_forms": "1.0.
|
|
27
|
+
"@wix/forms_forms": "1.0.39",
|
|
28
28
|
"@wix/forms_submissions": "1.0.71"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "65f377993e1639ef282fcce5fcea31eefab2d92d4c3171f799a8f892"
|
|
54
54
|
}
|
|
@@ -3701,6 +3701,8 @@ interface GetFormRequest {
|
|
|
3701
3701
|
* only the form’s base fields are returned.
|
|
3702
3702
|
*/
|
|
3703
3703
|
fieldsets?: Fieldset[];
|
|
3704
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3705
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3704
3706
|
}
|
|
3705
3707
|
declare enum Fieldset {
|
|
3706
3708
|
UNKNOWN = "UNKNOWN",
|
|
@@ -4843,6 +4845,8 @@ interface GetFormOptions {
|
|
|
4843
4845
|
* only the form’s base fields are returned.
|
|
4844
4846
|
*/
|
|
4845
4847
|
fieldsets?: Fieldset[];
|
|
4848
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
4849
|
+
additionalMetadata?: Record<string, any> | null;
|
|
4846
4850
|
}
|
|
4847
4851
|
interface UpdateForm {
|
|
4848
4852
|
/**
|
|
@@ -3701,6 +3701,8 @@ interface GetFormRequest {
|
|
|
3701
3701
|
* only the form’s base fields are returned.
|
|
3702
3702
|
*/
|
|
3703
3703
|
fieldsets?: Fieldset[];
|
|
3704
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3705
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3704
3706
|
}
|
|
3705
3707
|
declare enum Fieldset {
|
|
3706
3708
|
UNKNOWN = "UNKNOWN",
|
|
@@ -4843,6 +4845,8 @@ interface GetFormOptions {
|
|
|
4843
4845
|
* only the form’s base fields are returned.
|
|
4844
4846
|
*/
|
|
4845
4847
|
fieldsets?: Fieldset[];
|
|
4848
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
4849
|
+
additionalMetadata?: Record<string, any> | null;
|
|
4846
4850
|
}
|
|
4847
4851
|
interface UpdateForm {
|
|
4848
4852
|
/**
|
|
@@ -3153,6 +3153,8 @@ interface GetFormRequest$1 {
|
|
|
3153
3153
|
* only the form’s base fields are returned.
|
|
3154
3154
|
*/
|
|
3155
3155
|
fieldsets?: Fieldset$1[];
|
|
3156
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
3157
|
+
additionalMetadata?: Record<string, any> | null;
|
|
3156
3158
|
}
|
|
3157
3159
|
declare enum Fieldset$1 {
|
|
3158
3160
|
UNKNOWN = "UNKNOWN",
|
|
@@ -7309,6 +7311,8 @@ interface GetFormRequest {
|
|
|
7309
7311
|
* only the form’s base fields are returned.
|
|
7310
7312
|
*/
|
|
7311
7313
|
fieldsets?: Fieldset[];
|
|
7314
|
+
/** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
|
|
7315
|
+
additionalMetadata?: Record<string, any> | null;
|
|
7312
7316
|
}
|
|
7313
7317
|
declare enum Fieldset {
|
|
7314
7318
|
UNKNOWN = "UNKNOWN",
|