react-native-fpay 0.4.33 → 0.4.34
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/lib/module/core/api/index.js +86 -21
- package/lib/module/core/api/index.js.map +1 -1
- package/lib/module/ui/components/ConfirmScreen.js +32 -4
- package/lib/module/ui/components/ConfirmScreen.js.map +1 -1
- package/lib/module/ui/screens/BillsScreen.js +30 -14
- package/lib/module/ui/screens/BillsScreen.js.map +1 -1
- package/lib/module/ui/screens/styles.js +2 -1
- package/lib/module/ui/screens/styles.js.map +1 -1
- package/lib/module/ui/screens/sub/sendPayment/TransferSubScreen.js +10 -8
- package/lib/module/ui/screens/sub/sendPayment/TransferSubScreen.js.map +1 -1
- package/lib/typescript/src/core/api/index.d.ts +154 -46
- package/lib/typescript/src/core/api/index.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/ConfirmScreen.d.ts.map +1 -1
- package/lib/typescript/src/ui/screens/BillsScreen.d.ts +1 -1
- package/lib/typescript/src/ui/screens/BillsScreen.d.ts.map +1 -1
- package/lib/typescript/src/ui/screens/styles.d.ts.map +1 -1
- package/lib/typescript/src/ui/screens/sub/sendPayment/TransferSubScreen.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/core/api/index.ts +197 -86
- package/src/ui/components/ConfirmScreen.tsx +37 -36
- package/src/ui/screens/BillsScreen.tsx +85 -26
- package/src/ui/screens/styles.ts +2 -1
- package/src/ui/screens/sub/sendPayment/TransferSubScreen.tsx +9 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type FPSendPaymentRequest, type FPUserInfo, type FPNetworkCode, type FPMeterType, type FPAirtimePurchaseRequest, type FPDataPurchaseRequest, type FPElectricityPurchaseRequest, type FPCablePurchaseRequest } from '../types';
|
|
1
|
+
import { type FPBankItem, type FPNQRData, type FPTxStatus, type FPProximityPeer, type FPSendPaymentRequest, type FPUserInfo, type FPAccount, type FPTransactionResponse, type FPBalance, type HttpCallResponseFormat, type FPNetworkOperator, type FPNetworkCode, type FPDataPlan, type FPBillProvider, type FPBillTariff, type FPMeterLookupResult, type FPMeterType, type FPAirtimePurchaseRequest, type FPDataPurchaseRequest, type FPElectricityPurchaseRequest, type FPCablePurchaseRequest, type FPBillTransaction } from '../types';
|
|
2
2
|
export declare const healthAPI: {
|
|
3
3
|
ping: () => Promise<any>;
|
|
4
4
|
};
|
|
@@ -6,27 +6,66 @@ export declare const authenticateAPI: {
|
|
|
6
6
|
login: (appId: string) => Promise<any>;
|
|
7
7
|
profile: () => Promise<any>;
|
|
8
8
|
logout: () => Promise<any>;
|
|
9
|
-
validateOtp: (otp: string, email: string) => Promise<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
validateOtp: (otp: string, email: string) => Promise<{
|
|
10
|
+
Response: any;
|
|
11
|
+
}>;
|
|
12
|
+
validateToken: () => Promise<{
|
|
13
|
+
response: HttpCallResponseFormat;
|
|
14
|
+
}>;
|
|
15
|
+
sendSmsOtp: (payload: any) => Promise<{
|
|
16
|
+
status: boolean;
|
|
17
|
+
message: string;
|
|
18
|
+
payload: any;
|
|
19
|
+
}>;
|
|
20
|
+
verifyBvn: () => Promise<{
|
|
21
|
+
response: HttpCallResponseFormat;
|
|
22
|
+
}>;
|
|
23
|
+
verifySms: (payload: any) => Promise<{
|
|
24
|
+
response: HttpCallResponseFormat;
|
|
25
|
+
}>;
|
|
26
|
+
updateProfile: (payload: any) => Promise<{
|
|
27
|
+
response: HttpCallResponseFormat;
|
|
28
|
+
}>;
|
|
15
29
|
};
|
|
16
30
|
export declare const accountAPI: {
|
|
17
|
-
generate: (user: FPUserInfo) => Promise<
|
|
18
|
-
getAccount: () => Promise<
|
|
19
|
-
getAgentBalance: () => Promise<
|
|
31
|
+
generate: (user: FPUserInfo) => Promise<FPAccount>;
|
|
32
|
+
getAccount: () => Promise<FPAccount>;
|
|
33
|
+
getAgentBalance: () => Promise<FPBalance>;
|
|
20
34
|
};
|
|
21
35
|
export declare const transferAPI: {
|
|
22
|
-
getBanks: () => Promise<
|
|
23
|
-
verifyAccount: (accountNumber: string, bankCode: string) => Promise<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
36
|
+
getBanks: () => Promise<FPBankItem[]>;
|
|
37
|
+
verifyAccount: (accountNumber: string, bankCode: string) => Promise<{
|
|
38
|
+
accountName: string;
|
|
39
|
+
accountNumber: string;
|
|
40
|
+
bankName: string;
|
|
41
|
+
bankCode: string;
|
|
42
|
+
}>;
|
|
43
|
+
verifyWalletAccount: (accountNumber: string) => Promise<{
|
|
44
|
+
accountName: string;
|
|
45
|
+
accountNumber: string;
|
|
46
|
+
bankName: string;
|
|
47
|
+
bankCode: string;
|
|
48
|
+
}>;
|
|
49
|
+
validateTransfer: (pin: string, userId: string, receiverId: string) => Promise<{
|
|
50
|
+
status: boolean;
|
|
51
|
+
message: string;
|
|
52
|
+
payload?: {
|
|
53
|
+
temp_id: string;
|
|
54
|
+
};
|
|
55
|
+
}>;
|
|
56
|
+
sendToWallet: (payload: any, temptId: string) => Promise<{
|
|
57
|
+
payload: FPTransactionResponse;
|
|
58
|
+
}>;
|
|
59
|
+
sendToBank: (payload: FPSendPaymentRequest, temptId: string) => Promise<{
|
|
60
|
+
payload: FPTransactionResponse;
|
|
61
|
+
}>;
|
|
62
|
+
status: (reference: string) => Promise<{
|
|
63
|
+
status: FPTxStatus;
|
|
64
|
+
reference: string;
|
|
65
|
+
}>;
|
|
66
|
+
verify: (reference: string) => Promise<{
|
|
67
|
+
FPTransactionResponse: any;
|
|
68
|
+
}>;
|
|
30
69
|
};
|
|
31
70
|
export declare const nqrAPI: {
|
|
32
71
|
generate: (payload: {
|
|
@@ -34,49 +73,118 @@ export declare const nqrAPI: {
|
|
|
34
73
|
reference?: string;
|
|
35
74
|
currency?: string;
|
|
36
75
|
expiresInMinutes?: number;
|
|
37
|
-
}) => Promise<
|
|
38
|
-
pay: (payload: FPSendPaymentRequest, temptId: string) => Promise<
|
|
76
|
+
}) => Promise<FPNQRData>;
|
|
77
|
+
pay: (payload: FPSendPaymentRequest, temptId: string) => Promise<FPTransactionResponse>;
|
|
39
78
|
};
|
|
40
79
|
export declare const nfcAPI: {
|
|
41
|
-
pay: (payload: FPSendPaymentRequest, temptId: string) => Promise<
|
|
80
|
+
pay: (payload: FPSendPaymentRequest, temptId: string) => Promise<FPTransactionResponse>;
|
|
42
81
|
};
|
|
43
82
|
export declare const proximityAPI: {
|
|
44
83
|
broadcast: (psspId: string, payload: {
|
|
45
84
|
latitude: number;
|
|
46
85
|
longitude: number;
|
|
47
86
|
user_type: string;
|
|
48
|
-
}) => Promise<
|
|
87
|
+
}) => Promise<{
|
|
88
|
+
sessionId: string;
|
|
89
|
+
}>;
|
|
49
90
|
heartbeat: (sessionId: string, lat: number, lng: number) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
50
91
|
unregister: (sessionId: string) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
51
|
-
discover: (psspId: string, lat: number, lng: number, radius_meters: number) => Promise<
|
|
92
|
+
discover: (psspId: string, lat: number, lng: number, radius_meters: number) => Promise<{
|
|
93
|
+
peers: FPProximityPeer[];
|
|
94
|
+
}>;
|
|
52
95
|
};
|
|
53
96
|
export declare const subscriptionAPI: {
|
|
54
|
-
create: (payload: any) => Promise<
|
|
97
|
+
create: (payload: any) => Promise<{
|
|
98
|
+
sessionId: string;
|
|
99
|
+
}>;
|
|
55
100
|
};
|
|
101
|
+
/** Context every bill purchase needs beyond the category-specific fields —
|
|
102
|
+
* mirrors what SendScreen already assembles for transfers (agent identity,
|
|
103
|
+
* terminal, geo-location for terminal transactions, idempotency reference).
|
|
104
|
+
* Built once by BillsScreen and passed to whichever purchaseX() applies. */
|
|
105
|
+
export interface FPBillPurchaseContext {
|
|
106
|
+
agentId: string;
|
|
107
|
+
terminalId?: string;
|
|
108
|
+
/** Only present for terminal/agent transactions — mirrors SendScreen's
|
|
109
|
+
* requestLocation() + isTerminalTransaction gating exactly. */
|
|
110
|
+
geoLocation?: {
|
|
111
|
+
latitude: number;
|
|
112
|
+
longitude: number;
|
|
113
|
+
};
|
|
114
|
+
currency: string;
|
|
115
|
+
tnxRef: string;
|
|
116
|
+
paymentType?: string;
|
|
117
|
+
/** Self-service vs. third-party recipient — only meaningful for
|
|
118
|
+
* ELECTRICITY today, but accepted generically since BuypowerPurchaseView
|
|
119
|
+
* branches on `for_self` for the name/email/phone substitution. */
|
|
120
|
+
forSelf?: boolean;
|
|
121
|
+
agentName?: string;
|
|
122
|
+
agentEmail?: string;
|
|
123
|
+
agentPhone?: string;
|
|
124
|
+
}
|
|
56
125
|
export declare const billsAPI: {
|
|
57
|
-
getNetworks: () => Promise<
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
126
|
+
getNetworks: () => Promise<{
|
|
127
|
+
status: boolean;
|
|
128
|
+
payload: FPNetworkOperator[];
|
|
129
|
+
}>;
|
|
130
|
+
getDataPlans: (network: FPNetworkCode) => Promise<{
|
|
131
|
+
status: boolean;
|
|
132
|
+
payload: FPDataPlan[];
|
|
133
|
+
}>;
|
|
134
|
+
getDiscos: () => Promise<{
|
|
135
|
+
status: boolean;
|
|
136
|
+
payload: FPBillProvider[];
|
|
137
|
+
}>;
|
|
138
|
+
validateMeter: (meterNumber: string, disco: string, meterType: FPMeterType) => Promise<{
|
|
139
|
+
status: boolean;
|
|
140
|
+
message: string;
|
|
141
|
+
payload: FPMeterLookupResult;
|
|
142
|
+
}>;
|
|
143
|
+
getCableProviders: () => Promise<{
|
|
144
|
+
status: boolean;
|
|
145
|
+
payload: FPBillProvider[];
|
|
146
|
+
}>;
|
|
147
|
+
getCableTariffs: (provider: string) => Promise<{
|
|
148
|
+
status: boolean;
|
|
149
|
+
payload: FPBillTariff[];
|
|
150
|
+
}>;
|
|
151
|
+
validateSmartcard: (smartcardNumber: string, provider: string) => Promise<{
|
|
152
|
+
status: boolean;
|
|
153
|
+
message: string;
|
|
154
|
+
payload: FPMeterLookupResult;
|
|
155
|
+
}>;
|
|
156
|
+
validateBillPin: (pin: string, userId: string) => Promise<{
|
|
157
|
+
status: boolean;
|
|
158
|
+
message: string;
|
|
159
|
+
payload: {
|
|
160
|
+
temp_id: string;
|
|
161
|
+
};
|
|
162
|
+
}>;
|
|
163
|
+
purchaseAirtime: (payload: FPAirtimePurchaseRequest, ctx: FPBillPurchaseContext, tempId: string) => Promise<{
|
|
164
|
+
status: boolean;
|
|
165
|
+
message: string;
|
|
166
|
+
payload: FPBillTransaction;
|
|
167
|
+
}>;
|
|
168
|
+
purchaseData: (payload: FPDataPurchaseRequest, ctx: FPBillPurchaseContext, tempId: string) => Promise<{
|
|
169
|
+
status: boolean;
|
|
170
|
+
message: string;
|
|
171
|
+
payload: FPBillTransaction;
|
|
172
|
+
}>;
|
|
173
|
+
purchaseElectricity: (payload: FPElectricityPurchaseRequest, ctx: FPBillPurchaseContext, tempId: string) => Promise<{
|
|
174
|
+
status: boolean;
|
|
175
|
+
message: string;
|
|
176
|
+
payload: FPBillTransaction;
|
|
177
|
+
}>;
|
|
178
|
+
purchaseCable: (payload: FPCablePurchaseRequest, ctx: FPBillPurchaseContext, tempId: string) => Promise<{
|
|
179
|
+
status: boolean;
|
|
180
|
+
message: string;
|
|
181
|
+
payload: FPBillTransaction;
|
|
182
|
+
}>;
|
|
78
183
|
/** Bill transactions live in the same agencyTransaction table as
|
|
79
184
|
* transfers, so the existing status endpoint is reused as-is. */
|
|
80
|
-
status: (reference: string) => Promise<
|
|
185
|
+
status: (reference: string) => Promise<{
|
|
186
|
+
status: FPTxStatus;
|
|
187
|
+
reference: string;
|
|
188
|
+
}>;
|
|
81
189
|
};
|
|
82
190
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/api/index.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/core/api/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfirmScreen.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/ConfirmScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAqL3D;;;;;;;;GAQG;AACH,UAAU,kBAAkB;IAC1B,WAAW,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAChD,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE;YAAE,OAAO,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC,CAAC;IACxG,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC;
|
|
1
|
+
{"version":3,"file":"ConfirmScreen.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/ConfirmScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAqL3D;;;;;;;;GAQG;AACH,UAAU,kBAAkB;IAC1B,WAAW,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAChD,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC;QAAE,MAAM,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE;YAAE,OAAO,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC,CAAC;IACxG,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC;AAiED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAoK/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -5,6 +5,6 @@ interface Props extends Pick<FPCallbacks, 'onError'> {
|
|
|
5
5
|
user: FPUserInfo | null;
|
|
6
6
|
onClose: () => void;
|
|
7
7
|
}
|
|
8
|
-
export default function BillsScreen({ category, amount, user, onClose, onError }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function BillsScreen({ category, amount, user, onClose, onError, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export {};
|
|
10
10
|
//# sourceMappingURL=BillsScreen.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BillsScreen.d.ts","sourceRoot":"","sources":["../../../../../src/ui/screens/BillsScreen.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BillsScreen.d.ts","sourceRoot":"","sources":["../../../../../src/ui/screens/BillsScreen.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EACV,cAAc,EAGd,WAAW,EAEX,UAAU,EAEX,MAAM,kBAAkB,CAAC;AAqC1B,UAAU,KAAM,SAAQ,IAAI,CAAC,WAAW,EAAE,SAAS,CAAC;IAClD,QAAQ,EAAE,cAAc,CAAC;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,UAAU,GAAG,IAAI,CAAC;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAID,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAClC,QAAQ,EACR,MAAM,EACN,IAAI,EACJ,OAAO,EACP,OAAO,GACR,EAAE,KAAK,2CAqLP"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/ui/screens/styles.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/ui/screens/styles.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransferSubScreen.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/screens/sub/sendPayment/TransferSubScreen.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"TransferSubScreen.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/screens/sub/sendPayment/TransferSubScreen.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AA6JpD,wBAAgB,iBAAiB,CAAC,EAChC,MAAM,EACN,QAAQ,EACR,OAAO,EACP,oBAAoB,EACpB,OAAO,GACR,EAAE,KAAK,2CA+QP"}
|