@wix/forms 1.0.180 → 1.0.181

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.180",
3
+ "version": "1.0.181",
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.24",
26
26
  "@wix/forms_form-submissions": "1.0.31",
27
- "@wix/forms_forms": "1.0.48",
27
+ "@wix/forms_forms": "1.0.49",
28
28
  "@wix/forms_submissions": "1.0.79"
29
29
  },
30
30
  "devDependencies": {
@@ -50,5 +50,5 @@
50
50
  "fqdn": ""
51
51
  }
52
52
  },
53
- "falconPackageHash": "6de1e97a1bee02f16cdc823cfc3bf62cba2e2d94f4682ccaaf90be9a"
53
+ "falconPackageHash": "96cf9e826d2154a87f3af2f5026704e752ada84a3460aa5c877ea105"
54
54
  }
@@ -3801,6 +3801,8 @@ interface QueryFormsRequest {
3801
3801
  * only the form’s base fields are returned.
3802
3802
  */
3803
3803
  fieldsets?: Fieldset[];
3804
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
3805
+ additionalMetadata?: Record<string, any> | null;
3804
3806
  }
3805
3807
  interface CursorQuery$2 extends CursorQueryPagingMethodOneOf$2 {
3806
3808
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -5129,6 +5131,8 @@ interface QueryFormsOptions {
5129
5131
  * only the form’s base fields are returned.
5130
5132
  */
5131
5133
  fieldsets?: Fieldset[] | undefined;
5134
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
5135
+ additionalMetadata?: Record<string, any> | null | undefined;
5132
5136
  }
5133
5137
  interface QueryCursorResult$2 {
5134
5138
  cursors: Cursors$2;
@@ -3801,6 +3801,8 @@ interface QueryFormsRequest {
3801
3801
  * only the form’s base fields are returned.
3802
3802
  */
3803
3803
  fieldsets?: Fieldset[];
3804
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
3805
+ additionalMetadata?: Record<string, any> | null;
3804
3806
  }
3805
3807
  interface CursorQuery$2 extends CursorQueryPagingMethodOneOf$2 {
3806
3808
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -5129,6 +5131,8 @@ interface QueryFormsOptions {
5129
5131
  * only the form’s base fields are returned.
5130
5132
  */
5131
5133
  fieldsets?: Fieldset[] | undefined;
5134
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
5135
+ additionalMetadata?: Record<string, any> | null | undefined;
5132
5136
  }
5133
5137
  interface QueryCursorResult$2 {
5134
5138
  cursors: Cursors$2;
@@ -3238,6 +3238,8 @@ interface QueryFormsRequest$1 {
3238
3238
  * only the form’s base fields are returned.
3239
3239
  */
3240
3240
  fieldsets?: Fieldset$1[];
3241
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
3242
+ additionalMetadata?: Record<string, any> | null;
3241
3243
  }
3242
3244
  interface CursorQuery$5 extends CursorQueryPagingMethodOneOf$5 {
3243
3245
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
@@ -7505,6 +7507,8 @@ interface QueryFormsRequest {
7505
7507
  * only the form’s base fields are returned.
7506
7508
  */
7507
7509
  fieldsets?: Fieldset[];
7510
+ /** Optional metadata passed to SPI implementer, allowing clients to include additional business-specific data. */
7511
+ additionalMetadata?: Record<string, any> | null;
7508
7512
  }
7509
7513
  interface CursorQuery$4 extends CursorQueryPagingMethodOneOf$4 {
7510
7514
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */