@yuno-payments/dashboard-api-mfe 2.14.0 → 2.15.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/types/api/api.types.d.ts +1 -0
- package/build/cjs/types/types/fraud-screening/fraud-screening.d.ts +6 -0
- package/build/esm/types/api/api.types.d.ts +1 -0
- package/build/esm/types/types/fraud-screening/fraud-screening.d.ts +6 -0
- package/build/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare namespace FraudScreening {
|
|
2
|
+
type MatchType = 'PREFIX' | 'EXACT';
|
|
2
3
|
interface BlackList {
|
|
3
4
|
account_code: string;
|
|
4
5
|
organization_code: string;
|
|
@@ -10,6 +11,7 @@ export declare namespace FraudScreening {
|
|
|
10
11
|
deleted_at: string;
|
|
11
12
|
elements_amount: number;
|
|
12
13
|
elements: elementBlacklist[];
|
|
14
|
+
match_type?: MatchType;
|
|
13
15
|
}
|
|
14
16
|
interface BlocklistData {
|
|
15
17
|
total_pages: number;
|
|
@@ -29,6 +31,7 @@ export declare namespace FraudScreening {
|
|
|
29
31
|
status?: string | boolean;
|
|
30
32
|
elements_amount: number;
|
|
31
33
|
elements: elementBlacklist[];
|
|
34
|
+
match_type?: MatchType;
|
|
32
35
|
}
|
|
33
36
|
interface elementBlacklist {
|
|
34
37
|
element: string;
|
|
@@ -42,6 +45,7 @@ export declare namespace FraudScreening {
|
|
|
42
45
|
account_codes?: string[];
|
|
43
46
|
account?: string;
|
|
44
47
|
active?: boolean | string;
|
|
48
|
+
match_type?: MatchType;
|
|
45
49
|
}
|
|
46
50
|
interface PostBlockList {
|
|
47
51
|
account_codes: string[];
|
|
@@ -63,6 +67,7 @@ export declare namespace FraudScreening {
|
|
|
63
67
|
code?: string;
|
|
64
68
|
name?: string;
|
|
65
69
|
status?: string;
|
|
70
|
+
match_type?: MatchType;
|
|
66
71
|
}
|
|
67
72
|
interface DeleteBlackList {
|
|
68
73
|
account_code: string;
|
|
@@ -105,5 +110,6 @@ export declare namespace FraudScreening {
|
|
|
105
110
|
unique_elements_amount: number;
|
|
106
111
|
active: boolean;
|
|
107
112
|
blocked_payments: number;
|
|
113
|
+
match_type?: MatchType;
|
|
108
114
|
}
|
|
109
115
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare namespace FraudScreening {
|
|
2
|
+
type MatchType = 'PREFIX' | 'EXACT';
|
|
2
3
|
interface BlackList {
|
|
3
4
|
account_code: string;
|
|
4
5
|
organization_code: string;
|
|
@@ -10,6 +11,7 @@ export declare namespace FraudScreening {
|
|
|
10
11
|
deleted_at: string;
|
|
11
12
|
elements_amount: number;
|
|
12
13
|
elements: elementBlacklist[];
|
|
14
|
+
match_type?: MatchType;
|
|
13
15
|
}
|
|
14
16
|
interface BlocklistData {
|
|
15
17
|
total_pages: number;
|
|
@@ -29,6 +31,7 @@ export declare namespace FraudScreening {
|
|
|
29
31
|
status?: string | boolean;
|
|
30
32
|
elements_amount: number;
|
|
31
33
|
elements: elementBlacklist[];
|
|
34
|
+
match_type?: MatchType;
|
|
32
35
|
}
|
|
33
36
|
interface elementBlacklist {
|
|
34
37
|
element: string;
|
|
@@ -42,6 +45,7 @@ export declare namespace FraudScreening {
|
|
|
42
45
|
account_codes?: string[];
|
|
43
46
|
account?: string;
|
|
44
47
|
active?: boolean | string;
|
|
48
|
+
match_type?: MatchType;
|
|
45
49
|
}
|
|
46
50
|
interface PostBlockList {
|
|
47
51
|
account_codes: string[];
|
|
@@ -63,6 +67,7 @@ export declare namespace FraudScreening {
|
|
|
63
67
|
code?: string;
|
|
64
68
|
name?: string;
|
|
65
69
|
status?: string;
|
|
70
|
+
match_type?: MatchType;
|
|
66
71
|
}
|
|
67
72
|
interface DeleteBlackList {
|
|
68
73
|
account_code: string;
|
|
@@ -105,5 +110,6 @@ export declare namespace FraudScreening {
|
|
|
105
110
|
unique_elements_amount: number;
|
|
106
111
|
active: boolean;
|
|
107
112
|
blocked_payments: number;
|
|
113
|
+
match_type?: MatchType;
|
|
108
114
|
}
|
|
109
115
|
}
|
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;
|
|
@@ -3919,6 +3920,7 @@ declare namespace ReconciliationInsights {
|
|
|
3919
3920
|
}
|
|
3920
3921
|
|
|
3921
3922
|
declare namespace FraudScreening {
|
|
3923
|
+
type MatchType = 'PREFIX' | 'EXACT';
|
|
3922
3924
|
interface BlackList {
|
|
3923
3925
|
account_code: string;
|
|
3924
3926
|
organization_code: string;
|
|
@@ -3930,6 +3932,7 @@ declare namespace FraudScreening {
|
|
|
3930
3932
|
deleted_at: string;
|
|
3931
3933
|
elements_amount: number;
|
|
3932
3934
|
elements: elementBlacklist[];
|
|
3935
|
+
match_type?: MatchType;
|
|
3933
3936
|
}
|
|
3934
3937
|
interface BlocklistData {
|
|
3935
3938
|
total_pages: number;
|
|
@@ -3949,6 +3952,7 @@ declare namespace FraudScreening {
|
|
|
3949
3952
|
status?: string | boolean;
|
|
3950
3953
|
elements_amount: number;
|
|
3951
3954
|
elements: elementBlacklist[];
|
|
3955
|
+
match_type?: MatchType;
|
|
3952
3956
|
}
|
|
3953
3957
|
interface elementBlacklist {
|
|
3954
3958
|
element: string;
|
|
@@ -3962,6 +3966,7 @@ declare namespace FraudScreening {
|
|
|
3962
3966
|
account_codes?: string[];
|
|
3963
3967
|
account?: string;
|
|
3964
3968
|
active?: boolean | string;
|
|
3969
|
+
match_type?: MatchType;
|
|
3965
3970
|
}
|
|
3966
3971
|
interface PostBlockList {
|
|
3967
3972
|
account_codes: string[];
|
|
@@ -3983,6 +3988,7 @@ declare namespace FraudScreening {
|
|
|
3983
3988
|
code?: string;
|
|
3984
3989
|
name?: string;
|
|
3985
3990
|
status?: string;
|
|
3991
|
+
match_type?: MatchType;
|
|
3986
3992
|
}
|
|
3987
3993
|
interface DeleteBlackList {
|
|
3988
3994
|
account_code: string;
|
|
@@ -4025,6 +4031,7 @@ declare namespace FraudScreening {
|
|
|
4025
4031
|
unique_elements_amount: number;
|
|
4026
4032
|
active: boolean;
|
|
4027
4033
|
blocked_payments: number;
|
|
4034
|
+
match_type?: MatchType;
|
|
4028
4035
|
}
|
|
4029
4036
|
}
|
|
4030
4037
|
|