File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
This projects adheres to [ Semantic Versioning] ( https://semver.org/ ) and [ Keep a CHANGELOG] ( https://keepachangelog.com/ ) .
6
6
7
+ ## [ 3.1.2]
8
+
9
+ ### Removed
10
+
11
+ - removed ` FD_PARAMS_RAW ` constants.
12
+
7
13
## [ 3.1.1]
8
14
9
15
### Added
@@ -336,6 +342,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
336
342
337
343
- Initial production release.
338
344
345
+ [ 3.1.2 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.1.1...3.1.2
339
346
[ 3.1.1 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.1.0...3.1.1
340
347
[ 3.1.0 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.0.18...3.1.0
341
348
[ 3.0.18 ] : https://github.com/infinum/eightshift-forms-utils/compare/3.0.17...3.0.18
Original file line number Diff line number Diff line change @@ -484,7 +484,6 @@ class UtilsConfig
484
484
public const FD_FORM_ID = 'formId ' ;
485
485
public const FD_POST_ID = 'postId ' ;
486
486
public const FD_PARAMS = 'params ' ;
487
- public const FD_PARAMS_RAW = 'paramsRaw ' ;
488
487
public const FD_FILES = 'files ' ;
489
488
public const FD_SETTINGS_TYPE = 'settingsType ' ;
490
489
public const FD_FIELDS_ONLY = 'fieldsOnly ' ;
Original file line number Diff line number Diff line change @@ -480,9 +480,6 @@ protected function getFormDetailsApi($request): array
480
480
// Populate params.
481
481
$ output [UtilsConfig::FD_PARAMS ] = $ params ['params ' ] ?? [];
482
482
483
- // Populate params raw.
484
- $ output [UtilsConfig::FD_PARAMS_RAW ] = $ params ['paramsRaw ' ] ?? [];
485
-
486
483
// Populate files from uploaded ID.
487
484
$ output [UtilsConfig::FD_FILES ] = $ params ['files ' ] ?? [];
488
485
You can’t perform that action at this time.
0 commit comments