@clxmedia/types 1.0.42 → 1.0.44
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.
|
@@ -31,6 +31,7 @@ export type CLXFormConditionSubjectEntry = {
|
|
|
31
31
|
};
|
|
32
32
|
export type CLXFormResponseValueBase = {
|
|
33
33
|
type: CLXFormResponseType;
|
|
34
|
+
unix_timestamp: number;
|
|
34
35
|
errorMsg?: CLXFormErrorMsg[];
|
|
35
36
|
};
|
|
36
37
|
export type CLXFormsFilesDescriptor = {
|
|
@@ -123,7 +124,6 @@ export type CLXFormResponses = {
|
|
|
123
124
|
export type CLXFormField = {
|
|
124
125
|
type: CLXFormFieldType;
|
|
125
126
|
response_type: CLXFormResponseType;
|
|
126
|
-
tags?: string[];
|
|
127
127
|
};
|
|
128
128
|
export type CLXFieldMasks = 'phone' | 'email' | 'name' | 'number' | 'none' | 'url';
|
|
129
129
|
export type CLXPlainFormFieldBase = CLXFormField & {
|
|
@@ -251,6 +251,7 @@ export type CLXSingleCompoundFormField = CLXFormField & {
|
|
|
251
251
|
export type CLXFormQuestionResponseOptions = {
|
|
252
252
|
field: CLXTextFormField | CLXNumberFormField | CLXDateFormField | CLXScheduleFormField | CLXContactFormField | CLXMultipleContactFormField | CLXSingleCompoundFormField | CLXFileFormField | CLXCompoundFormField | CLXTextAreaFormField | CLXBooleanFormField | CLXSelectFormField | CLXMultiSelectFormField | CLXMultipleTextFormField;
|
|
253
253
|
has_parent?: boolean;
|
|
254
|
+
tags?: string[];
|
|
254
255
|
};
|
|
255
256
|
export type CLXFormQuestion = {
|
|
256
257
|
slug: string;
|