@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.
@@ -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: any;
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: any;
529
- expiration_days: any;
530
- file: any;
531
- handleSetProgress: any;
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;