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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.116",
3
+ "version": "1.0.118",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -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 {};
@@ -11,6 +11,7 @@ export declare const ApiUrls: {
11
11
  };
12
12
  transactionHandlers: {
13
13
  list: string;
14
+ getSignedUrls: string;
14
15
  esimTransactionList: string;
15
16
  create: string;
16
17
  createMany: string;
@@ -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",