@clxmedia/types 1.0.41 → 1.0.42
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.
|
@@ -123,6 +123,7 @@ export type CLXFormResponses = {
|
|
|
123
123
|
export type CLXFormField = {
|
|
124
124
|
type: CLXFormFieldType;
|
|
125
125
|
response_type: CLXFormResponseType;
|
|
126
|
+
tags?: string[];
|
|
126
127
|
};
|
|
127
128
|
export type CLXFieldMasks = 'phone' | 'email' | 'name' | 'number' | 'none' | 'url';
|
|
128
129
|
export type CLXPlainFormFieldBase = CLXFormField & {
|
|
@@ -255,7 +256,6 @@ export type CLXFormQuestion = {
|
|
|
255
256
|
slug: string;
|
|
256
257
|
question_text: string;
|
|
257
258
|
help_text?: string;
|
|
258
|
-
tags: string[];
|
|
259
259
|
response_options: CLXFormQuestionResponseOptions;
|
|
260
260
|
};
|
|
261
261
|
export type CLXFormQuestions = {
|