gotrip-fx-transaction-form 1.0.116 → 1.0.118
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/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IFileUrls } from '../../types/response.dto';
|
|
2
|
+
type Props = {
|
|
3
|
+
isOpen: boolean;
|
|
4
|
+
onClose: () => void;
|
|
5
|
+
fileUrls?: IFileUrls;
|
|
6
|
+
};
|
|
7
|
+
export declare const ViewUploadedFilesModal: ({ isOpen, onClose, fileUrls }: Props) => import("react/jsx-runtime").JSX.Element | null;
|
|
8
|
+
export {};
|
|
@@ -101,6 +101,7 @@ export type ITransaction = {
|
|
|
101
101
|
bankResponseLog?: Record<string, any>;
|
|
102
102
|
bids?: IBid[];
|
|
103
103
|
znsInfo?: IZNSInfo;
|
|
104
|
+
fileUrls?: IFileUrls;
|
|
104
105
|
};
|
|
105
106
|
export type IESimTransaction = {
|
|
106
107
|
id: number;
|
|
@@ -457,6 +458,11 @@ export type IFileUrl = {
|
|
|
457
458
|
fileSize: number;
|
|
458
459
|
category: 'ticket' | 'idCard' | 'passport' | 'other';
|
|
459
460
|
};
|
|
461
|
+
export type IFileUrls = {
|
|
462
|
+
ticketFiles?: IFileUrl[];
|
|
463
|
+
idCardFiles?: IFileUrl[];
|
|
464
|
+
passportFiles?: IFileUrl[];
|
|
465
|
+
};
|
|
460
466
|
export declare enum EDebtReportStatus {
|
|
461
467
|
REVIEW = "review",
|
|
462
468
|
APPROVED = "approved",
|