@prismatic-io/spectral 7.0.6-pre → 7.0.7-pre
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/types/Inputs.d.ts +4 -4
- package/dist/types/Inputs.js +3 -3
- package/package.json +1 -1
package/dist/types/Inputs.d.ts
CHANGED
|
@@ -163,7 +163,7 @@ export interface Connection {
|
|
|
163
163
|
/** Defines attributes of an ObjectSelectionInputField. */
|
|
164
164
|
export interface ObjectSelectionInputField extends BaseInputField {
|
|
165
165
|
/** Data type the InputField will collect. */
|
|
166
|
-
type: "
|
|
166
|
+
type: "objectSelection";
|
|
167
167
|
/** Collection type of the InputField */
|
|
168
168
|
collection?: InputFieldCollection;
|
|
169
169
|
/** Default value for this field. */
|
|
@@ -174,7 +174,7 @@ export interface ObjectSelectionInputField extends BaseInputField {
|
|
|
174
174
|
/** Defines attributes of an ObjectFieldMapInputField. */
|
|
175
175
|
export interface ObjectFieldMapInputField extends BaseInputField {
|
|
176
176
|
/** Data type the InputField will collect. */
|
|
177
|
-
type: "
|
|
177
|
+
type: "objectFieldMap";
|
|
178
178
|
/** Collection type of the InputField */
|
|
179
179
|
collection?: InputFieldCollection;
|
|
180
180
|
/** Default value for this field. */
|
|
@@ -182,10 +182,10 @@ export interface ObjectFieldMapInputField extends BaseInputField {
|
|
|
182
182
|
/** Clean function */
|
|
183
183
|
clean?: InputCleanFunction<NonNullable<this["default"]>>;
|
|
184
184
|
}
|
|
185
|
-
/** Defines attributes of a
|
|
185
|
+
/** Defines attributes of a JSONFormInputField. */
|
|
186
186
|
export interface JSONFormInputField extends BaseInputField {
|
|
187
187
|
/** Data type the InputField will collect. */
|
|
188
|
-
type: "
|
|
188
|
+
type: "jsonForm";
|
|
189
189
|
/** Collection type of the InputField */
|
|
190
190
|
collection?: InputFieldCollection;
|
|
191
191
|
/** Default value for this field. */
|
package/dist/types/Inputs.js
CHANGED
|
@@ -10,7 +10,7 @@ exports.InputFieldDefaultMap = {
|
|
|
10
10
|
code: "",
|
|
11
11
|
conditional: undefined,
|
|
12
12
|
connection: undefined,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
objectSelection: undefined,
|
|
14
|
+
objectFieldMap: undefined,
|
|
15
|
+
jsonForm: undefined,
|
|
16
16
|
};
|