gotrip-fx-transaction-form 1.0.79 → 1.0.81
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
|
@@ -51,6 +51,14 @@ export type IAgent = {
|
|
|
51
51
|
phone: string;
|
|
52
52
|
identityNumber: string;
|
|
53
53
|
};
|
|
54
|
+
export type IZNSInfo = {
|
|
55
|
+
msgId: string;
|
|
56
|
+
status?: string;
|
|
57
|
+
code?: string;
|
|
58
|
+
listParams?: Record<string, string>;
|
|
59
|
+
template?: string;
|
|
60
|
+
statusDetailResponse?: Record<string, any>;
|
|
61
|
+
};
|
|
54
62
|
export type ITransaction = {
|
|
55
63
|
id: number;
|
|
56
64
|
fxTransactionId?: number;
|
|
@@ -87,6 +95,7 @@ export type ITransaction = {
|
|
|
87
95
|
cancelReason?: string;
|
|
88
96
|
bankResponseLog?: Record<string, any>;
|
|
89
97
|
bids?: IBid[];
|
|
98
|
+
znsInfo?: IZNSInfo;
|
|
90
99
|
};
|
|
91
100
|
export type IESimTransaction = {
|
|
92
101
|
id: number;
|