@spritz-finance/service-client 0.2.82 → 0.2.83
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.
|
@@ -219,25 +219,15 @@ export type ExternalPaymentInput = {
|
|
|
219
219
|
targetCurrencyFee: number;
|
|
220
220
|
targetCurrencyAmount: number;
|
|
221
221
|
};
|
|
222
|
-
type CheckbookAddress = {
|
|
223
|
-
line_1: string;
|
|
224
|
-
line_2: string;
|
|
225
|
-
state: string;
|
|
226
|
-
city: string;
|
|
227
|
-
country: string;
|
|
228
|
-
zip: string;
|
|
229
|
-
};
|
|
230
222
|
export type CreateDebitCardInput = {
|
|
231
223
|
userId: string;
|
|
232
224
|
cardNumber: string;
|
|
233
225
|
expirationDate: string;
|
|
234
|
-
address: CheckbookAddress;
|
|
235
226
|
};
|
|
236
227
|
export type CheckbookDebitCardResponse = {
|
|
237
228
|
userId: string;
|
|
238
229
|
externalId: string;
|
|
239
230
|
mask: string;
|
|
240
|
-
address: CheckbookAddress;
|
|
241
231
|
cardNumber: string;
|
|
242
232
|
expirationDate: string;
|
|
243
233
|
};
|