@yuno-payments/dashboard-api-mfe 1.17.0 → 1.17.2
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 +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +9 -7
- package/build/cjs/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +9 -7
- package/build/esm/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
- package/build/index.d.ts +11 -7
- package/package.json +1 -1
|
@@ -521,14 +521,16 @@ export declare class Api extends HttpClient {
|
|
|
521
521
|
putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
522
522
|
changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
523
523
|
changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
524
|
-
postBlackListItems<T>({ payload }: {
|
|
525
|
-
payload:
|
|
524
|
+
postBlackListItems<T>({ payload, accountCode, }: {
|
|
525
|
+
payload: unknown;
|
|
526
|
+
accountCode?: string;
|
|
526
527
|
}): Promise<AxiosResponse<T, any>>;
|
|
527
|
-
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
|
|
528
|
-
blacklist_code:
|
|
529
|
-
expiration_days:
|
|
530
|
-
file:
|
|
531
|
-
handleSetProgress:
|
|
528
|
+
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, accountCode, }: {
|
|
529
|
+
blacklist_code: string;
|
|
530
|
+
expiration_days: number;
|
|
531
|
+
file: string;
|
|
532
|
+
handleSetProgress: (progress: number) => void;
|
|
533
|
+
accountCode?: string;
|
|
532
534
|
}): Promise<AxiosResponse<T, any>>;
|
|
533
535
|
deleteBlackListType<T>({ black_list_code, }: {
|
|
534
536
|
black_list_code: any;
|
|
@@ -18,11 +18,13 @@ export type PostBlackList = {
|
|
|
18
18
|
};
|
|
19
19
|
type PostBlackListItems = {
|
|
20
20
|
payload: FraudScreening.BlackListItemsPayload;
|
|
21
|
+
accountCode?: string;
|
|
21
22
|
};
|
|
22
23
|
type PostBlackListBatch = {
|
|
23
24
|
blacklist_code: string;
|
|
24
25
|
expiration_days: number;
|
|
25
26
|
file: string;
|
|
27
|
+
accountCode?: string;
|
|
26
28
|
};
|
|
27
29
|
export type ChangePaymentsWebhook = {
|
|
28
30
|
paymentCode: string;
|