rapida-partner 1.7.3 → 1.7.5
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
|
@@ -59,11 +59,12 @@ interface IContractRequest {
|
|
|
59
59
|
}[];
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
interface IContractRequestField {
|
|
62
|
+
export interface IContractRequestField {
|
|
63
63
|
name: string;
|
|
64
64
|
dataType: EDataType;
|
|
65
65
|
requiredOneOf?: string[];
|
|
66
66
|
isRequired?: boolean;
|
|
67
|
+
isHidden?: boolean;
|
|
67
68
|
foreignKey?: IContractRequestFieldForeignKey;
|
|
68
69
|
isPrimaryKey?: boolean;
|
|
69
70
|
minSize?: number;
|
|
@@ -80,6 +81,7 @@ interface IContractRequestFieldForeignKey {
|
|
|
80
81
|
connectionAttribute: string;
|
|
81
82
|
relationship: "many-to-many" | "one-to-many" | "one-to-one"
|
|
82
83
|
fields?: IContractRequestField[];
|
|
84
|
+
isHidden?: boolean;
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
export type IFormElement =
|
|
@@ -75,6 +75,10 @@
|
|
|
75
75
|
"type": "string"
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
+
"isHidden": {
|
|
79
|
+
"type": "boolean",
|
|
80
|
+
"description": "If true, the attribute will not be exposed in the API."
|
|
81
|
+
},
|
|
78
82
|
"foreignKey": {
|
|
79
83
|
"type": "object",
|
|
80
84
|
"properties": {
|
|
@@ -102,6 +106,10 @@
|
|
|
102
106
|
},
|
|
103
107
|
"required": ["name", "dataType"]
|
|
104
108
|
}
|
|
109
|
+
},
|
|
110
|
+
"isHidden": {
|
|
111
|
+
"type": "boolean",
|
|
112
|
+
"description": "If true, the connection attribute will not be exposed in the API."
|
|
105
113
|
}
|
|
106
114
|
},
|
|
107
115
|
"required": [
|