@frontastic/common 2.22.0 → 2.23.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# common Changelog
|
|
2
2
|
|
|
3
|
+
## `2.23.0` (2021-12-16)
|
|
4
|
+
|
|
5
|
+
* feat: Created method for CustomDataSourceValidation in the CustomDataSourceService
|
|
6
|
+
* feat: Store the stream type for stream fields
|
|
7
|
+
* feat: Introduced a special field configuration for stream fields
|
|
8
|
+
|
|
3
9
|
## `2.22.0` (2021-12-02)
|
|
4
10
|
|
|
5
11
|
* feat(FP-1193): included rawApiImput on getProduct
|
package/composer.json
CHANGED
package/docs/README.md
CHANGED
|
@@ -369,6 +369,7 @@ Here you find the API documentation for the relevant classes:
|
|
|
369
369
|
* [FieldConfiguration](php/SpecificationBundle/Domain/Schema/FieldConfiguration.md)
|
|
370
370
|
* [FieldVisitor](php/SpecificationBundle/Domain/Schema/FieldVisitor.md)
|
|
371
371
|
* [GroupFieldConfiguration](php/SpecificationBundle/Domain/Schema/GroupFieldConfiguration.md)
|
|
372
|
+
* [StreamFieldConfiguration](php/SpecificationBundle/Domain/Schema/StreamFieldConfiguration.md)
|
|
372
373
|
* [SpecParser](php/SpecificationBundle/Domain/SpecParser.md)
|
|
373
374
|
* [TasticSpecParser](php/SpecificationBundle/Domain/TasticSpecParser.md)
|
|
374
375
|
* [ValidatingSpecParser](php/SpecificationBundle/Domain/ValidatingSpecParser.md)
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* [hasField()](#hasfield)
|
|
9
9
|
* [getFieldValue()](#getfieldvalue)
|
|
10
10
|
* [getCompleteValues()](#getcompletevalues)
|
|
11
|
+
* [getFieldConfigurations()](#getfieldconfigurations)
|
|
11
12
|
|
|
12
13
|
### fromSchemaAndConfiguration()
|
|
13
14
|
|
|
@@ -69,4 +70,12 @@ Argument|Type|Default|Description
|
|
|
69
70
|
|
|
70
71
|
Return Value: `mixed`
|
|
71
72
|
|
|
73
|
+
### getFieldConfigurations()
|
|
74
|
+
|
|
75
|
+
```php
|
|
76
|
+
public function getFieldConfigurations(): mixed
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Return Value: `mixed`
|
|
80
|
+
|
|
72
81
|
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# StreamFieldConfiguration
|
|
2
|
+
|
|
3
|
+
**Fully Qualified**: [`\Frontastic\Common\SpecificationBundle\Domain\Schema\StreamFieldConfiguration`](../../../../../src/php/SpecificationBundle/Domain/Schema/StreamFieldConfiguration.php)
|
|
4
|
+
|
|
5
|
+
**Extends**: [`FieldConfiguration`](FieldConfiguration.md)
|
|
6
|
+
|
|
7
|
+
## Methods
|
|
8
|
+
|
|
9
|
+
* [getStreamType()](#getstreamtype)
|
|
10
|
+
|
|
11
|
+
### getStreamType()
|
|
12
|
+
|
|
13
|
+
```php
|
|
14
|
+
public function getStreamType(): mixed
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Return Value: `mixed`
|
|
18
|
+
|
|
19
|
+
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|