@clxmedia/types 1.0.24 → 1.0.26

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.
@@ -45,13 +45,17 @@ export type CLXFormTimeRange = boolean | {
45
45
  start: number;
46
46
  end: number;
47
47
  };
48
+ export type CLXFormDateTime = {
49
+ iso_date_time: string;
50
+ zone: string;
51
+ };
48
52
  export type CLXFormResponseStringValue = CLXFormResponseValueBase & {
49
53
  type: 'STRING';
50
54
  value: string;
51
55
  };
52
56
  export type CLXFormResponseDateValue = CLXFormResponseValueBase & {
53
57
  type: 'DATE';
54
- value: string;
58
+ value: CLXFormDateTime;
55
59
  };
56
60
  export type CLXFormResponseScheduleValue = CLXFormResponseValueBase & {
57
61
  type: 'SCHEDULE';
@@ -106,6 +110,7 @@ export declare enum CLXFormFieldFileTypes {
106
110
  'gif' = "gif",
107
111
  'jpeg' = "jpeg",
108
112
  'jpg' = "jpg",
113
+ 'json' = "json",
109
114
  'mp4' = "mp4",
110
115
  'pdf' = "pdf",
111
116
  'png' = "png",
@@ -119,7 +124,9 @@ export declare enum CLXFormFieldFileTypes {
119
124
  'webm' = "webm",
120
125
  'webp' = "webp",
121
126
  'xls' = "xls",
122
- 'xlsx' = "xlsx"
127
+ 'xlsx' = "xlsx",
128
+ 'xml' = "xml",
129
+ 'zip' = "zip"
123
130
  }
124
131
  export type CLXFileFormField = CLXFormField & {
125
132
  type: 'file';
@@ -10,6 +10,7 @@ var CLXFormFieldFileTypes;
10
10
  CLXFormFieldFileTypes["gif"] = "gif";
11
11
  CLXFormFieldFileTypes["jpeg"] = "jpeg";
12
12
  CLXFormFieldFileTypes["jpg"] = "jpg";
13
+ CLXFormFieldFileTypes["json"] = "json";
13
14
  CLXFormFieldFileTypes["mp4"] = "mp4";
14
15
  CLXFormFieldFileTypes["pdf"] = "pdf";
15
16
  CLXFormFieldFileTypes["png"] = "png";
@@ -24,4 +25,6 @@ var CLXFormFieldFileTypes;
24
25
  CLXFormFieldFileTypes["webp"] = "webp";
25
26
  CLXFormFieldFileTypes["xls"] = "xls";
26
27
  CLXFormFieldFileTypes["xlsx"] = "xlsx";
28
+ CLXFormFieldFileTypes["xml"] = "xml";
29
+ CLXFormFieldFileTypes["zip"] = "zip";
27
30
  })(CLXFormFieldFileTypes || (exports.CLXFormFieldFileTypes = CLXFormFieldFileTypes = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",