@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.
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.types.d.ts +1 -0
- package/build/cjs/types/types/data-report/fraud.types.d.ts +3 -0
- package/build/cjs/types/types/user/user.d.ts +0 -1
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.types.d.ts +1 -0
- package/build/esm/types/types/data-report/fraud.types.d.ts +3 -0
- package/build/esm/types/types/user/user.d.ts +0 -1
- package/build/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -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;
|
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;
|