gotrip-fx-transaction-form 1.0.117 → 1.0.120
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/index.js +25 -1
- package/package.json +1 -1
- package/types/components/Modal/ConfirmModal.d.ts +1 -0
- package/types/components/ViewUploadedFilesModal/ViewUploadedFilesModal.d.ts +8 -0
- package/types/constants/api-urls.d.ts +1 -0
- package/types/store/useAppStore.d.ts +13 -0
- package/types/types/response.dto.d.ts +6 -0
package/index.js
CHANGED
|
@@ -3097,7 +3097,8 @@ const zD = (e) => {
|
|
|
3097
3097
|
isLoading: !1,
|
|
3098
3098
|
modal: {
|
|
3099
3099
|
error: { isOpen: !1, message: "" },
|
|
3100
|
-
success: { isOpen: !1, message: "" }
|
|
3100
|
+
success: { isOpen: !1, message: "" },
|
|
3101
|
+
confirm: { isOpen: !1, title: void 0, description: void 0, onConfirm: void 0 }
|
|
3101
3102
|
},
|
|
3102
3103
|
setIsLoading: (t) => e({ isLoading: t }),
|
|
3103
3104
|
setModalError: ({ isOpen: t, message: r }) => e((n) => ({
|
|
@@ -3111,6 +3112,28 @@ const zD = (e) => {
|
|
|
3111
3112
|
})),
|
|
3112
3113
|
closeModalSuccess: () => e((t) => ({
|
|
3113
3114
|
modal: { ...t.modal, success: { isOpen: !1, message: "" } }
|
|
3115
|
+
})),
|
|
3116
|
+
setModalConfirm: ({
|
|
3117
|
+
isOpen: t,
|
|
3118
|
+
title: r,
|
|
3119
|
+
description: n,
|
|
3120
|
+
onConfirm: a
|
|
3121
|
+
}) => e((i) => ({
|
|
3122
|
+
modal: {
|
|
3123
|
+
...i.modal,
|
|
3124
|
+
confirm: {
|
|
3125
|
+
isOpen: t,
|
|
3126
|
+
title: r,
|
|
3127
|
+
description: n,
|
|
3128
|
+
onConfirm: a
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
})),
|
|
3132
|
+
closeModalConfirm: () => e((t) => ({
|
|
3133
|
+
modal: {
|
|
3134
|
+
...t.modal,
|
|
3135
|
+
confirm: { isOpen: !1, title: void 0, description: void 0, onConfirm: void 0 }
|
|
3136
|
+
}
|
|
3114
3137
|
}))
|
|
3115
3138
|
}));
|
|
3116
3139
|
function _6(e) {
|
|
@@ -35005,6 +35028,7 @@ const {
|
|
|
35005
35028
|
},
|
|
35006
35029
|
transactionHandlers: {
|
|
35007
35030
|
list: `${Xe.API_URL}/transaction-handlers/list`,
|
|
35031
|
+
getSignedUrls: `${Xe.API_URL}/transaction-handlers/get-signed-urls`,
|
|
35008
35032
|
esimTransactionList: `${Xe.API_URL}/transaction-handlers/esim-transaction-list`,
|
|
35009
35033
|
create: `${Xe.API_URL}/transaction-handlers/create`,
|
|
35010
35034
|
createMany: `${Xe.API_URL}/transaction-handlers/create-many`,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ConfirmModal: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -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 {};
|
|
@@ -10,6 +10,12 @@ export type AppState = {
|
|
|
10
10
|
isOpen: boolean;
|
|
11
11
|
message: string | ReactNode;
|
|
12
12
|
};
|
|
13
|
+
confirm: {
|
|
14
|
+
isOpen: boolean;
|
|
15
|
+
title: ReactNode | undefined;
|
|
16
|
+
description?: ReactNode | undefined;
|
|
17
|
+
onConfirm?: () => Promise<void> | void;
|
|
18
|
+
};
|
|
13
19
|
};
|
|
14
20
|
setIsLoading: (isLoading: boolean) => void;
|
|
15
21
|
setModalError: (modal: {
|
|
@@ -22,5 +28,12 @@ export type AppState = {
|
|
|
22
28
|
}) => void;
|
|
23
29
|
closeModalError: () => void;
|
|
24
30
|
closeModalSuccess: () => void;
|
|
31
|
+
setModalConfirm: (modal: {
|
|
32
|
+
isOpen: boolean;
|
|
33
|
+
title: ReactNode | undefined;
|
|
34
|
+
description?: ReactNode | undefined;
|
|
35
|
+
onConfirm?: () => Promise<void> | void;
|
|
36
|
+
}) => void;
|
|
37
|
+
closeModalConfirm: () => void;
|
|
25
38
|
};
|
|
26
39
|
export declare const useAppStore: import('zustand').UseBoundStore<import('zustand').StoreApi<AppState>>;
|
|
@@ -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",
|