@embedreach/components 0.1.90 → 0.1.91

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.
package/dist/index.d.ts CHANGED
@@ -45,12 +45,14 @@ export declare const Engage: ({ iconDefinitions: mergedIconDefinitions, }: {
45
45
  }) => JSX_2.Element;
46
46
 
47
47
  declare interface EngageTypedOverrides {
48
- user: string;
49
- user_other: string;
50
- automation: string;
51
- automation_other: string;
52
- segment: string;
53
- segment_other: string;
48
+ user?: string;
49
+ user_other?: string;
50
+ automation?: string;
51
+ automation_other?: string;
52
+ segment?: string;
53
+ segment_other?: string;
54
+ one_time?: string;
55
+ trigger_based?: string;
54
56
  }
55
57
 
56
58
  /**
@@ -105,9 +107,9 @@ declare interface LanguageConfig {
105
107
  * For example if you call your 'users' -> 'contacts', or 'automations' -> 'flows'
106
108
  */
107
109
  overrides?: {
108
- engage: {
109
- en: EngageTypedOverrides;
110
- es: EngageTypedOverrides;
110
+ engage?: {
111
+ en?: EngageTypedOverrides;
112
+ es?: EngageTypedOverrides;
111
113
  };
112
114
  };
113
115
  }