@prismatic-io/spectral 7.6.7 → 7.6.8
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 +2 -2
- package/package.json +1 -1
package/dist/types/Inputs.d.ts
CHANGED
|
@@ -134,8 +134,8 @@ export interface CodeInputField extends BaseInputField {
|
|
|
134
134
|
collection?: InputFieldCollection;
|
|
135
135
|
/** Default value for this field. */
|
|
136
136
|
default?: unknown;
|
|
137
|
-
/** Code language
|
|
138
|
-
language
|
|
137
|
+
/** Code language for syntax highlighting. For no syntax highlighting, choose "plaintext" */
|
|
138
|
+
language: "css" | "graphql" | "handlebars" | "hcl" | "html" | "javascript" | "json" | "liquid" | "markdown" | "mysql" | "pgsql" | "plaintext" | "sql" | "typescript" | "xml" | "yaml";
|
|
139
139
|
/** Dictates possible choices for the input. */
|
|
140
140
|
model?: InputFieldChoice[];
|
|
141
141
|
/** Clean function */
|