oneentry 1.0.30 → 1.0.31
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.
|
@@ -19,14 +19,14 @@ interface IForms {
|
|
|
19
19
|
* @property {string} processingType - Type of form processing.
|
|
20
20
|
* @property {ILocalizeInfos} localizeInfos - The name of the form, taking into account localization.
|
|
21
21
|
* @property {object} processingData - Form data.
|
|
22
|
-
* @property {IAttributes} attribute - Array of attribute values from the used attribute set for displaying the form (taking into account the specified language)
|
|
22
|
+
* @property {Array<IAttributes>} attribute - Array of attribute values from the used attribute set for displaying the form (taking into account the specified language)
|
|
23
23
|
* @property {number} version - The version number of the object.
|
|
24
24
|
* @property {string} identifier - The textual identifier for the record field.
|
|
25
25
|
* @property {number} position - The position of the object.
|
|
26
26
|
*/
|
|
27
27
|
interface IFormsEntity {
|
|
28
28
|
attributeSetId: number;
|
|
29
|
-
attributes: IAttributes
|
|
29
|
+
attributes: Array<IAttributes>;
|
|
30
30
|
id: number;
|
|
31
31
|
identifier: string;
|
|
32
32
|
localizeInfos: ILocalizeInfos;
|
|
@@ -50,7 +50,7 @@ interface IPageConfig {
|
|
|
50
50
|
* @property {number} id - The identifier of the object.
|
|
51
51
|
* @property {number} version - The version number of the object.
|
|
52
52
|
* @property {string} identifier - The textual identifier for the record field.
|
|
53
|
-
* @property {IAttributes} attributes - Array of attribute values from the used attribute set for displaying the form (taking into account the specified language).
|
|
53
|
+
* @property {Array<IAttributes>} attributes - Array of attribute values from the used attribute set for displaying the form (taking into account the specified language).
|
|
54
54
|
* @property {number} attributeSetId - The identifier of the attribute set being used.
|
|
55
55
|
* @property {string} processingType - Type of form processing.
|
|
56
56
|
* @property {LocalizeType} localizeInfos - The name of the page, taking into account localization.
|
|
@@ -61,7 +61,7 @@ interface IPositionForm {
|
|
|
61
61
|
id: number;
|
|
62
62
|
version: number;
|
|
63
63
|
identifier: string;
|
|
64
|
-
attributes: IAttributes
|
|
64
|
+
attributes: Array<IAttributes>;
|
|
65
65
|
attributeSetId: number;
|
|
66
66
|
processingType: string;
|
|
67
67
|
localizeInfos: LocalizeType;
|