@clxmedia/types 1.0.183 → 1.0.185

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.
@@ -266,6 +266,7 @@ export type CLXNumberFormField = CLXPlainFormFieldBase & {
266
266
  export type CLXTextAreaFormField = CLXFormField & {
267
267
  type: "textarea";
268
268
  response_type: "STRING";
269
+ plain_text?: boolean;
269
270
  };
270
271
  export type CLXSelectableFormField = CLXFormField & {
271
272
  select_type: CLXFormSelectType;
@@ -43,6 +43,7 @@ export interface MediaHubAsset {
43
43
  versions: MediaHubAssetVersion[];
44
44
  img_width: number | null;
45
45
  img_height: number | null;
46
+ is_favorite: boolean;
46
47
  created_at: Date;
47
48
  uploaded_at: Date | null;
48
49
  updated_at: Date | null;
@@ -68,8 +69,8 @@ export interface MediaHubAssetFilters {
68
69
  origin?: string;
69
70
  include_archived?: boolean;
70
71
  }
71
- export type AssetOverlayPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
72
- export type AssetOverlaySize = 'small' | 'medium' | 'large';
72
+ export type AssetOverlayPosition = "top-left" | "top-right" | "bottom-left" | "bottom-right";
73
+ export type AssetOverlaySize = "small" | "medium" | "large";
73
74
  export interface AssetOverlayConfig {
74
75
  position: AssetOverlayPosition;
75
76
  size: AssetOverlaySize;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.183",
3
+ "version": "1.0.185",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -106,4 +106,4 @@
106
106
  "url": "git+https://github.com/adsupnow/clxmedia-type-definitions.git"
107
107
  },
108
108
  "bugs": "https://github.com/adsupnow/clxmedia-type-definitions"
109
- }
109
+ }