@yuno-payments/dashboard-api-mfe 2.12.0 → 2.13.0

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.
@@ -220,6 +220,7 @@ export interface ListSubscriptionsParams {
220
220
  countries?: string[];
221
221
  currencies?: string[];
222
222
  payment_method_types?: string[];
223
+ in_trial?: boolean;
223
224
  page?: number;
224
225
  size?: number;
225
226
  merchant_reference?: string;
@@ -10,6 +10,8 @@ export interface InsightsFraudParams {
10
10
  new_version: boolean;
11
11
  payment_statuses: string;
12
12
  card_brand: string;
13
+ /** Date anchor for the chargebacks widgets: 'PAYMENT' | 'CHARGEBACK' */
14
+ chargeback_date?: string;
13
15
  }
14
16
  /**
15
17
  * Body shape sent to datalake-ms /insights/* endpoints.
@@ -31,6 +33,7 @@ export interface InsightsFraudBody {
31
33
  card_brand?: string[];
32
34
  source?: string;
33
35
  new_version?: boolean;
36
+ chargebacks_filtered_date?: string;
34
37
  }
35
38
  export interface PeriodicityRecord {
36
39
  [key: string]: number;
@@ -50,7 +50,6 @@ export declare namespace User {
50
50
  }
51
51
  interface UserSettings extends UserSettingsTable {
52
52
  language: string;
53
- mfa_active: boolean;
54
53
  timezone: Timezone;
55
54
  viewed_tutorials: string[];
56
55
  theme?: {
package/build/index.d.ts CHANGED
@@ -414,6 +414,7 @@ interface ListSubscriptionsParams {
414
414
  countries?: string[];
415
415
  currencies?: string[];
416
416
  payment_method_types?: string[];
417
+ in_trial?: boolean;
417
418
  page?: number;
418
419
  size?: number;
419
420
  merchant_reference?: string;
@@ -1493,7 +1494,6 @@ declare namespace User {
1493
1494
  }
1494
1495
  interface UserSettings extends UserSettingsTable {
1495
1496
  language: string;
1496
- mfa_active: boolean;
1497
1497
  timezone: Timezone;
1498
1498
  viewed_tutorials: string[];
1499
1499
  theme?: {
@@ -2783,6 +2783,8 @@ interface InsightsFraudParams {
2783
2783
  new_version: boolean;
2784
2784
  payment_statuses: string;
2785
2785
  card_brand: string;
2786
+ /** Date anchor for the chargebacks widgets: 'PAYMENT' | 'CHARGEBACK' */
2787
+ chargeback_date?: string;
2786
2788
  }
2787
2789
  /**
2788
2790
  * Body shape sent to datalake-ms /insights/* endpoints.
@@ -2804,6 +2806,7 @@ interface InsightsFraudBody {
2804
2806
  card_brand?: string[];
2805
2807
  source?: string;
2806
2808
  new_version?: boolean;
2809
+ chargebacks_filtered_date?: string;
2807
2810
  }
2808
2811
  interface PeriodicityRecord {
2809
2812
  [key: string]: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",