@dwp/govuk-casa 8.10.1 → 8.10.2
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/dist/casa.d.ts +2 -2
- package/dist/casa.js +2 -2
- package/package.json +1 -1
- package/src/casa.js +2 -2
package/dist/casa.d.ts
CHANGED
|
@@ -203,11 +203,11 @@ export type ConfigurationOptions = {
|
|
|
203
203
|
/**
|
|
204
204
|
* Max number of form parameters to ingest
|
|
205
205
|
*/
|
|
206
|
-
formMaxParams?:
|
|
206
|
+
formMaxParams?: number | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* Max total form payload size to ingest
|
|
209
209
|
*/
|
|
210
|
-
formMaxBytes?:
|
|
210
|
+
formMaxBytes?: string | number | undefined;
|
|
211
211
|
};
|
|
212
212
|
/**
|
|
213
213
|
* Result of a call to configure() function
|
package/dist/casa.js
CHANGED
|
@@ -160,8 +160,8 @@ exports.constants = constants;
|
|
|
160
160
|
* @property {Plan} [plan] CASA Plan
|
|
161
161
|
* @property {ContextEvent[]} [events=[]] Handlers for JourneyContext events
|
|
162
162
|
* @property {HelmetConfigurator} [helmetConfigurator] Helmet configuration manipulator function
|
|
163
|
-
* @property {
|
|
164
|
-
* @property {
|
|
163
|
+
* @property {number} [formMaxParams=25] Max number of form parameters to ingest
|
|
164
|
+
* @property {number|string} [formMaxBytes="50KB"] Max total form payload size to ingest
|
|
165
165
|
*/
|
|
166
166
|
/**
|
|
167
167
|
* @typedef {object} ConfigureResult Result of a call to configure() function
|
package/package.json
CHANGED
package/src/casa.js
CHANGED
|
@@ -158,8 +158,8 @@ export {
|
|
|
158
158
|
* @property {Plan} [plan] CASA Plan
|
|
159
159
|
* @property {ContextEvent[]} [events=[]] Handlers for JourneyContext events
|
|
160
160
|
* @property {HelmetConfigurator} [helmetConfigurator] Helmet configuration manipulator function
|
|
161
|
-
* @property {
|
|
162
|
-
* @property {
|
|
161
|
+
* @property {number} [formMaxParams=25] Max number of form parameters to ingest
|
|
162
|
+
* @property {number|string} [formMaxBytes="50KB"] Max total form payload size to ingest
|
|
163
163
|
*/
|
|
164
164
|
|
|
165
165
|
/**
|