@clxmedia/types 1.0.182 → 1.0.184

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.
@@ -216,6 +216,7 @@ export type CLXGridFormField = CLXFormField & {
216
216
  type: "grid";
217
217
  response_type: "GRID";
218
218
  columns: CLXGridColumn[];
219
+ max_rows?: number;
219
220
  };
220
221
  export type CLXContactFormFieldBase = CLXFormField & {
221
222
  type: "contact";
@@ -265,6 +266,7 @@ export type CLXNumberFormField = CLXPlainFormFieldBase & {
265
266
  export type CLXTextAreaFormField = CLXFormField & {
266
267
  type: "textarea";
267
268
  response_type: "STRING";
269
+ plain_text?: boolean;
268
270
  };
269
271
  export type CLXSelectableFormField = CLXFormField & {
270
272
  select_type: CLXFormSelectType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.182",
3
+ "version": "1.0.184",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",