@mx-cartographer/insights-ui 1.8.9 → 1.8.11-alpha.JB

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.
@@ -1,17 +1,17 @@
1
1
  interface copy {
2
2
  aria_label_thumbs_down: string;
3
3
  aria_label_thumbs_up: string;
4
+ benefits_list_array: string[];
5
+ description: string;
4
6
  footer_title: string;
5
7
  header_text: string;
6
- lower_description: string;
7
- lower_header_text: string;
8
- lower_list_array: Array<{
8
+ shared_info_description: string;
9
+ shared_info_header_text: string;
10
+ shared_info_list_array: Array<{
9
11
  content: string;
10
12
  icon_name: string;
11
13
  title: string;
12
14
  }>;
13
- upper_description: string;
14
- upper_list_array: string[];
15
15
  }
16
16
  interface DrawerProps {
17
17
  copy: copy;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { CommonBeatProps } from '../../../types/CommonBeat';
3
+ export declare const Offer: React.FC<CommonBeatProps>;
@@ -0,0 +1,33 @@
1
+ import { Beat } from '../../../types/CommonBeat';
2
+ export interface OfferType {
3
+ guid: string;
4
+ analytics_client_guid: string;
5
+ campaign_activated_at: string;
6
+ campaign_call_to_action: string | null;
7
+ campaign_image_url: string;
8
+ campaign_name: string;
9
+ campaign_type: number;
10
+ campaign_url: string;
11
+ clicked_at: string | null;
12
+ created_at?: string | number;
13
+ deleted_at: string | null;
14
+ dismissed_at?: number | null;
15
+ expire_at: string | null;
16
+ has_been_clicked: boolean;
17
+ has_been_dismissed: boolean;
18
+ has_been_viewed: boolean;
19
+ image_url: string;
20
+ is_deleted: boolean;
21
+ is_expired: boolean;
22
+ status_code: number;
23
+ updated_at: string;
24
+ user_external_guid: string | null;
25
+ viewed_at: string | null;
26
+ pulse_body: string;
27
+ pulse_title: string;
28
+ pulse_call_to_action_text: string;
29
+ pulse_post_message: string;
30
+ }
31
+ export interface BeatLikeOffer extends OfferType, Beat {
32
+ image_url: string;
33
+ }
@@ -0,0 +1,3 @@
1
+ export * from './Offer';
2
+ export * from './Types';
3
+ export { default as mock } from './mock.json';
@@ -8,3 +8,4 @@ export * from './MonthlySpendingComparisonV2';
8
8
  export * from './UnifiedDeposit';
9
9
  export * from './WeeklyNoSpendDays';
10
10
  export * from './BillAmountNotStandard';
11
+ export * from './MarketingHub';