@spritz-finance/api-client 0.7.4 → 0.7.5
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/dist/spritz-api-client.cjs +31 -31
- package/dist/spritz-api-client.d.ts +975 -122
- package/dist/spritz-api-client.mjs +31 -31
- package/package.json +1 -1
|
@@ -275,6 +275,33 @@ interface paths {
|
|
|
275
275
|
patch?: never;
|
|
276
276
|
trace?: never;
|
|
277
277
|
};
|
|
278
|
+
"/v1/off-ramps/{offRampId}/refund": {
|
|
279
|
+
parameters: {
|
|
280
|
+
query?: never;
|
|
281
|
+
header?: never;
|
|
282
|
+
path?: never;
|
|
283
|
+
cookie?: never;
|
|
284
|
+
};
|
|
285
|
+
get?: never;
|
|
286
|
+
put?: never;
|
|
287
|
+
/**
|
|
288
|
+
* Refund an off-ramp
|
|
289
|
+
* @description Refunds a **failed** off-ramp payment. Choose how the funds are returned:
|
|
290
|
+
*
|
|
291
|
+
* - `credit`: Return the funds to the user's Spritz balance.
|
|
292
|
+
* - `account`: Reissue the payout to a bank account — pass `accountId`, or omit it to reuse the original destination account.
|
|
293
|
+
*
|
|
294
|
+
* Only failed Modern Treasury and Checkbook off-ramps can be refunded.
|
|
295
|
+
*
|
|
296
|
+
* **Recommended:** send an `Idempotency-Key` header (a unique key per refund, reused verbatim on retries) so a timed-out request that is retried replays the original response instead of returning a stale "not refundable" error.
|
|
297
|
+
*/
|
|
298
|
+
post: operations["postV1Off-rampsByOffRampIdRefund"];
|
|
299
|
+
delete?: never;
|
|
300
|
+
options?: never;
|
|
301
|
+
head?: never;
|
|
302
|
+
patch?: never;
|
|
303
|
+
trace?: never;
|
|
304
|
+
};
|
|
278
305
|
"/v1/on-ramps/": {
|
|
279
306
|
parameters: {
|
|
280
307
|
query?: never;
|
|
@@ -1042,6 +1069,26 @@ interface paths {
|
|
|
1042
1069
|
patch?: never;
|
|
1043
1070
|
trace?: never;
|
|
1044
1071
|
};
|
|
1072
|
+
"/v1/debit-cards/{cardId}/cardholder-info": {
|
|
1073
|
+
parameters: {
|
|
1074
|
+
query?: never;
|
|
1075
|
+
header?: never;
|
|
1076
|
+
path?: never;
|
|
1077
|
+
cookie?: never;
|
|
1078
|
+
};
|
|
1079
|
+
get?: never;
|
|
1080
|
+
put?: never;
|
|
1081
|
+
post?: never;
|
|
1082
|
+
delete?: never;
|
|
1083
|
+
options?: never;
|
|
1084
|
+
head?: never;
|
|
1085
|
+
/**
|
|
1086
|
+
* Complete debit card details
|
|
1087
|
+
* @description Supplies the cardholder name and billing address for an existing debit card that is missing them (recapture). Clears the card's action_required requirement.
|
|
1088
|
+
*/
|
|
1089
|
+
patch: operations["patchV1Debit-cardsByCardIdCardholder-info"];
|
|
1090
|
+
trace?: never;
|
|
1091
|
+
};
|
|
1045
1092
|
"/v1/integrator/connect/sessions": {
|
|
1046
1093
|
parameters: {
|
|
1047
1094
|
query?: never;
|
|
@@ -2953,7 +3000,7 @@ interface operations {
|
|
|
2953
3000
|
/**
|
|
2954
3001
|
* Format: date-time
|
|
2955
3002
|
* @description Creation timestamp
|
|
2956
|
-
* @example 2026-07-
|
|
3003
|
+
* @example 2026-07-21T13:34:16.847Z
|
|
2957
3004
|
*/
|
|
2958
3005
|
createdAt?: string;
|
|
2959
3006
|
}[];
|
|
@@ -3082,7 +3129,7 @@ interface operations {
|
|
|
3082
3129
|
"application/json": {
|
|
3083
3130
|
/**
|
|
3084
3131
|
* @description Destination account ID
|
|
3085
|
-
* @example
|
|
3132
|
+
* @example 6a5f75585a936eb477232f02
|
|
3086
3133
|
*/
|
|
3087
3134
|
accountId: string;
|
|
3088
3135
|
/**
|
|
@@ -3110,7 +3157,7 @@ interface operations {
|
|
|
3110
3157
|
"application/x-www-form-urlencoded": {
|
|
3111
3158
|
/**
|
|
3112
3159
|
* @description Destination account ID
|
|
3113
|
-
* @example
|
|
3160
|
+
* @example 6a5f75585a936eb477232f02
|
|
3114
3161
|
*/
|
|
3115
3162
|
accountId: string;
|
|
3116
3163
|
/**
|
|
@@ -3138,7 +3185,7 @@ interface operations {
|
|
|
3138
3185
|
"multipart/form-data": {
|
|
3139
3186
|
/**
|
|
3140
3187
|
* @description Destination account ID
|
|
3141
|
-
* @example
|
|
3188
|
+
* @example 6a5f75585a936eb477232f02
|
|
3142
3189
|
*/
|
|
3143
3190
|
accountId: string;
|
|
3144
3191
|
/**
|
|
@@ -3185,7 +3232,7 @@ interface operations {
|
|
|
3185
3232
|
/**
|
|
3186
3233
|
* Format: date-time
|
|
3187
3234
|
* @description When the quote was created
|
|
3188
|
-
* @example 2026-07-
|
|
3235
|
+
* @example 2026-07-21T13:34:16.781Z
|
|
3189
3236
|
*/
|
|
3190
3237
|
createdAt: string;
|
|
3191
3238
|
/** @description What the user pays — total USD cost and token used. */
|
|
@@ -3224,7 +3271,7 @@ interface operations {
|
|
|
3224
3271
|
rail: "ach_standard" | "ach_same_day" | "rtp" | "wire" | "eft" | "sepa" | "faster_payments" | "push_to_card" | "bill_pay" | "card_deposit";
|
|
3225
3272
|
/**
|
|
3226
3273
|
* @description Destination account ID
|
|
3227
|
-
* @example
|
|
3274
|
+
* @example 6a5f75585a936eb477232f03
|
|
3228
3275
|
*/
|
|
3229
3276
|
accountId: string;
|
|
3230
3277
|
};
|
|
@@ -3421,7 +3468,7 @@ interface operations {
|
|
|
3421
3468
|
/**
|
|
3422
3469
|
* Format: date-time
|
|
3423
3470
|
* @description When the quote was created
|
|
3424
|
-
* @example 2026-07-
|
|
3471
|
+
* @example 2026-07-21T13:34:16.781Z
|
|
3425
3472
|
*/
|
|
3426
3473
|
createdAt: string;
|
|
3427
3474
|
/** @description What the user pays — total USD cost and token used. */
|
|
@@ -3460,7 +3507,7 @@ interface operations {
|
|
|
3460
3507
|
rail: "ach_standard" | "ach_same_day" | "rtp" | "wire" | "eft" | "sepa" | "faster_payments" | "push_to_card" | "bill_pay" | "card_deposit";
|
|
3461
3508
|
/**
|
|
3462
3509
|
* @description Destination account ID
|
|
3463
|
-
* @example
|
|
3510
|
+
* @example 6a5f75585a936eb477232f03
|
|
3464
3511
|
*/
|
|
3465
3512
|
accountId: string;
|
|
3466
3513
|
};
|
|
@@ -3876,7 +3923,7 @@ interface operations {
|
|
|
3876
3923
|
"getV1Off-ramps": {
|
|
3877
3924
|
parameters: {
|
|
3878
3925
|
query?: {
|
|
3879
|
-
limit?:
|
|
3926
|
+
limit?: number;
|
|
3880
3927
|
cursor?: string;
|
|
3881
3928
|
status?: "awaiting_funding" | "queued" | "in_flight" | "completed" | "canceled" | "failed" | "reversed" | "refunded";
|
|
3882
3929
|
chain?: "ethereum" | "polygon" | "arbitrum" | "base" | "optimism" | "avalanche" | "binance-smart-chain" | "solana" | "bitcoin" | "dash" | "tron" | "sui" | "hyperevm" | "monad" | "sonic" | "unichain";
|
|
@@ -3943,7 +3990,7 @@ interface operations {
|
|
|
3943
3990
|
currency: string;
|
|
3944
3991
|
/**
|
|
3945
3992
|
* @description Destination account ID
|
|
3946
|
-
* @example
|
|
3993
|
+
* @example 6a5f75585a936eb477232f04
|
|
3947
3994
|
*/
|
|
3948
3995
|
accountId: string;
|
|
3949
3996
|
/**
|
|
@@ -4126,7 +4173,243 @@ interface operations {
|
|
|
4126
4173
|
};
|
|
4127
4174
|
};
|
|
4128
4175
|
};
|
|
4129
|
-
"getV1Off-rampsByOffRampId": {
|
|
4176
|
+
"getV1Off-rampsByOffRampId": {
|
|
4177
|
+
parameters: {
|
|
4178
|
+
query?: never;
|
|
4179
|
+
header?: never;
|
|
4180
|
+
path: {
|
|
4181
|
+
offRampId: string;
|
|
4182
|
+
};
|
|
4183
|
+
cookie?: never;
|
|
4184
|
+
};
|
|
4185
|
+
requestBody?: never;
|
|
4186
|
+
responses: {
|
|
4187
|
+
/** @description Response for status 200 */
|
|
4188
|
+
200: {
|
|
4189
|
+
headers: {
|
|
4190
|
+
[name: string]: unknown;
|
|
4191
|
+
};
|
|
4192
|
+
content: {
|
|
4193
|
+
"application/json": {
|
|
4194
|
+
/**
|
|
4195
|
+
* @description Unique off-ramp identifier
|
|
4196
|
+
* @example offramp_xyz789
|
|
4197
|
+
*/
|
|
4198
|
+
id: string;
|
|
4199
|
+
/** @enum {string} */
|
|
4200
|
+
status: "awaiting_funding" | "queued" | "in_flight" | "completed" | "canceled" | "failed" | "reversed" | "refunded";
|
|
4201
|
+
/** Format: date-time */
|
|
4202
|
+
createdAt: string;
|
|
4203
|
+
/**
|
|
4204
|
+
* Format: date-time
|
|
4205
|
+
* @description When the off-ramp was completed. Null until status is completed.
|
|
4206
|
+
*/
|
|
4207
|
+
completedAt: string | null;
|
|
4208
|
+
/** @description What the user paid — crypto asset and chain. */
|
|
4209
|
+
input: {
|
|
4210
|
+
/**
|
|
4211
|
+
* @description Crypto amount sent
|
|
4212
|
+
* @example 0.25
|
|
4213
|
+
*/
|
|
4214
|
+
amount: string;
|
|
4215
|
+
/**
|
|
4216
|
+
* @description Token symbol
|
|
4217
|
+
* @example USDC
|
|
4218
|
+
*/
|
|
4219
|
+
token: string;
|
|
4220
|
+
/**
|
|
4221
|
+
* @description Blockchain network the crypto transaction occurs on
|
|
4222
|
+
* @example ethereum
|
|
4223
|
+
*/
|
|
4224
|
+
chain: "ethereum" | "polygon" | "arbitrum" | "base" | "optimism" | "avalanche" | "binance-smart-chain" | "solana" | "bitcoin" | "dash" | "tron" | "sui" | "hyperevm" | "monad" | "sonic" | "unichain";
|
|
4225
|
+
} | null;
|
|
4226
|
+
/** @description What the destination receives — fiat delivery details. */
|
|
4227
|
+
output: {
|
|
4228
|
+
/**
|
|
4229
|
+
* @description Fiat amount delivered
|
|
4230
|
+
* @example 100.00
|
|
4231
|
+
*/
|
|
4232
|
+
amount: string;
|
|
4233
|
+
/**
|
|
4234
|
+
* @description Fiat currency code
|
|
4235
|
+
* @example USD
|
|
4236
|
+
*/
|
|
4237
|
+
currency: string;
|
|
4238
|
+
/**
|
|
4239
|
+
* @description Destination account ID
|
|
4240
|
+
* @example 6a5f75585a936eb477232f04
|
|
4241
|
+
*/
|
|
4242
|
+
accountId: string;
|
|
4243
|
+
/**
|
|
4244
|
+
* @description Display name of the destination account
|
|
4245
|
+
* @example Chase Checking ••4567
|
|
4246
|
+
*/
|
|
4247
|
+
accountName: string | null;
|
|
4248
|
+
/**
|
|
4249
|
+
* @description Fiat delivery rail.
|
|
4250
|
+
*
|
|
4251
|
+
* - `ach_standard`: ACH bank transfer, next business day.
|
|
4252
|
+
* - `ach_same_day`: ACH same-day transfer, delivered same business day.
|
|
4253
|
+
* - `rtp`: Real-time payment, seconds, 24/7.
|
|
4254
|
+
* - `wire`: Wire transfer, same/next day.
|
|
4255
|
+
* - `eft`: Electronic funds transfer, 1-2 business days.
|
|
4256
|
+
* - `sepa`: SEPA transfer (EU), 1-2 business days.
|
|
4257
|
+
* - `faster_payments`: UK Faster Payments, near-instant.
|
|
4258
|
+
* - `push_to_card`: Push to debit card, minutes.
|
|
4259
|
+
* - `bill_pay`: Bill payment rail.
|
|
4260
|
+
* - `card_deposit`: Deposit to crypto card.
|
|
4261
|
+
* @example ach_standard
|
|
4262
|
+
*/
|
|
4263
|
+
rail: ("ach_standard" | null) | ("ach_same_day" | null) | ("rtp" | null) | ("wire" | null) | ("eft" | null) | ("sepa" | null) | ("faster_payments" | null) | ("push_to_card" | null) | ("bill_pay" | null) | ("card_deposit" | null);
|
|
4264
|
+
};
|
|
4265
|
+
/**
|
|
4266
|
+
* @description Type of fiat destination.
|
|
4267
|
+
*
|
|
4268
|
+
* - `bank_account`: Bank account (includes debit card destinations).
|
|
4269
|
+
* - `bill`: Bill payment.
|
|
4270
|
+
* - `crypto_card`: Crypto card deposit.
|
|
4271
|
+
* @example bank_account
|
|
4272
|
+
*/
|
|
4273
|
+
fiatDestination: ("bank_account" | null) | ("bill" | null) | ("crypto_card" | null);
|
|
4274
|
+
fees: {
|
|
4275
|
+
/**
|
|
4276
|
+
* @description Fee amount
|
|
4277
|
+
* @example 1.25
|
|
4278
|
+
*/
|
|
4279
|
+
amount: string;
|
|
4280
|
+
/**
|
|
4281
|
+
* @description Fee currency code
|
|
4282
|
+
* @example USD
|
|
4283
|
+
*/
|
|
4284
|
+
currency: string;
|
|
4285
|
+
} | null;
|
|
4286
|
+
transaction: {
|
|
4287
|
+
/**
|
|
4288
|
+
* @description Blockchain transaction hash
|
|
4289
|
+
* @example 0xabc123...
|
|
4290
|
+
*/
|
|
4291
|
+
hash: string | null;
|
|
4292
|
+
/**
|
|
4293
|
+
* @description Block explorer transaction URL
|
|
4294
|
+
* @example https://etherscan.io/tx/0xabc123...
|
|
4295
|
+
*/
|
|
4296
|
+
explorerUrl: string | null;
|
|
4297
|
+
} | null;
|
|
4298
|
+
};
|
|
4299
|
+
};
|
|
4300
|
+
};
|
|
4301
|
+
/** @description Response for status 401 */
|
|
4302
|
+
401: {
|
|
4303
|
+
headers: {
|
|
4304
|
+
[name: string]: unknown;
|
|
4305
|
+
};
|
|
4306
|
+
content: {
|
|
4307
|
+
"application/json": {
|
|
4308
|
+
/**
|
|
4309
|
+
* @description A URI reference that identifies the problem type
|
|
4310
|
+
* @default about:blank
|
|
4311
|
+
* @example urn:problem-type:auth:unauthorized
|
|
4312
|
+
*/
|
|
4313
|
+
type: string;
|
|
4314
|
+
/**
|
|
4315
|
+
* @description A short, human-readable summary of the problem type
|
|
4316
|
+
* @example Unauthorized
|
|
4317
|
+
*/
|
|
4318
|
+
title: string;
|
|
4319
|
+
/**
|
|
4320
|
+
* @description The HTTP status code
|
|
4321
|
+
* @example 401
|
|
4322
|
+
*/
|
|
4323
|
+
status: number;
|
|
4324
|
+
/**
|
|
4325
|
+
* @description A human-readable explanation specific to this occurrence
|
|
4326
|
+
* @example Bearer token required
|
|
4327
|
+
*/
|
|
4328
|
+
detail?: string;
|
|
4329
|
+
/** @description A URI reference that identifies the specific occurrence */
|
|
4330
|
+
instance?: string;
|
|
4331
|
+
/**
|
|
4332
|
+
* @description The authentication realm
|
|
4333
|
+
* @example API
|
|
4334
|
+
*/
|
|
4335
|
+
realm?: string;
|
|
4336
|
+
/**
|
|
4337
|
+
* @description The required scope for this resource
|
|
4338
|
+
* @example read:users
|
|
4339
|
+
*/
|
|
4340
|
+
scope?: string;
|
|
4341
|
+
};
|
|
4342
|
+
};
|
|
4343
|
+
};
|
|
4344
|
+
/** @description Response for status 404 */
|
|
4345
|
+
404: {
|
|
4346
|
+
headers: {
|
|
4347
|
+
[name: string]: unknown;
|
|
4348
|
+
};
|
|
4349
|
+
content: {
|
|
4350
|
+
"application/json": {
|
|
4351
|
+
/**
|
|
4352
|
+
* @description A URI reference that identifies the problem type
|
|
4353
|
+
* @default about:blank
|
|
4354
|
+
*/
|
|
4355
|
+
type: string;
|
|
4356
|
+
/** @description A short, human-readable summary of the problem type */
|
|
4357
|
+
title: string;
|
|
4358
|
+
/**
|
|
4359
|
+
* @description The HTTP status code
|
|
4360
|
+
* @example 404
|
|
4361
|
+
*/
|
|
4362
|
+
status: number;
|
|
4363
|
+
/** @description A human-readable explanation specific to this occurrence */
|
|
4364
|
+
detail?: string;
|
|
4365
|
+
/** @description A URI reference that identifies the specific occurrence */
|
|
4366
|
+
instance?: string;
|
|
4367
|
+
/**
|
|
4368
|
+
* @description The type of resource that was not found
|
|
4369
|
+
* @example user
|
|
4370
|
+
*/
|
|
4371
|
+
resourceType: string;
|
|
4372
|
+
/** @description The identifier of the resource that was not found */
|
|
4373
|
+
resourceId: string;
|
|
4374
|
+
};
|
|
4375
|
+
};
|
|
4376
|
+
};
|
|
4377
|
+
/** @description Response for status 500 */
|
|
4378
|
+
500: {
|
|
4379
|
+
headers: {
|
|
4380
|
+
[name: string]: unknown;
|
|
4381
|
+
};
|
|
4382
|
+
content: {
|
|
4383
|
+
"application/json": {
|
|
4384
|
+
/**
|
|
4385
|
+
* @description A URI reference that identifies the problem type
|
|
4386
|
+
* @default about:blank
|
|
4387
|
+
* @example urn:problem-type:auth:unauthorized
|
|
4388
|
+
*/
|
|
4389
|
+
type: string;
|
|
4390
|
+
/**
|
|
4391
|
+
* @description A short, human-readable summary of the problem type
|
|
4392
|
+
* @example Unauthorized
|
|
4393
|
+
*/
|
|
4394
|
+
title: string;
|
|
4395
|
+
/**
|
|
4396
|
+
* @description The HTTP status code
|
|
4397
|
+
* @example 400
|
|
4398
|
+
*/
|
|
4399
|
+
status: number;
|
|
4400
|
+
/** @description A human-readable explanation specific to this occurrence */
|
|
4401
|
+
detail?: string;
|
|
4402
|
+
/**
|
|
4403
|
+
* @description A URI reference that identifies the specific occurrence
|
|
4404
|
+
* @example /errors/1234567890
|
|
4405
|
+
*/
|
|
4406
|
+
instance?: string;
|
|
4407
|
+
};
|
|
4408
|
+
};
|
|
4409
|
+
};
|
|
4410
|
+
};
|
|
4411
|
+
};
|
|
4412
|
+
"postV1Off-rampsByOffRampIdRefund": {
|
|
4130
4413
|
parameters: {
|
|
4131
4414
|
query?: never;
|
|
4132
4415
|
header?: never;
|
|
@@ -4135,7 +4418,70 @@ interface operations {
|
|
|
4135
4418
|
};
|
|
4136
4419
|
cookie?: never;
|
|
4137
4420
|
};
|
|
4138
|
-
|
|
4421
|
+
/**
|
|
4422
|
+
* @description How to refund the off-ramp.
|
|
4423
|
+
*
|
|
4424
|
+
* - `credit`: Return the funds to the user's Spritz balance.
|
|
4425
|
+
* - `account`: Reissue the payout to a bank account (`accountId`, or the original account if omitted).
|
|
4426
|
+
*/
|
|
4427
|
+
requestBody: {
|
|
4428
|
+
content: {
|
|
4429
|
+
"application/json": {
|
|
4430
|
+
/**
|
|
4431
|
+
* @description Return the funds to the user's Spritz balance as credit.
|
|
4432
|
+
* @enum {string}
|
|
4433
|
+
*/
|
|
4434
|
+
method: "credit";
|
|
4435
|
+
} | {
|
|
4436
|
+
/**
|
|
4437
|
+
* @description Reissue the payout to a bank account.
|
|
4438
|
+
* @enum {string}
|
|
4439
|
+
*/
|
|
4440
|
+
method: "account";
|
|
4441
|
+
/**
|
|
4442
|
+
* @description Destination account to reissue the payout to. Omit to reuse the off-ramp's original destination account.
|
|
4443
|
+
* @example 6a5f75585a936eb477232f05
|
|
4444
|
+
*/
|
|
4445
|
+
accountId?: string;
|
|
4446
|
+
};
|
|
4447
|
+
"application/x-www-form-urlencoded": {
|
|
4448
|
+
/**
|
|
4449
|
+
* @description Return the funds to the user's Spritz balance as credit.
|
|
4450
|
+
* @enum {string}
|
|
4451
|
+
*/
|
|
4452
|
+
method: "credit";
|
|
4453
|
+
} | {
|
|
4454
|
+
/**
|
|
4455
|
+
* @description Reissue the payout to a bank account.
|
|
4456
|
+
* @enum {string}
|
|
4457
|
+
*/
|
|
4458
|
+
method: "account";
|
|
4459
|
+
/**
|
|
4460
|
+
* @description Destination account to reissue the payout to. Omit to reuse the off-ramp's original destination account.
|
|
4461
|
+
* @example 6a5f75585a936eb477232f05
|
|
4462
|
+
*/
|
|
4463
|
+
accountId?: string;
|
|
4464
|
+
};
|
|
4465
|
+
"multipart/form-data": {
|
|
4466
|
+
/**
|
|
4467
|
+
* @description Return the funds to the user's Spritz balance as credit.
|
|
4468
|
+
* @enum {string}
|
|
4469
|
+
*/
|
|
4470
|
+
method: "credit";
|
|
4471
|
+
} | {
|
|
4472
|
+
/**
|
|
4473
|
+
* @description Reissue the payout to a bank account.
|
|
4474
|
+
* @enum {string}
|
|
4475
|
+
*/
|
|
4476
|
+
method: "account";
|
|
4477
|
+
/**
|
|
4478
|
+
* @description Destination account to reissue the payout to. Omit to reuse the off-ramp's original destination account.
|
|
4479
|
+
* @example 6a5f75585a936eb477232f05
|
|
4480
|
+
*/
|
|
4481
|
+
accountId?: string;
|
|
4482
|
+
};
|
|
4483
|
+
};
|
|
4484
|
+
};
|
|
4139
4485
|
responses: {
|
|
4140
4486
|
/** @description Response for status 200 */
|
|
4141
4487
|
200: {
|
|
@@ -4190,7 +4536,7 @@ interface operations {
|
|
|
4190
4536
|
currency: string;
|
|
4191
4537
|
/**
|
|
4192
4538
|
* @description Destination account ID
|
|
4193
|
-
* @example
|
|
4539
|
+
* @example 6a5f75585a936eb477232f04
|
|
4194
4540
|
*/
|
|
4195
4541
|
accountId: string;
|
|
4196
4542
|
/**
|
|
@@ -4365,7 +4711,7 @@ interface operations {
|
|
|
4365
4711
|
"getV1On-ramps": {
|
|
4366
4712
|
parameters: {
|
|
4367
4713
|
query?: {
|
|
4368
|
-
limit?:
|
|
4714
|
+
limit?: number;
|
|
4369
4715
|
cursor?: string;
|
|
4370
4716
|
network?: "ethereum" | "polygon" | "base" | "arbitrum" | "avalanche" | "optimism" | "solana" | "tron" | "bitcoin";
|
|
4371
4717
|
token?: string;
|
|
@@ -5185,6 +5531,11 @@ interface operations {
|
|
|
5185
5531
|
* @example active
|
|
5186
5532
|
*/
|
|
5187
5533
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
5534
|
+
/**
|
|
5535
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
5536
|
+
* @example account_invalid
|
|
5537
|
+
*/
|
|
5538
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
5188
5539
|
/**
|
|
5189
5540
|
* @description Name of the account holder
|
|
5190
5541
|
* @example John Doe
|
|
@@ -5253,6 +5604,11 @@ interface operations {
|
|
|
5253
5604
|
* @example active
|
|
5254
5605
|
*/
|
|
5255
5606
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
5607
|
+
/**
|
|
5608
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
5609
|
+
* @example account_invalid
|
|
5610
|
+
*/
|
|
5611
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
5256
5612
|
/**
|
|
5257
5613
|
* @description Name of the account holder
|
|
5258
5614
|
* @example John Doe
|
|
@@ -5326,6 +5682,11 @@ interface operations {
|
|
|
5326
5682
|
* @example active
|
|
5327
5683
|
*/
|
|
5328
5684
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
5685
|
+
/**
|
|
5686
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
5687
|
+
* @example account_invalid
|
|
5688
|
+
*/
|
|
5689
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
5329
5690
|
/**
|
|
5330
5691
|
* @description Name of the account holder
|
|
5331
5692
|
* @example John Doe
|
|
@@ -5389,6 +5750,11 @@ interface operations {
|
|
|
5389
5750
|
* @example active
|
|
5390
5751
|
*/
|
|
5391
5752
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
5753
|
+
/**
|
|
5754
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
5755
|
+
* @example account_invalid
|
|
5756
|
+
*/
|
|
5757
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
5392
5758
|
/**
|
|
5393
5759
|
* @description Name of the account holder
|
|
5394
5760
|
* @example John Doe
|
|
@@ -6284,6 +6650,11 @@ interface operations {
|
|
|
6284
6650
|
* @example active
|
|
6285
6651
|
*/
|
|
6286
6652
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
6653
|
+
/**
|
|
6654
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
6655
|
+
* @example account_invalid
|
|
6656
|
+
*/
|
|
6657
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6287
6658
|
/**
|
|
6288
6659
|
* @description Name of the account holder
|
|
6289
6660
|
* @example John Doe
|
|
@@ -6352,6 +6723,11 @@ interface operations {
|
|
|
6352
6723
|
* @example active
|
|
6353
6724
|
*/
|
|
6354
6725
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
6726
|
+
/**
|
|
6727
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
6728
|
+
* @example account_invalid
|
|
6729
|
+
*/
|
|
6730
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6355
6731
|
/**
|
|
6356
6732
|
* @description Name of the account holder
|
|
6357
6733
|
* @example John Doe
|
|
@@ -6425,6 +6801,11 @@ interface operations {
|
|
|
6425
6801
|
* @example active
|
|
6426
6802
|
*/
|
|
6427
6803
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
6804
|
+
/**
|
|
6805
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
6806
|
+
* @example account_invalid
|
|
6807
|
+
*/
|
|
6808
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6428
6809
|
/**
|
|
6429
6810
|
* @description Name of the account holder
|
|
6430
6811
|
* @example John Doe
|
|
@@ -6488,6 +6869,11 @@ interface operations {
|
|
|
6488
6869
|
* @example active
|
|
6489
6870
|
*/
|
|
6490
6871
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
6872
|
+
/**
|
|
6873
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
6874
|
+
* @example account_invalid
|
|
6875
|
+
*/
|
|
6876
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6491
6877
|
/**
|
|
6492
6878
|
* @description Name of the account holder
|
|
6493
6879
|
* @example John Doe
|
|
@@ -6685,6 +7071,11 @@ interface operations {
|
|
|
6685
7071
|
* @example active
|
|
6686
7072
|
*/
|
|
6687
7073
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
7074
|
+
/**
|
|
7075
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
7076
|
+
* @example account_invalid
|
|
7077
|
+
*/
|
|
7078
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6688
7079
|
/**
|
|
6689
7080
|
* @description Name of the account holder
|
|
6690
7081
|
* @example John Doe
|
|
@@ -6753,6 +7144,11 @@ interface operations {
|
|
|
6753
7144
|
* @example active
|
|
6754
7145
|
*/
|
|
6755
7146
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
7147
|
+
/**
|
|
7148
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
7149
|
+
* @example account_invalid
|
|
7150
|
+
*/
|
|
7151
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6756
7152
|
/**
|
|
6757
7153
|
* @description Name of the account holder
|
|
6758
7154
|
* @example John Doe
|
|
@@ -6826,6 +7222,11 @@ interface operations {
|
|
|
6826
7222
|
* @example active
|
|
6827
7223
|
*/
|
|
6828
7224
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
7225
|
+
/**
|
|
7226
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
7227
|
+
* @example account_invalid
|
|
7228
|
+
*/
|
|
7229
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6829
7230
|
/**
|
|
6830
7231
|
* @description Name of the account holder
|
|
6831
7232
|
* @example John Doe
|
|
@@ -6889,6 +7290,11 @@ interface operations {
|
|
|
6889
7290
|
* @example active
|
|
6890
7291
|
*/
|
|
6891
7292
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
7293
|
+
/**
|
|
7294
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
7295
|
+
* @example account_invalid
|
|
7296
|
+
*/
|
|
7297
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
6892
7298
|
/**
|
|
6893
7299
|
* @description Name of the account holder
|
|
6894
7300
|
* @example John Doe
|
|
@@ -7367,7 +7773,7 @@ interface operations {
|
|
|
7367
7773
|
* @description Why the funding source is not active, or null when no reason applies.
|
|
7368
7774
|
* @example ownership_mismatch
|
|
7369
7775
|
*/
|
|
7370
|
-
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("manually_disabled" | null);
|
|
7776
|
+
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("rerouted" | null) | ("manually_disabled" | null);
|
|
7371
7777
|
/**
|
|
7372
7778
|
* @description Ownership match result for the linked bank account, or null when unavailable.
|
|
7373
7779
|
* @example matched
|
|
@@ -7734,7 +8140,7 @@ interface operations {
|
|
|
7734
8140
|
* @description Why the funding source is not active, or null when no reason applies.
|
|
7735
8141
|
* @example ownership_mismatch
|
|
7736
8142
|
*/
|
|
7737
|
-
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("manually_disabled" | null);
|
|
8143
|
+
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("rerouted" | null) | ("manually_disabled" | null);
|
|
7738
8144
|
/**
|
|
7739
8145
|
* @description Ownership match result for the linked bank account, or null when unavailable.
|
|
7740
8146
|
* @example matched
|
|
@@ -8595,6 +9001,11 @@ interface operations {
|
|
|
8595
9001
|
* @example active
|
|
8596
9002
|
*/
|
|
8597
9003
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
9004
|
+
/**
|
|
9005
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
9006
|
+
* @example account_invalid
|
|
9007
|
+
*/
|
|
9008
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
8598
9009
|
/**
|
|
8599
9010
|
* @description Name of the account holder
|
|
8600
9011
|
* @example John Doe
|
|
@@ -8663,6 +9074,11 @@ interface operations {
|
|
|
8663
9074
|
* @example active
|
|
8664
9075
|
*/
|
|
8665
9076
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
9077
|
+
/**
|
|
9078
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
9079
|
+
* @example account_invalid
|
|
9080
|
+
*/
|
|
9081
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
8666
9082
|
/**
|
|
8667
9083
|
* @description Name of the account holder
|
|
8668
9084
|
* @example John Doe
|
|
@@ -8736,6 +9152,11 @@ interface operations {
|
|
|
8736
9152
|
* @example active
|
|
8737
9153
|
*/
|
|
8738
9154
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
9155
|
+
/**
|
|
9156
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
9157
|
+
* @example account_invalid
|
|
9158
|
+
*/
|
|
9159
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
8739
9160
|
/**
|
|
8740
9161
|
* @description Name of the account holder
|
|
8741
9162
|
* @example John Doe
|
|
@@ -8799,6 +9220,11 @@ interface operations {
|
|
|
8799
9220
|
* @example active
|
|
8800
9221
|
*/
|
|
8801
9222
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
9223
|
+
/**
|
|
9224
|
+
* @description Why the account is not usable, or null when no reason applies.
|
|
9225
|
+
* @example account_invalid
|
|
9226
|
+
*/
|
|
9227
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
8802
9228
|
/**
|
|
8803
9229
|
* @description Name of the account holder
|
|
8804
9230
|
* @example John Doe
|
|
@@ -9379,7 +9805,7 @@ interface operations {
|
|
|
9379
9805
|
status: "information_required" | "challenge_required";
|
|
9380
9806
|
challenge?: {
|
|
9381
9807
|
questions: {
|
|
9382
|
-
id: string
|
|
9808
|
+
id: string;
|
|
9383
9809
|
prompt: string | null;
|
|
9384
9810
|
options: {
|
|
9385
9811
|
id: string;
|
|
@@ -9511,7 +9937,7 @@ interface operations {
|
|
|
9511
9937
|
status: "information_required" | "challenge_required";
|
|
9512
9938
|
challenge?: {
|
|
9513
9939
|
questions: {
|
|
9514
|
-
id: string
|
|
9940
|
+
id: string;
|
|
9515
9941
|
prompt: string | null;
|
|
9516
9942
|
options: {
|
|
9517
9943
|
id: string;
|
|
@@ -9654,7 +10080,7 @@ interface operations {
|
|
|
9654
10080
|
status: "information_required" | "challenge_required";
|
|
9655
10081
|
challenge?: {
|
|
9656
10082
|
questions: {
|
|
9657
|
-
id: string
|
|
10083
|
+
id: string;
|
|
9658
10084
|
prompt: string | null;
|
|
9659
10085
|
options: {
|
|
9660
10086
|
id: string;
|
|
@@ -10571,7 +10997,7 @@ interface operations {
|
|
|
10571
10997
|
getV1CardsByCardIdTransactions: {
|
|
10572
10998
|
parameters: {
|
|
10573
10999
|
query?: {
|
|
10574
|
-
limit?:
|
|
11000
|
+
limit?: number;
|
|
10575
11001
|
cursor?: string;
|
|
10576
11002
|
sort?: "desc" | "asc";
|
|
10577
11003
|
status?: "pending" | "posted" | "declined" | "reversed" | "expired";
|
|
@@ -11460,11 +11886,11 @@ interface operations {
|
|
|
11460
11886
|
data: {
|
|
11461
11887
|
/**
|
|
11462
11888
|
* @description Unique identifier for the debit card
|
|
11463
|
-
* @example
|
|
11889
|
+
* @example 6a5f75585a936eb477232f09
|
|
11464
11890
|
*/
|
|
11465
11891
|
id: string;
|
|
11466
11892
|
/** @enum {string} */
|
|
11467
|
-
status: "active" | "pending" | "inactive" | "rejected";
|
|
11893
|
+
status: "active" | "pending" | "inactive" | "rejected" | "action_required";
|
|
11468
11894
|
/** @enum {string} */
|
|
11469
11895
|
network: "visa" | "mastercard";
|
|
11470
11896
|
/**
|
|
@@ -11484,6 +11910,27 @@ interface operations {
|
|
|
11484
11910
|
* @example true
|
|
11485
11911
|
*/
|
|
11486
11912
|
isTokenized: boolean;
|
|
11913
|
+
/** @description Actions the user must complete before the card can be used for payouts. Present (non-empty) when status is action_required. */
|
|
11914
|
+
requirements?: {
|
|
11915
|
+
/**
|
|
11916
|
+
* @description The action the user must complete to enable payouts
|
|
11917
|
+
* @example card_details
|
|
11918
|
+
*/
|
|
11919
|
+
type: string;
|
|
11920
|
+
/**
|
|
11921
|
+
* @description Fields the user must supply to satisfy the requirement
|
|
11922
|
+
* @example [
|
|
11923
|
+
* "cardholder_name",
|
|
11924
|
+
* "billing_address"
|
|
11925
|
+
* ]
|
|
11926
|
+
*/
|
|
11927
|
+
fields?: string[];
|
|
11928
|
+
/**
|
|
11929
|
+
* @description Human-readable explanation of the requirement
|
|
11930
|
+
* @example Cardholder name and billing address are required to enable payouts.
|
|
11931
|
+
*/
|
|
11932
|
+
reason?: string;
|
|
11933
|
+
}[];
|
|
11487
11934
|
/** Format: date-time */
|
|
11488
11935
|
createdAt: string;
|
|
11489
11936
|
}[];
|
|
@@ -11851,11 +12298,192 @@ interface operations {
|
|
|
11851
12298
|
"application/json": {
|
|
11852
12299
|
/**
|
|
11853
12300
|
* @description Unique identifier for the debit card
|
|
11854
|
-
* @example
|
|
12301
|
+
* @example 6a5f75585a936eb477232f09
|
|
12302
|
+
*/
|
|
12303
|
+
id: string;
|
|
12304
|
+
/** @enum {string} */
|
|
12305
|
+
status: "active" | "pending" | "inactive" | "rejected" | "action_required";
|
|
12306
|
+
/** @enum {string} */
|
|
12307
|
+
network: "visa" | "mastercard";
|
|
12308
|
+
/**
|
|
12309
|
+
* @description Last 4 digits of card number
|
|
12310
|
+
* @example 1111
|
|
12311
|
+
*/
|
|
12312
|
+
cardNumberLast4: string;
|
|
12313
|
+
/** @example 12 */
|
|
12314
|
+
expiryMonth: number;
|
|
12315
|
+
/** @example 2027 */
|
|
12316
|
+
expiryYear: number;
|
|
12317
|
+
label?: string;
|
|
12318
|
+
/** @enum {string} */
|
|
12319
|
+
currency: "USD" | "CAD" | "EUR" | "GBP";
|
|
12320
|
+
/**
|
|
12321
|
+
* @description Whether this card has been tokenized via Evervault for secure storage
|
|
12322
|
+
* @example true
|
|
12323
|
+
*/
|
|
12324
|
+
isTokenized: boolean;
|
|
12325
|
+
/** @description Actions the user must complete before the card can be used for payouts. Present (non-empty) when status is action_required. */
|
|
12326
|
+
requirements?: {
|
|
12327
|
+
/**
|
|
12328
|
+
* @description The action the user must complete to enable payouts
|
|
12329
|
+
* @example card_details
|
|
12330
|
+
*/
|
|
12331
|
+
type: string;
|
|
12332
|
+
/**
|
|
12333
|
+
* @description Fields the user must supply to satisfy the requirement
|
|
12334
|
+
* @example [
|
|
12335
|
+
* "cardholder_name",
|
|
12336
|
+
* "billing_address"
|
|
12337
|
+
* ]
|
|
12338
|
+
*/
|
|
12339
|
+
fields?: string[];
|
|
12340
|
+
/**
|
|
12341
|
+
* @description Human-readable explanation of the requirement
|
|
12342
|
+
* @example Cardholder name and billing address are required to enable payouts.
|
|
12343
|
+
*/
|
|
12344
|
+
reason?: string;
|
|
12345
|
+
}[];
|
|
12346
|
+
/** Format: date-time */
|
|
12347
|
+
createdAt: string;
|
|
12348
|
+
};
|
|
12349
|
+
};
|
|
12350
|
+
};
|
|
12351
|
+
/** @description Response for status 401 */
|
|
12352
|
+
401: {
|
|
12353
|
+
headers: {
|
|
12354
|
+
[name: string]: unknown;
|
|
12355
|
+
};
|
|
12356
|
+
content: {
|
|
12357
|
+
"application/json": {
|
|
12358
|
+
/**
|
|
12359
|
+
* @description A URI reference that identifies the problem type
|
|
12360
|
+
* @default about:blank
|
|
12361
|
+
* @example urn:problem-type:auth:unauthorized
|
|
12362
|
+
*/
|
|
12363
|
+
type: string;
|
|
12364
|
+
/**
|
|
12365
|
+
* @description A short, human-readable summary of the problem type
|
|
12366
|
+
* @example Unauthorized
|
|
12367
|
+
*/
|
|
12368
|
+
title: string;
|
|
12369
|
+
/**
|
|
12370
|
+
* @description The HTTP status code
|
|
12371
|
+
* @example 401
|
|
12372
|
+
*/
|
|
12373
|
+
status: number;
|
|
12374
|
+
/**
|
|
12375
|
+
* @description A human-readable explanation specific to this occurrence
|
|
12376
|
+
* @example Bearer token required
|
|
12377
|
+
*/
|
|
12378
|
+
detail?: string;
|
|
12379
|
+
/** @description A URI reference that identifies the specific occurrence */
|
|
12380
|
+
instance?: string;
|
|
12381
|
+
/**
|
|
12382
|
+
* @description The authentication realm
|
|
12383
|
+
* @example API
|
|
12384
|
+
*/
|
|
12385
|
+
realm?: string;
|
|
12386
|
+
/**
|
|
12387
|
+
* @description The required scope for this resource
|
|
12388
|
+
* @example read:users
|
|
12389
|
+
*/
|
|
12390
|
+
scope?: string;
|
|
12391
|
+
};
|
|
12392
|
+
};
|
|
12393
|
+
};
|
|
12394
|
+
/** @description Response for status 404 */
|
|
12395
|
+
404: {
|
|
12396
|
+
headers: {
|
|
12397
|
+
[name: string]: unknown;
|
|
12398
|
+
};
|
|
12399
|
+
content: {
|
|
12400
|
+
"application/json": {
|
|
12401
|
+
/**
|
|
12402
|
+
* @description A URI reference that identifies the problem type
|
|
12403
|
+
* @default about:blank
|
|
12404
|
+
*/
|
|
12405
|
+
type: string;
|
|
12406
|
+
/** @description A short, human-readable summary of the problem type */
|
|
12407
|
+
title: string;
|
|
12408
|
+
/**
|
|
12409
|
+
* @description The HTTP status code
|
|
12410
|
+
* @example 404
|
|
12411
|
+
*/
|
|
12412
|
+
status: number;
|
|
12413
|
+
/** @description A human-readable explanation specific to this occurrence */
|
|
12414
|
+
detail?: string;
|
|
12415
|
+
/** @description A URI reference that identifies the specific occurrence */
|
|
12416
|
+
instance?: string;
|
|
12417
|
+
/**
|
|
12418
|
+
* @description The type of resource that was not found
|
|
12419
|
+
* @example user
|
|
12420
|
+
*/
|
|
12421
|
+
resourceType: string;
|
|
12422
|
+
/** @description The identifier of the resource that was not found */
|
|
12423
|
+
resourceId: string;
|
|
12424
|
+
};
|
|
12425
|
+
};
|
|
12426
|
+
};
|
|
12427
|
+
/** @description Response for status 500 */
|
|
12428
|
+
500: {
|
|
12429
|
+
headers: {
|
|
12430
|
+
[name: string]: unknown;
|
|
12431
|
+
};
|
|
12432
|
+
content: {
|
|
12433
|
+
"application/json": {
|
|
12434
|
+
/**
|
|
12435
|
+
* @description A URI reference that identifies the problem type
|
|
12436
|
+
* @default about:blank
|
|
12437
|
+
* @example urn:problem-type:auth:unauthorized
|
|
12438
|
+
*/
|
|
12439
|
+
type: string;
|
|
12440
|
+
/**
|
|
12441
|
+
* @description A short, human-readable summary of the problem type
|
|
12442
|
+
* @example Unauthorized
|
|
12443
|
+
*/
|
|
12444
|
+
title: string;
|
|
12445
|
+
/**
|
|
12446
|
+
* @description The HTTP status code
|
|
12447
|
+
* @example 400
|
|
12448
|
+
*/
|
|
12449
|
+
status: number;
|
|
12450
|
+
/** @description A human-readable explanation specific to this occurrence */
|
|
12451
|
+
detail?: string;
|
|
12452
|
+
/**
|
|
12453
|
+
* @description A URI reference that identifies the specific occurrence
|
|
12454
|
+
* @example /errors/1234567890
|
|
12455
|
+
*/
|
|
12456
|
+
instance?: string;
|
|
12457
|
+
};
|
|
12458
|
+
};
|
|
12459
|
+
};
|
|
12460
|
+
};
|
|
12461
|
+
};
|
|
12462
|
+
"getV1Debit-cardsByCardId": {
|
|
12463
|
+
parameters: {
|
|
12464
|
+
query?: never;
|
|
12465
|
+
header?: never;
|
|
12466
|
+
path: {
|
|
12467
|
+
cardId: string;
|
|
12468
|
+
};
|
|
12469
|
+
cookie?: never;
|
|
12470
|
+
};
|
|
12471
|
+
requestBody?: never;
|
|
12472
|
+
responses: {
|
|
12473
|
+
/** @description Response for status 200 */
|
|
12474
|
+
200: {
|
|
12475
|
+
headers: {
|
|
12476
|
+
[name: string]: unknown;
|
|
12477
|
+
};
|
|
12478
|
+
content: {
|
|
12479
|
+
"application/json": {
|
|
12480
|
+
/**
|
|
12481
|
+
* @description Unique identifier for the debit card
|
|
12482
|
+
* @example 6a5f75585a936eb477232f09
|
|
11855
12483
|
*/
|
|
11856
12484
|
id: string;
|
|
11857
12485
|
/** @enum {string} */
|
|
11858
|
-
status: "active" | "pending" | "inactive" | "rejected";
|
|
12486
|
+
status: "active" | "pending" | "inactive" | "rejected" | "action_required";
|
|
11859
12487
|
/** @enum {string} */
|
|
11860
12488
|
network: "visa" | "mastercard";
|
|
11861
12489
|
/**
|
|
@@ -11875,6 +12503,27 @@ interface operations {
|
|
|
11875
12503
|
* @example true
|
|
11876
12504
|
*/
|
|
11877
12505
|
isTokenized: boolean;
|
|
12506
|
+
/** @description Actions the user must complete before the card can be used for payouts. Present (non-empty) when status is action_required. */
|
|
12507
|
+
requirements?: {
|
|
12508
|
+
/**
|
|
12509
|
+
* @description The action the user must complete to enable payouts
|
|
12510
|
+
* @example card_details
|
|
12511
|
+
*/
|
|
12512
|
+
type: string;
|
|
12513
|
+
/**
|
|
12514
|
+
* @description Fields the user must supply to satisfy the requirement
|
|
12515
|
+
* @example [
|
|
12516
|
+
* "cardholder_name",
|
|
12517
|
+
* "billing_address"
|
|
12518
|
+
* ]
|
|
12519
|
+
*/
|
|
12520
|
+
fields?: string[];
|
|
12521
|
+
/**
|
|
12522
|
+
* @description Human-readable explanation of the requirement
|
|
12523
|
+
* @example Cardholder name and billing address are required to enable payouts.
|
|
12524
|
+
*/
|
|
12525
|
+
reason?: string;
|
|
12526
|
+
}[];
|
|
11878
12527
|
/** Format: date-time */
|
|
11879
12528
|
createdAt: string;
|
|
11880
12529
|
};
|
|
@@ -11991,7 +12640,7 @@ interface operations {
|
|
|
11991
12640
|
};
|
|
11992
12641
|
};
|
|
11993
12642
|
};
|
|
11994
|
-
"
|
|
12643
|
+
"deleteV1Debit-cardsByCardId": {
|
|
11995
12644
|
parameters: {
|
|
11996
12645
|
query?: never;
|
|
11997
12646
|
header?: never;
|
|
@@ -12009,34 +12658,7 @@ interface operations {
|
|
|
12009
12658
|
};
|
|
12010
12659
|
content: {
|
|
12011
12660
|
"application/json": {
|
|
12012
|
-
|
|
12013
|
-
* @description Unique identifier for the debit card
|
|
12014
|
-
* @example 6a4b441ca9931c9d1ac48c86
|
|
12015
|
-
*/
|
|
12016
|
-
id: string;
|
|
12017
|
-
/** @enum {string} */
|
|
12018
|
-
status: "active" | "pending" | "inactive" | "rejected";
|
|
12019
|
-
/** @enum {string} */
|
|
12020
|
-
network: "visa" | "mastercard";
|
|
12021
|
-
/**
|
|
12022
|
-
* @description Last 4 digits of card number
|
|
12023
|
-
* @example 1111
|
|
12024
|
-
*/
|
|
12025
|
-
cardNumberLast4: string;
|
|
12026
|
-
/** @example 12 */
|
|
12027
|
-
expiryMonth: number;
|
|
12028
|
-
/** @example 2027 */
|
|
12029
|
-
expiryYear: number;
|
|
12030
|
-
label?: string;
|
|
12031
|
-
/** @enum {string} */
|
|
12032
|
-
currency: "USD" | "CAD" | "EUR" | "GBP";
|
|
12033
|
-
/**
|
|
12034
|
-
* @description Whether this card has been tokenized via Evervault for secure storage
|
|
12035
|
-
* @example true
|
|
12036
|
-
*/
|
|
12037
|
-
isTokenized: boolean;
|
|
12038
|
-
/** Format: date-time */
|
|
12039
|
-
createdAt: string;
|
|
12661
|
+
success: boolean;
|
|
12040
12662
|
};
|
|
12041
12663
|
};
|
|
12042
12664
|
};
|
|
@@ -12151,7 +12773,7 @@ interface operations {
|
|
|
12151
12773
|
};
|
|
12152
12774
|
};
|
|
12153
12775
|
};
|
|
12154
|
-
"
|
|
12776
|
+
"patchV1Debit-cardsByCardIdCardholder-info": {
|
|
12155
12777
|
parameters: {
|
|
12156
12778
|
query?: never;
|
|
12157
12779
|
header?: never;
|
|
@@ -12160,7 +12782,142 @@ interface operations {
|
|
|
12160
12782
|
};
|
|
12161
12783
|
cookie?: never;
|
|
12162
12784
|
};
|
|
12163
|
-
requestBody
|
|
12785
|
+
requestBody: {
|
|
12786
|
+
content: {
|
|
12787
|
+
"application/json": {
|
|
12788
|
+
/**
|
|
12789
|
+
* @description Cardholder's first name
|
|
12790
|
+
* @example John
|
|
12791
|
+
*/
|
|
12792
|
+
cardholderFirstName: string;
|
|
12793
|
+
/**
|
|
12794
|
+
* @description Cardholder's last name
|
|
12795
|
+
* @example Doe
|
|
12796
|
+
*/
|
|
12797
|
+
cardholderLastName: string;
|
|
12798
|
+
billingAddress: {
|
|
12799
|
+
/**
|
|
12800
|
+
* @description Street address line 1
|
|
12801
|
+
* @example 123 Main St
|
|
12802
|
+
*/
|
|
12803
|
+
line1: string;
|
|
12804
|
+
/**
|
|
12805
|
+
* @description Street address line 2
|
|
12806
|
+
* @example Apt 4
|
|
12807
|
+
*/
|
|
12808
|
+
line2?: string;
|
|
12809
|
+
/**
|
|
12810
|
+
* @description City
|
|
12811
|
+
* @example New York
|
|
12812
|
+
*/
|
|
12813
|
+
city: string;
|
|
12814
|
+
/**
|
|
12815
|
+
* @description State / province code
|
|
12816
|
+
* @example NY
|
|
12817
|
+
*/
|
|
12818
|
+
state: string;
|
|
12819
|
+
/**
|
|
12820
|
+
* @description Postal / ZIP code
|
|
12821
|
+
* @example 10001
|
|
12822
|
+
*/
|
|
12823
|
+
postalCode: string;
|
|
12824
|
+
/**
|
|
12825
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
12826
|
+
* @example US
|
|
12827
|
+
*/
|
|
12828
|
+
country: string;
|
|
12829
|
+
};
|
|
12830
|
+
};
|
|
12831
|
+
"application/x-www-form-urlencoded": {
|
|
12832
|
+
/**
|
|
12833
|
+
* @description Cardholder's first name
|
|
12834
|
+
* @example John
|
|
12835
|
+
*/
|
|
12836
|
+
cardholderFirstName: string;
|
|
12837
|
+
/**
|
|
12838
|
+
* @description Cardholder's last name
|
|
12839
|
+
* @example Doe
|
|
12840
|
+
*/
|
|
12841
|
+
cardholderLastName: string;
|
|
12842
|
+
billingAddress: {
|
|
12843
|
+
/**
|
|
12844
|
+
* @description Street address line 1
|
|
12845
|
+
* @example 123 Main St
|
|
12846
|
+
*/
|
|
12847
|
+
line1: string;
|
|
12848
|
+
/**
|
|
12849
|
+
* @description Street address line 2
|
|
12850
|
+
* @example Apt 4
|
|
12851
|
+
*/
|
|
12852
|
+
line2?: string;
|
|
12853
|
+
/**
|
|
12854
|
+
* @description City
|
|
12855
|
+
* @example New York
|
|
12856
|
+
*/
|
|
12857
|
+
city: string;
|
|
12858
|
+
/**
|
|
12859
|
+
* @description State / province code
|
|
12860
|
+
* @example NY
|
|
12861
|
+
*/
|
|
12862
|
+
state: string;
|
|
12863
|
+
/**
|
|
12864
|
+
* @description Postal / ZIP code
|
|
12865
|
+
* @example 10001
|
|
12866
|
+
*/
|
|
12867
|
+
postalCode: string;
|
|
12868
|
+
/**
|
|
12869
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
12870
|
+
* @example US
|
|
12871
|
+
*/
|
|
12872
|
+
country: string;
|
|
12873
|
+
};
|
|
12874
|
+
};
|
|
12875
|
+
"multipart/form-data": {
|
|
12876
|
+
/**
|
|
12877
|
+
* @description Cardholder's first name
|
|
12878
|
+
* @example John
|
|
12879
|
+
*/
|
|
12880
|
+
cardholderFirstName: string;
|
|
12881
|
+
/**
|
|
12882
|
+
* @description Cardholder's last name
|
|
12883
|
+
* @example Doe
|
|
12884
|
+
*/
|
|
12885
|
+
cardholderLastName: string;
|
|
12886
|
+
billingAddress: {
|
|
12887
|
+
/**
|
|
12888
|
+
* @description Street address line 1
|
|
12889
|
+
* @example 123 Main St
|
|
12890
|
+
*/
|
|
12891
|
+
line1: string;
|
|
12892
|
+
/**
|
|
12893
|
+
* @description Street address line 2
|
|
12894
|
+
* @example Apt 4
|
|
12895
|
+
*/
|
|
12896
|
+
line2?: string;
|
|
12897
|
+
/**
|
|
12898
|
+
* @description City
|
|
12899
|
+
* @example New York
|
|
12900
|
+
*/
|
|
12901
|
+
city: string;
|
|
12902
|
+
/**
|
|
12903
|
+
* @description State / province code
|
|
12904
|
+
* @example NY
|
|
12905
|
+
*/
|
|
12906
|
+
state: string;
|
|
12907
|
+
/**
|
|
12908
|
+
* @description Postal / ZIP code
|
|
12909
|
+
* @example 10001
|
|
12910
|
+
*/
|
|
12911
|
+
postalCode: string;
|
|
12912
|
+
/**
|
|
12913
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
12914
|
+
* @example US
|
|
12915
|
+
*/
|
|
12916
|
+
country: string;
|
|
12917
|
+
};
|
|
12918
|
+
};
|
|
12919
|
+
};
|
|
12920
|
+
};
|
|
12164
12921
|
responses: {
|
|
12165
12922
|
/** @description Response for status 200 */
|
|
12166
12923
|
200: {
|
|
@@ -12169,7 +12926,55 @@ interface operations {
|
|
|
12169
12926
|
};
|
|
12170
12927
|
content: {
|
|
12171
12928
|
"application/json": {
|
|
12172
|
-
|
|
12929
|
+
/**
|
|
12930
|
+
* @description Unique identifier for the debit card
|
|
12931
|
+
* @example 6a5f75585a936eb477232f09
|
|
12932
|
+
*/
|
|
12933
|
+
id: string;
|
|
12934
|
+
/** @enum {string} */
|
|
12935
|
+
status: "active" | "pending" | "inactive" | "rejected" | "action_required";
|
|
12936
|
+
/** @enum {string} */
|
|
12937
|
+
network: "visa" | "mastercard";
|
|
12938
|
+
/**
|
|
12939
|
+
* @description Last 4 digits of card number
|
|
12940
|
+
* @example 1111
|
|
12941
|
+
*/
|
|
12942
|
+
cardNumberLast4: string;
|
|
12943
|
+
/** @example 12 */
|
|
12944
|
+
expiryMonth: number;
|
|
12945
|
+
/** @example 2027 */
|
|
12946
|
+
expiryYear: number;
|
|
12947
|
+
label?: string;
|
|
12948
|
+
/** @enum {string} */
|
|
12949
|
+
currency: "USD" | "CAD" | "EUR" | "GBP";
|
|
12950
|
+
/**
|
|
12951
|
+
* @description Whether this card has been tokenized via Evervault for secure storage
|
|
12952
|
+
* @example true
|
|
12953
|
+
*/
|
|
12954
|
+
isTokenized: boolean;
|
|
12955
|
+
/** @description Actions the user must complete before the card can be used for payouts. Present (non-empty) when status is action_required. */
|
|
12956
|
+
requirements?: {
|
|
12957
|
+
/**
|
|
12958
|
+
* @description The action the user must complete to enable payouts
|
|
12959
|
+
* @example card_details
|
|
12960
|
+
*/
|
|
12961
|
+
type: string;
|
|
12962
|
+
/**
|
|
12963
|
+
* @description Fields the user must supply to satisfy the requirement
|
|
12964
|
+
* @example [
|
|
12965
|
+
* "cardholder_name",
|
|
12966
|
+
* "billing_address"
|
|
12967
|
+
* ]
|
|
12968
|
+
*/
|
|
12969
|
+
fields?: string[];
|
|
12970
|
+
/**
|
|
12971
|
+
* @description Human-readable explanation of the requirement
|
|
12972
|
+
* @example Cardholder name and billing address are required to enable payouts.
|
|
12973
|
+
*/
|
|
12974
|
+
reason?: string;
|
|
12975
|
+
}[];
|
|
12976
|
+
/** Format: date-time */
|
|
12977
|
+
createdAt: string;
|
|
12173
12978
|
};
|
|
12174
12979
|
};
|
|
12175
12980
|
};
|
|
@@ -12865,7 +13670,7 @@ interface operations {
|
|
|
12865
13670
|
accessToken: string;
|
|
12866
13671
|
/**
|
|
12867
13672
|
* @description The internal ID of the authorized user
|
|
12868
|
-
* @example
|
|
13673
|
+
* @example 6a5f75595a936eb477232f0d
|
|
12869
13674
|
*/
|
|
12870
13675
|
userId: string;
|
|
12871
13676
|
/**
|
|
@@ -12881,7 +13686,7 @@ interface operations {
|
|
|
12881
13686
|
/**
|
|
12882
13687
|
* Format: date-time
|
|
12883
13688
|
* @description ISO 8601 timestamp when token expires
|
|
12884
|
-
* @example 2026-07-
|
|
13689
|
+
* @example 2026-07-21T14:34:17.046Z
|
|
12885
13690
|
*/
|
|
12886
13691
|
expiresAt: string;
|
|
12887
13692
|
};
|
|
@@ -13044,7 +13849,7 @@ interface operations {
|
|
|
13044
13849
|
/**
|
|
13045
13850
|
* Format: date-time
|
|
13046
13851
|
* @description ISO 8601 timestamp of when the integrator was created
|
|
13047
|
-
* @example 2026-07-
|
|
13852
|
+
* @example 2026-07-21T13:34:17.045Z
|
|
13048
13853
|
*/
|
|
13049
13854
|
createdAt: string;
|
|
13050
13855
|
};
|
|
@@ -13221,7 +14026,7 @@ interface operations {
|
|
|
13221
14026
|
"application/json": {
|
|
13222
14027
|
/**
|
|
13223
14028
|
* @description The internal ID of the newly created user
|
|
13224
|
-
* @example
|
|
14029
|
+
* @example 6a5f75595a936eb477232f0f
|
|
13225
14030
|
*/
|
|
13226
14031
|
userId: string;
|
|
13227
14032
|
/**
|
|
@@ -13385,7 +14190,7 @@ interface operations {
|
|
|
13385
14190
|
"getV1IntegratorAch-debitReturns": {
|
|
13386
14191
|
parameters: {
|
|
13387
14192
|
query?: {
|
|
13388
|
-
limit?:
|
|
14193
|
+
limit?: number;
|
|
13389
14194
|
cursor?: string;
|
|
13390
14195
|
userId?: string;
|
|
13391
14196
|
userIds?: string;
|
|
@@ -13424,7 +14229,7 @@ interface operations {
|
|
|
13424
14229
|
depositId: string;
|
|
13425
14230
|
/**
|
|
13426
14231
|
* @description Spritz user ID associated with the returned deposit
|
|
13427
|
-
* @example
|
|
14232
|
+
* @example 6a5f75595a936eb477232f0c
|
|
13428
14233
|
*/
|
|
13429
14234
|
userId: string;
|
|
13430
14235
|
/**
|
|
@@ -13600,7 +14405,7 @@ interface operations {
|
|
|
13600
14405
|
depositId: string;
|
|
13601
14406
|
/**
|
|
13602
14407
|
* @description Spritz user ID associated with the returned deposit
|
|
13603
|
-
* @example
|
|
14408
|
+
* @example 6a5f75595a936eb477232f0c
|
|
13604
14409
|
*/
|
|
13605
14410
|
userId: string;
|
|
13606
14411
|
/**
|
|
@@ -13757,7 +14562,7 @@ interface operations {
|
|
|
13757
14562
|
"application/json": {
|
|
13758
14563
|
/**
|
|
13759
14564
|
* @description Unique identifier for the webhook
|
|
13760
|
-
* @example
|
|
14565
|
+
* @example 6a5f75595a936eb477232f0e
|
|
13761
14566
|
*/
|
|
13762
14567
|
id: string;
|
|
13763
14568
|
/** @description List of event types this webhook is subscribed to */
|
|
@@ -13952,7 +14757,7 @@ interface operations {
|
|
|
13952
14757
|
"application/json": {
|
|
13953
14758
|
/**
|
|
13954
14759
|
* @description Unique identifier for the webhook
|
|
13955
|
-
* @example
|
|
14760
|
+
* @example 6a5f75595a936eb477232f0e
|
|
13956
14761
|
*/
|
|
13957
14762
|
id: string;
|
|
13958
14763
|
/** @description List of event types this webhook is subscribed to */
|
|
@@ -14264,7 +15069,7 @@ interface operations {
|
|
|
14264
15069
|
"application/json": {
|
|
14265
15070
|
/**
|
|
14266
15071
|
* @description Unique identifier for the webhook
|
|
14267
|
-
* @example
|
|
15072
|
+
* @example 6a5f75595a936eb477232f0e
|
|
14268
15073
|
*/
|
|
14269
15074
|
id: string;
|
|
14270
15075
|
/** @description List of event types this webhook is subscribed to */
|
|
@@ -14609,7 +15414,7 @@ interface operations {
|
|
|
14609
15414
|
/**
|
|
14610
15415
|
* Format: date-time
|
|
14611
15416
|
* @description ISO 8601 timestamp when the old secret will expire. Only present if a grace period was specified.
|
|
14612
|
-
* @example 2026-07-
|
|
15417
|
+
* @example 2026-07-21T13:39:17.046Z
|
|
14613
15418
|
*/
|
|
14614
15419
|
oldSecretExpiresAt?: string;
|
|
14615
15420
|
};
|
|
@@ -14744,7 +15549,7 @@ interface operations {
|
|
|
14744
15549
|
"application/json": {
|
|
14745
15550
|
/**
|
|
14746
15551
|
* @description Unique identifier for the user
|
|
14747
|
-
* @example
|
|
15552
|
+
* @example 6a5f75585a936eb477232f0a
|
|
14748
15553
|
*/
|
|
14749
15554
|
id: string;
|
|
14750
15555
|
/**
|
|
@@ -14761,7 +15566,7 @@ interface operations {
|
|
|
14761
15566
|
/**
|
|
14762
15567
|
* Format: date-time
|
|
14763
15568
|
* @description ISO 8601 timestamp of when the user was created
|
|
14764
|
-
* @example 2026-07-
|
|
15569
|
+
* @example 2026-07-21T13:34:16.966Z
|
|
14765
15570
|
*/
|
|
14766
15571
|
signedUpAt: string;
|
|
14767
15572
|
/**
|
|
@@ -15091,7 +15896,7 @@ interface operations {
|
|
|
15091
15896
|
"application/json": {
|
|
15092
15897
|
/**
|
|
15093
15898
|
* @description Unique identifier for the user
|
|
15094
|
-
* @example
|
|
15899
|
+
* @example 6a5f75585a936eb477232f0a
|
|
15095
15900
|
*/
|
|
15096
15901
|
id: string;
|
|
15097
15902
|
/**
|
|
@@ -15108,7 +15913,7 @@ interface operations {
|
|
|
15108
15913
|
/**
|
|
15109
15914
|
* Format: date-time
|
|
15110
15915
|
* @description ISO 8601 timestamp of when the user was created
|
|
15111
|
-
* @example 2026-07-
|
|
15916
|
+
* @example 2026-07-21T13:34:16.966Z
|
|
15112
15917
|
*/
|
|
15113
15918
|
signedUpAt: string;
|
|
15114
15919
|
/**
|
|
@@ -15503,7 +16308,7 @@ interface operations {
|
|
|
15503
16308
|
"application/json": {
|
|
15504
16309
|
/**
|
|
15505
16310
|
* @description Unique identifier for the user
|
|
15506
|
-
* @example
|
|
16311
|
+
* @example 6a5f75585a936eb477232f0a
|
|
15507
16312
|
*/
|
|
15508
16313
|
id: string;
|
|
15509
16314
|
/**
|
|
@@ -15520,7 +16325,7 @@ interface operations {
|
|
|
15520
16325
|
/**
|
|
15521
16326
|
* Format: date-time
|
|
15522
16327
|
* @description ISO 8601 timestamp of when the user was created
|
|
15523
|
-
* @example 2026-07-
|
|
16328
|
+
* @example 2026-07-21T13:34:16.966Z
|
|
15524
16329
|
*/
|
|
15525
16330
|
signedUpAt: string;
|
|
15526
16331
|
/**
|
|
@@ -15937,7 +16742,7 @@ interface operations {
|
|
|
15937
16742
|
requestBody: {
|
|
15938
16743
|
content: {
|
|
15939
16744
|
"application/json": {
|
|
15940
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
16745
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
15941
16746
|
/**
|
|
15942
16747
|
* Format: date-time
|
|
15943
16748
|
* @description ISO 8601 expiration timestamp
|
|
@@ -15946,7 +16751,7 @@ interface operations {
|
|
|
15946
16751
|
name?: string;
|
|
15947
16752
|
};
|
|
15948
16753
|
"application/x-www-form-urlencoded": {
|
|
15949
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
16754
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
15950
16755
|
/**
|
|
15951
16756
|
* Format: date-time
|
|
15952
16757
|
* @description ISO 8601 expiration timestamp
|
|
@@ -15955,7 +16760,7 @@ interface operations {
|
|
|
15955
16760
|
name?: string;
|
|
15956
16761
|
};
|
|
15957
16762
|
"multipart/form-data": {
|
|
15958
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
16763
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
15959
16764
|
/**
|
|
15960
16765
|
* Format: date-time
|
|
15961
16766
|
* @description ISO 8601 expiration timestamp
|
|
@@ -16391,7 +17196,7 @@ interface operations {
|
|
|
16391
17196
|
content: {
|
|
16392
17197
|
"application/json": {
|
|
16393
17198
|
userCode: string;
|
|
16394
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
17199
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
16395
17200
|
/**
|
|
16396
17201
|
* Format: date-time
|
|
16397
17202
|
* @description ISO 8601 expiration timestamp
|
|
@@ -16401,7 +17206,7 @@ interface operations {
|
|
|
16401
17206
|
};
|
|
16402
17207
|
"application/x-www-form-urlencoded": {
|
|
16403
17208
|
userCode: string;
|
|
16404
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
17209
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
16405
17210
|
/**
|
|
16406
17211
|
* Format: date-time
|
|
16407
17212
|
* @description ISO 8601 expiration timestamp
|
|
@@ -16411,7 +17216,7 @@ interface operations {
|
|
|
16411
17216
|
};
|
|
16412
17217
|
"multipart/form-data": {
|
|
16413
17218
|
userCode: string;
|
|
16414
|
-
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:write")[];
|
|
17219
|
+
permissions: ("bank-accounts:read" | "bank-accounts:write" | "bank-accounts:delete" | "bills:read" | "bills:delete" | "off-ramp-quotes:read" | "off-ramp-quotes:write" | "off-ramps:refund")[];
|
|
16415
17220
|
/**
|
|
16416
17221
|
* Format: date-time
|
|
16417
17222
|
* @description ISO 8601 expiration timestamp
|
|
@@ -16988,7 +17793,7 @@ interface operations {
|
|
|
16988
17793
|
* @description Token decimals
|
|
16989
17794
|
* @example 6
|
|
16990
17795
|
*/
|
|
16991
|
-
decimals:
|
|
17796
|
+
decimals: number;
|
|
16992
17797
|
/**
|
|
16993
17798
|
* @description Decimal-formatted token balance
|
|
16994
17799
|
* @example 100.5
|
|
@@ -17145,17 +17950,17 @@ interface operations {
|
|
|
17145
17950
|
*/
|
|
17146
17951
|
totalBalanceUsd: string;
|
|
17147
17952
|
/** @description Distinct asset count at this point. */
|
|
17148
|
-
assetCount:
|
|
17953
|
+
assetCount: number;
|
|
17149
17954
|
/** @description Distinct chain count at this point. */
|
|
17150
|
-
chainCount:
|
|
17955
|
+
chainCount: number;
|
|
17151
17956
|
/** @description Total wallet count considered for this point. */
|
|
17152
|
-
walletCount:
|
|
17957
|
+
walletCount: number;
|
|
17153
17958
|
/** @description Number of wallets that were captured successfully. */
|
|
17154
|
-
capturedWalletCount:
|
|
17959
|
+
capturedWalletCount: number;
|
|
17155
17960
|
/** @description Number of wallets skipped because their chain is not yet supported. */
|
|
17156
|
-
unsupportedWalletCount:
|
|
17961
|
+
unsupportedWalletCount: number;
|
|
17157
17962
|
/** @description Number of wallets that failed to capture. */
|
|
17158
|
-
failedWalletCount:
|
|
17963
|
+
failedWalletCount: number;
|
|
17159
17964
|
} | null;
|
|
17160
17965
|
/** @description Oldest snapshot inside the requested range, or null when no snapshots exist. */
|
|
17161
17966
|
baseline: {
|
|
@@ -17179,17 +17984,17 @@ interface operations {
|
|
|
17179
17984
|
*/
|
|
17180
17985
|
totalBalanceUsd: string;
|
|
17181
17986
|
/** @description Distinct asset count at this point. */
|
|
17182
|
-
assetCount:
|
|
17987
|
+
assetCount: number;
|
|
17183
17988
|
/** @description Distinct chain count at this point. */
|
|
17184
|
-
chainCount:
|
|
17989
|
+
chainCount: number;
|
|
17185
17990
|
/** @description Total wallet count considered for this point. */
|
|
17186
|
-
walletCount:
|
|
17991
|
+
walletCount: number;
|
|
17187
17992
|
/** @description Number of wallets that were captured successfully. */
|
|
17188
|
-
capturedWalletCount:
|
|
17993
|
+
capturedWalletCount: number;
|
|
17189
17994
|
/** @description Number of wallets skipped because their chain is not yet supported. */
|
|
17190
|
-
unsupportedWalletCount:
|
|
17995
|
+
unsupportedWalletCount: number;
|
|
17191
17996
|
/** @description Number of wallets that failed to capture. */
|
|
17192
|
-
failedWalletCount:
|
|
17997
|
+
failedWalletCount: number;
|
|
17193
17998
|
} | null;
|
|
17194
17999
|
/**
|
|
17195
18000
|
* @description Simple USD balance delta between baseline and latest, formatted to two decimal places. Not P&L. Null when history is empty.
|
|
@@ -17223,17 +18028,17 @@ interface operations {
|
|
|
17223
18028
|
*/
|
|
17224
18029
|
totalBalanceUsd: string;
|
|
17225
18030
|
/** @description Distinct asset count at this point. */
|
|
17226
|
-
assetCount:
|
|
18031
|
+
assetCount: number;
|
|
17227
18032
|
/** @description Distinct chain count at this point. */
|
|
17228
|
-
chainCount:
|
|
18033
|
+
chainCount: number;
|
|
17229
18034
|
/** @description Total wallet count considered for this point. */
|
|
17230
|
-
walletCount:
|
|
18035
|
+
walletCount: number;
|
|
17231
18036
|
/** @description Number of wallets that were captured successfully. */
|
|
17232
|
-
capturedWalletCount:
|
|
18037
|
+
capturedWalletCount: number;
|
|
17233
18038
|
/** @description Number of wallets skipped because their chain is not yet supported. */
|
|
17234
|
-
unsupportedWalletCount:
|
|
18039
|
+
unsupportedWalletCount: number;
|
|
17235
18040
|
/** @description Number of wallets that failed to capture. */
|
|
17236
|
-
failedWalletCount:
|
|
18041
|
+
failedWalletCount: number;
|
|
17237
18042
|
}[];
|
|
17238
18043
|
};
|
|
17239
18044
|
};
|
|
@@ -17320,7 +18125,7 @@ interface operations {
|
|
|
17320
18125
|
parameters: {
|
|
17321
18126
|
query: {
|
|
17322
18127
|
address: string;
|
|
17323
|
-
limit?:
|
|
18128
|
+
limit?: number;
|
|
17324
18129
|
cursor?: string;
|
|
17325
18130
|
};
|
|
17326
18131
|
header?: never;
|
|
@@ -17360,7 +18165,7 @@ interface operations {
|
|
|
17360
18165
|
* @description Token decimals.
|
|
17361
18166
|
* @example 9
|
|
17362
18167
|
*/
|
|
17363
|
-
decimals:
|
|
18168
|
+
decimals: number;
|
|
17364
18169
|
/**
|
|
17365
18170
|
* @description Decimal-formatted token amount in display units (not USD). Precision matches the token's decimals.
|
|
17366
18171
|
* @example 1.5
|
|
@@ -17860,13 +18665,13 @@ interface operations {
|
|
|
17860
18665
|
* @description Estimated Solana network fee in lamports for the prepared message.
|
|
17861
18666
|
* @example 5000
|
|
17862
18667
|
*/
|
|
17863
|
-
estimatedFeeLamports:
|
|
18668
|
+
estimatedFeeLamports: number;
|
|
17864
18669
|
/** @description Address lookup table accounts used by the v0 message. Empty when the message does not use lookup tables. */
|
|
17865
18670
|
addressLookupTableAddresses: string[];
|
|
17866
18671
|
/** @description Recent blockhash embedded in the prepared message. This blockhash is what makes the prepared message expire. */
|
|
17867
18672
|
blockhash: string;
|
|
17868
18673
|
/** @description Last Solana block height at which the prepared message can still be submitted. */
|
|
17869
|
-
lastValidBlockHeight:
|
|
18674
|
+
lastValidBlockHeight: number;
|
|
17870
18675
|
/**
|
|
17871
18676
|
* Format: date-time
|
|
17872
18677
|
* @description ISO 8601 timestamp at which this prepared transaction expires. Solana blockhashes expire quickly; if submit fails with `TX_EXPIRED`, call prepare again and sign the new `messageBytes`.
|
|
@@ -19924,11 +20729,11 @@ interface operations {
|
|
|
19924
20729
|
/** @enum {string} */
|
|
19925
20730
|
symbol: "USDC" | "UNKNOWN";
|
|
19926
20731
|
mint: string;
|
|
19927
|
-
decimals:
|
|
20732
|
+
decimals: number;
|
|
19928
20733
|
};
|
|
19929
20734
|
receiptToken: {
|
|
19930
20735
|
mint: string;
|
|
19931
|
-
decimals:
|
|
20736
|
+
decimals: number;
|
|
19932
20737
|
};
|
|
19933
20738
|
apy: {
|
|
19934
20739
|
current: string | null;
|
|
@@ -19954,11 +20759,11 @@ interface operations {
|
|
|
19954
20759
|
};
|
|
19955
20760
|
sharePrice: string | null;
|
|
19956
20761
|
tokensPerShare: string | null;
|
|
19957
|
-
numberOfHolders:
|
|
20762
|
+
numberOfHolders: number | null;
|
|
19958
20763
|
fees: {
|
|
19959
|
-
performanceFeeBps:
|
|
19960
|
-
managementFeeBps:
|
|
19961
|
-
withdrawalPenaltyBps:
|
|
20764
|
+
performanceFeeBps: number;
|
|
20765
|
+
managementFeeBps: number;
|
|
20766
|
+
withdrawalPenaltyBps: number;
|
|
19962
20767
|
};
|
|
19963
20768
|
limits: {
|
|
19964
20769
|
minDepositAmount: string;
|
|
@@ -20168,11 +20973,11 @@ interface operations {
|
|
|
20168
20973
|
/** @enum {string} */
|
|
20169
20974
|
symbol: "USDC" | "UNKNOWN";
|
|
20170
20975
|
mint: string;
|
|
20171
|
-
decimals:
|
|
20976
|
+
decimals: number;
|
|
20172
20977
|
};
|
|
20173
20978
|
receiptToken: {
|
|
20174
20979
|
mint: string;
|
|
20175
|
-
decimals:
|
|
20980
|
+
decimals: number;
|
|
20176
20981
|
};
|
|
20177
20982
|
apy: {
|
|
20178
20983
|
current: string | null;
|
|
@@ -20198,11 +21003,11 @@ interface operations {
|
|
|
20198
21003
|
};
|
|
20199
21004
|
sharePrice: string | null;
|
|
20200
21005
|
tokensPerShare: string | null;
|
|
20201
|
-
numberOfHolders:
|
|
21006
|
+
numberOfHolders: number | null;
|
|
20202
21007
|
fees: {
|
|
20203
|
-
performanceFeeBps:
|
|
20204
|
-
managementFeeBps:
|
|
20205
|
-
withdrawalPenaltyBps:
|
|
21008
|
+
performanceFeeBps: number;
|
|
21009
|
+
managementFeeBps: number;
|
|
21010
|
+
withdrawalPenaltyBps: number;
|
|
20206
21011
|
};
|
|
20207
21012
|
limits: {
|
|
20208
21013
|
minDepositAmount: string;
|
|
@@ -20655,7 +21460,7 @@ interface operations {
|
|
|
20655
21460
|
/** @enum {string} */
|
|
20656
21461
|
symbol: "USDC" | "UNKNOWN";
|
|
20657
21462
|
mint: string | null;
|
|
20658
|
-
decimals:
|
|
21463
|
+
decimals: number | null;
|
|
20659
21464
|
};
|
|
20660
21465
|
shares: {
|
|
20661
21466
|
staked: string;
|
|
@@ -20859,7 +21664,7 @@ interface operations {
|
|
|
20859
21664
|
depositToken: {
|
|
20860
21665
|
symbol: "USDC" | "UNKNOWN";
|
|
20861
21666
|
mint: string | null;
|
|
20862
|
-
decimals:
|
|
21667
|
+
decimals: number | null;
|
|
20863
21668
|
};
|
|
20864
21669
|
shares: {
|
|
20865
21670
|
staked: string;
|
|
@@ -22212,7 +23017,7 @@ interface operations {
|
|
|
22212
23017
|
status: "information_required" | "challenge_required";
|
|
22213
23018
|
challenge?: {
|
|
22214
23019
|
questions: {
|
|
22215
|
-
id: string
|
|
23020
|
+
id: string;
|
|
22216
23021
|
prompt: string | null;
|
|
22217
23022
|
options: {
|
|
22218
23023
|
id: string;
|
|
@@ -22377,7 +23182,7 @@ interface operations {
|
|
|
22377
23182
|
status: "information_required" | "challenge_required";
|
|
22378
23183
|
challenge?: {
|
|
22379
23184
|
questions: {
|
|
22380
|
-
id: string
|
|
23185
|
+
id: string;
|
|
22381
23186
|
prompt: string | null;
|
|
22382
23187
|
options: {
|
|
22383
23188
|
id: string;
|
|
@@ -22553,7 +23358,7 @@ interface operations {
|
|
|
22553
23358
|
status: "information_required" | "challenge_required";
|
|
22554
23359
|
challenge?: {
|
|
22555
23360
|
questions: {
|
|
22556
|
-
id: string
|
|
23361
|
+
id: string;
|
|
22557
23362
|
prompt: string | null;
|
|
22558
23363
|
options: {
|
|
22559
23364
|
id: string;
|
|
@@ -24609,6 +25414,7 @@ declare class BankAccountService {
|
|
|
24609
25414
|
bankAccounts: ({
|
|
24610
25415
|
id: string;
|
|
24611
25416
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
25417
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
24612
25418
|
accountHolderName: string;
|
|
24613
25419
|
institution?: {
|
|
24614
25420
|
name: string;
|
|
@@ -24626,6 +25432,7 @@ declare class BankAccountService {
|
|
|
24626
25432
|
} | {
|
|
24627
25433
|
id: string;
|
|
24628
25434
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
25435
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
24629
25436
|
accountHolderName: string;
|
|
24630
25437
|
institution?: {
|
|
24631
25438
|
name: string;
|
|
@@ -24644,6 +25451,7 @@ declare class BankAccountService {
|
|
|
24644
25451
|
} | {
|
|
24645
25452
|
id: string;
|
|
24646
25453
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
25454
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
24647
25455
|
accountHolderName: string;
|
|
24648
25456
|
institution?: {
|
|
24649
25457
|
name: string;
|
|
@@ -24660,6 +25468,7 @@ declare class BankAccountService {
|
|
|
24660
25468
|
} | {
|
|
24661
25469
|
id: string;
|
|
24662
25470
|
status: "active" | "pending" | "inactive" | "rejected";
|
|
25471
|
+
statusReason: ("account_invalid" | null) | ("account_closed" | null) | ("account_blocked" | null);
|
|
24663
25472
|
accountHolderName: string;
|
|
24664
25473
|
institution?: {
|
|
24665
25474
|
name: string;
|
|
@@ -24876,7 +25685,7 @@ declare class FundingSourceService {
|
|
|
24876
25685
|
accountNumberLast4: string | null;
|
|
24877
25686
|
accountType: "checking" | "savings" | "business" | "unknown";
|
|
24878
25687
|
status: "pending" | "active" | "review_required" | "ineligible" | "disabled" | "deleted";
|
|
24879
|
-
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("manually_disabled" | null);
|
|
25688
|
+
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("rerouted" | null) | ("manually_disabled" | null);
|
|
24880
25689
|
ownershipMatchStatus: ("matched" | null) | ("mismatch" | null) | ("review_required" | null);
|
|
24881
25690
|
deletedAt: string | null;
|
|
24882
25691
|
createdAt: string;
|
|
@@ -24893,7 +25702,7 @@ declare class FundingSourceService {
|
|
|
24893
25702
|
accountNumberLast4: string | null;
|
|
24894
25703
|
accountType: "checking" | "savings" | "business" | "unknown";
|
|
24895
25704
|
status: "pending" | "active" | "review_required" | "ineligible" | "disabled" | "deleted";
|
|
24896
|
-
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("manually_disabled" | null);
|
|
25705
|
+
statusReason: ("ownership_mismatch" | null) | ("ownership_review_required" | null) | ("user_not_verified" | null) | ("duplicate_bank_account" | null) | ("returned" | null) | ("risk_blocked" | null) | ("rerouted" | null) | ("manually_disabled" | null);
|
|
24897
25706
|
ownershipMatchStatus: ("matched" | null) | ("mismatch" | null) | ("review_required" | null);
|
|
24898
25707
|
deletedAt: string | null;
|
|
24899
25708
|
createdAt: string;
|
|
@@ -24991,6 +25800,49 @@ declare class SandboxService {
|
|
|
24991
25800
|
}>;
|
|
24992
25801
|
}
|
|
24993
25802
|
|
|
25803
|
+
type OffRampRefundRequest = PathRequestBody<'/v1/off-ramps/{offRampId}/refund', 'post'>;
|
|
25804
|
+
type OffRampRefundResponse = PathResponse<'/v1/off-ramps/{offRampId}/refund', 'post'>;
|
|
25805
|
+
declare class OfframpService {
|
|
25806
|
+
private client;
|
|
25807
|
+
constructor(client: SpritzClient);
|
|
25808
|
+
/**
|
|
25809
|
+
* Refund a failed off-ramp payment.
|
|
25810
|
+
*
|
|
25811
|
+
* Pass `{ method: 'credit' }` to return the funds to the user's Spritz balance, or
|
|
25812
|
+
* `{ method: 'account', accountId }` to reissue the payout to a different bank account.
|
|
25813
|
+
* Omit `accountId` to reuse the off-ramp's original destination account.
|
|
25814
|
+
*
|
|
25815
|
+
* Only failed Modern Treasury and Checkbook off-ramps can be refunded.
|
|
25816
|
+
*/
|
|
25817
|
+
refund(offRampId: string, input: OffRampRefundRequest): Promise<{
|
|
25818
|
+
id: string;
|
|
25819
|
+
status: "awaiting_funding" | "queued" | "in_flight" | "completed" | "canceled" | "failed" | "reversed" | "refunded";
|
|
25820
|
+
createdAt: string;
|
|
25821
|
+
completedAt: string | null;
|
|
25822
|
+
input: {
|
|
25823
|
+
amount: string;
|
|
25824
|
+
token: string;
|
|
25825
|
+
chain: "ethereum" | "polygon" | "arbitrum" | "base" | "optimism" | "avalanche" | "binance-smart-chain" | "solana" | "bitcoin" | "dash" | "tron" | "sui" | "hyperevm" | "monad" | "sonic" | "unichain";
|
|
25826
|
+
} | null;
|
|
25827
|
+
output: {
|
|
25828
|
+
amount: string;
|
|
25829
|
+
currency: string;
|
|
25830
|
+
accountId: string;
|
|
25831
|
+
accountName: string | null;
|
|
25832
|
+
rail: ("ach_standard" | null) | ("ach_same_day" | null) | ("rtp" | null) | ("wire" | null) | ("eft" | null) | ("sepa" | null) | ("faster_payments" | null) | ("push_to_card" | null) | ("bill_pay" | null) | ("card_deposit" | null);
|
|
25833
|
+
};
|
|
25834
|
+
fiatDestination: ("bank_account" | null) | ("bill" | null) | ("crypto_card" | null);
|
|
25835
|
+
fees: {
|
|
25836
|
+
amount: string;
|
|
25837
|
+
currency: string;
|
|
25838
|
+
} | null;
|
|
25839
|
+
transaction: {
|
|
25840
|
+
hash: string | null;
|
|
25841
|
+
explorerUrl: string | null;
|
|
25842
|
+
} | null;
|
|
25843
|
+
}>;
|
|
25844
|
+
}
|
|
25845
|
+
|
|
24994
25846
|
interface CreateOnrampPayment_createOnrampPayment_depositInstructions {
|
|
24995
25847
|
__typename: 'OnrampPaymentDepositInstructions';
|
|
24996
25848
|
amount: number;
|
|
@@ -25546,6 +26398,7 @@ declare class SpritzApiClient {
|
|
|
25546
26398
|
payment: PaymentService;
|
|
25547
26399
|
onrampPayment: OnrampPaymentService;
|
|
25548
26400
|
onramp: OnrampService;
|
|
26401
|
+
offramp: OfframpService;
|
|
25549
26402
|
virtualAccounts: VirtualAccountsService;
|
|
25550
26403
|
virtualCard: VirtualCardService;
|
|
25551
26404
|
bill: BillService;
|
|
@@ -25622,4 +26475,4 @@ declare class InternalServerError extends APIError {
|
|
|
25622
26475
|
}
|
|
25623
26476
|
|
|
25624
26477
|
export { APIConnectionError, APIConnectionTimeoutError, APIError, APIUserAbortError, AmountMode, AuthenticationError, BadRequestError, BankAccountSubType, BankAccountType, BillType, CardFeatureType, ConflictError, DebitCardNetwork, Environment, InternalServerError, NotFoundError, OfframpFeatureType, OnrampFeatureType, PayableAccountType, PaymentDeliveryMethod, PaymentNetwork, DirectPaymentStatus as PaymentRequestStatus, PaymentStatus, PermissionDeniedError, RateLimitError, RequirementType, SpritzApiClient, SpritzApiError, UnprocessableEntityError, VirtualCardType, onrampSupportedTokens };
|
|
25625
|
-
export type { AccountPayments, AccountPaymentsVariables, AccountPayments_paymentsForAccount, AccountPayments_paymentsForAccount_transaction, AchDebitReturn, AchDebitReturnListQuery, AchDebitReturnListResponse, BankAccountFragment, BankAccountFragment_bankAccountDetails, BankAccountFragment_bankAccountDetails_CanadianBankAccountDetails, BankAccountFragment_bankAccountDetails_USBankAccountDetails, BankAccountFragment_institution, BankAccountFragment_paymentAddresses, BankAccountInput, BillFragment, BillFragment_billAccountDetails, BillFragment_dataSync, BillFragment_institution, BillFragment_paymentAddresses, BypassKycRequest, CategoryAccess, ClientOptions, CompleteLinkingRequest, CreateDepositRequest, CreateDepositWithReturnRequest, CreateDepositWithReturnResponse, CreateDirectPaymentInput, CreateOnrampPaymentInput, CreatePaymentRequestInput, CreateVirtualAccountInput, CreateWebhookParams, CurrentUser, CurrentUser_me, CurrentUser_verification, CurrentUser_verification_identity, CurrentUser_verification_identity_verificationMetadata, CurrentUser_verification_identity_verificationMetadata_details, DebitCardFragment, DebitCardInput, DeleteFundingSourceResponse, Deposit, FullBridgeUser, FundingSource, FundingSourceDepositLimits, GetSolanaPayParams, GetSolanaPayParamsVariables, GetSolanaPayParams_solanaParams, GetSpritzPayParams, GetSpritzPayParamsVariables, GetSpritzPayParams_spritzPayParams, IntegratorWebhook, KycStatus, LinkTokenResponse, OnRamp, OnRampDetail, OnRampListQuery, OnRampListResponse, OnrampPaymentFragment, OnrampPaymentFragment_depositInstructions, OnrampPayments, OnrampPayments_onrampPayments, OnrampPayments_onrampPayments_depositInstructions, PathParams, PathQuery, PathRequestBody, PathResponse, PayableAccountFragment, PayableAccountFragment_BankAccount, PayableAccountFragment_BankAccount_bankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_CanadianBankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_USBankAccountDetails, PayableAccountFragment_BankAccount_dataSync, PayableAccountFragment_BankAccount_institution, PayableAccountFragment_Bill, PayableAccountFragment_Bill_billAccountDetails, PayableAccountFragment_Bill_dataSync, PayableAccountFragment_Bill_institution, PayableAccountFragment_DebitCard, PayableAccountFragment_DebitCard_dataSync, PayableAccountFragment_DebitCard_institution, PayableAccountFragment_VirtualCard, PayableAccountFragment_VirtualCard_billingInfo, PayableAccountFragment_VirtualCard_billingInfo_address, PayableAccountFragment_VirtualCard_dataSync, PayableAccountFragment_VirtualCard_institution, PayableAccountInstitutionFragment, Payment, PaymentFragment, PaymentFragment_transaction, PaymentLimits, PaymentLimitsResponse, PaymentLimitsVariables, PaymentLimits_paymentLimits, PaymentRequestFragment, PaymentRequestPayment, PaymentRequestPaymentVariables, PaymentRequestPayment_paymentForPaymentRequest, PaymentRequestPayment_paymentForPaymentRequest_transaction, PaymentVariables, Payment_payment, Payment_payment_transaction, PopularBillInstitutions, PopularBillInstitutionsVariables, PopularBillInstitutions_popularUSBillInstitutions, PrepareDepositRequest, PrepareDepositResponse, Requirement, operations as RestApiOperations, paths as RestApiPaths, SearchUSBillInstitutions, SearchUSBillInstitutionsVariables, SearchUSBillInstitutions_searchUSBillInstitutions, TokenBalanceFragment, UpdateWebhookParams, UpdateWebhookSecretResponse, UserAccess, UserAccessCapabilities, UserAccess_bridgeUser, UserAccess_me, UserAccess_verification, UserAccess_verification_identity, UserAccess_verification_identity_verificationMetadata, UserAccess_verification_identity_verificationMetadata_details, UserBankAccounts, UserBankAccounts_bankAccounts, UserBankAccounts_bankAccounts_bankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_CanadianBankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_USBankAccountDetails, UserBankAccounts_bankAccounts_institution, UserBankAccounts_bankAccounts_paymentAddresses, UserBills, UserBills_bills, UserBills_bills_billAccountDetails, UserBills_bills_dataSync, UserBills_bills_institution, UserBills_bills_paymentAddresses, UserDebitCards, UserDebitCards_debitCards, UserFragment, UserPayableAccounts, UserPayableAccounts_payableAccounts, UserPayableAccounts_payableAccounts_BankAccount, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_CanadianBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_USBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_dataSync, UserPayableAccounts_payableAccounts_BankAccount_institution, UserPayableAccounts_payableAccounts_Bill, UserPayableAccounts_payableAccounts_Bill_billAccountDetails, UserPayableAccounts_payableAccounts_Bill_dataSync, UserPayableAccounts_payableAccounts_Bill_institution, UserPayableAccounts_payableAccounts_DebitCard, UserPayableAccounts_payableAccounts_DebitCard_dataSync, UserPayableAccounts_payableAccounts_DebitCard_institution, UserPayableAccounts_payableAccounts_VirtualCard, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo_address, UserPayableAccounts_payableAccounts_VirtualCard_dataSync, UserPayableAccounts_payableAccounts_VirtualCard_institution, UserVerification, UserVerification_verification, UserVerification_verification_identity, UserVerification_verification_identity_user, UserVerification_verification_identity_verificationMetadata, UserVerification_verification_identity_verificationMetadata_details, UserVirtualDebitCard, UserVirtualDebitCard_virtualDebitCard, UserVirtualDebitCard_virtualDebitCard_billingInfo, UserVirtualDebitCard_virtualDebitCard_billingInfo_address, UserVirtualDebitCard_virtualDebitCard_paymentAddresses, VerificationFragment, VerificationFragment_identity, VerificationFragment_identity_verificationMetadata, VerificationFragment_identity_verificationMetadata_details, VirtualAccountFragment, VirtualAccountFragment_depositInstructions, VirtualAccounts, VirtualAccounts_virtualAccounts, VirtualAccounts_virtualAccounts_depositInstructions, VirtualDebitCardFragment, VirtualDebitCardFragment_billingInfo, VirtualDebitCardFragment_billingInfo_address, VirtualDebitCardFragment_paymentAddresses, WalletTokenBalances, WalletTokenBalancesVariables, WalletTokenBalances_tokenBalances, WebhookEvent };
|
|
26478
|
+
export type { AccountPayments, AccountPaymentsVariables, AccountPayments_paymentsForAccount, AccountPayments_paymentsForAccount_transaction, AchDebitReturn, AchDebitReturnListQuery, AchDebitReturnListResponse, BankAccountFragment, BankAccountFragment_bankAccountDetails, BankAccountFragment_bankAccountDetails_CanadianBankAccountDetails, BankAccountFragment_bankAccountDetails_USBankAccountDetails, BankAccountFragment_institution, BankAccountFragment_paymentAddresses, BankAccountInput, BillFragment, BillFragment_billAccountDetails, BillFragment_dataSync, BillFragment_institution, BillFragment_paymentAddresses, BypassKycRequest, CategoryAccess, ClientOptions, CompleteLinkingRequest, CreateDepositRequest, CreateDepositWithReturnRequest, CreateDepositWithReturnResponse, CreateDirectPaymentInput, CreateOnrampPaymentInput, CreatePaymentRequestInput, CreateVirtualAccountInput, CreateWebhookParams, CurrentUser, CurrentUser_me, CurrentUser_verification, CurrentUser_verification_identity, CurrentUser_verification_identity_verificationMetadata, CurrentUser_verification_identity_verificationMetadata_details, DebitCardFragment, DebitCardInput, DeleteFundingSourceResponse, Deposit, FullBridgeUser, FundingSource, FundingSourceDepositLimits, GetSolanaPayParams, GetSolanaPayParamsVariables, GetSolanaPayParams_solanaParams, GetSpritzPayParams, GetSpritzPayParamsVariables, GetSpritzPayParams_spritzPayParams, IntegratorWebhook, KycStatus, LinkTokenResponse, OffRampRefundRequest, OffRampRefundResponse, OnRamp, OnRampDetail, OnRampListQuery, OnRampListResponse, OnrampPaymentFragment, OnrampPaymentFragment_depositInstructions, OnrampPayments, OnrampPayments_onrampPayments, OnrampPayments_onrampPayments_depositInstructions, PathParams, PathQuery, PathRequestBody, PathResponse, PayableAccountFragment, PayableAccountFragment_BankAccount, PayableAccountFragment_BankAccount_bankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_CanadianBankAccountDetails, PayableAccountFragment_BankAccount_bankAccountDetails_USBankAccountDetails, PayableAccountFragment_BankAccount_dataSync, PayableAccountFragment_BankAccount_institution, PayableAccountFragment_Bill, PayableAccountFragment_Bill_billAccountDetails, PayableAccountFragment_Bill_dataSync, PayableAccountFragment_Bill_institution, PayableAccountFragment_DebitCard, PayableAccountFragment_DebitCard_dataSync, PayableAccountFragment_DebitCard_institution, PayableAccountFragment_VirtualCard, PayableAccountFragment_VirtualCard_billingInfo, PayableAccountFragment_VirtualCard_billingInfo_address, PayableAccountFragment_VirtualCard_dataSync, PayableAccountFragment_VirtualCard_institution, PayableAccountInstitutionFragment, Payment, PaymentFragment, PaymentFragment_transaction, PaymentLimits, PaymentLimitsResponse, PaymentLimitsVariables, PaymentLimits_paymentLimits, PaymentRequestFragment, PaymentRequestPayment, PaymentRequestPaymentVariables, PaymentRequestPayment_paymentForPaymentRequest, PaymentRequestPayment_paymentForPaymentRequest_transaction, PaymentVariables, Payment_payment, Payment_payment_transaction, PopularBillInstitutions, PopularBillInstitutionsVariables, PopularBillInstitutions_popularUSBillInstitutions, PrepareDepositRequest, PrepareDepositResponse, Requirement, operations as RestApiOperations, paths as RestApiPaths, SearchUSBillInstitutions, SearchUSBillInstitutionsVariables, SearchUSBillInstitutions_searchUSBillInstitutions, TokenBalanceFragment, UpdateWebhookParams, UpdateWebhookSecretResponse, UserAccess, UserAccessCapabilities, UserAccess_bridgeUser, UserAccess_me, UserAccess_verification, UserAccess_verification_identity, UserAccess_verification_identity_verificationMetadata, UserAccess_verification_identity_verificationMetadata_details, UserBankAccounts, UserBankAccounts_bankAccounts, UserBankAccounts_bankAccounts_bankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_CanadianBankAccountDetails, UserBankAccounts_bankAccounts_bankAccountDetails_USBankAccountDetails, UserBankAccounts_bankAccounts_institution, UserBankAccounts_bankAccounts_paymentAddresses, UserBills, UserBills_bills, UserBills_bills_billAccountDetails, UserBills_bills_dataSync, UserBills_bills_institution, UserBills_bills_paymentAddresses, UserDebitCards, UserDebitCards_debitCards, UserFragment, UserPayableAccounts, UserPayableAccounts_payableAccounts, UserPayableAccounts_payableAccounts_BankAccount, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_CanadianBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_bankAccountDetails_USBankAccountDetails, UserPayableAccounts_payableAccounts_BankAccount_dataSync, UserPayableAccounts_payableAccounts_BankAccount_institution, UserPayableAccounts_payableAccounts_Bill, UserPayableAccounts_payableAccounts_Bill_billAccountDetails, UserPayableAccounts_payableAccounts_Bill_dataSync, UserPayableAccounts_payableAccounts_Bill_institution, UserPayableAccounts_payableAccounts_DebitCard, UserPayableAccounts_payableAccounts_DebitCard_dataSync, UserPayableAccounts_payableAccounts_DebitCard_institution, UserPayableAccounts_payableAccounts_VirtualCard, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo, UserPayableAccounts_payableAccounts_VirtualCard_billingInfo_address, UserPayableAccounts_payableAccounts_VirtualCard_dataSync, UserPayableAccounts_payableAccounts_VirtualCard_institution, UserVerification, UserVerification_verification, UserVerification_verification_identity, UserVerification_verification_identity_user, UserVerification_verification_identity_verificationMetadata, UserVerification_verification_identity_verificationMetadata_details, UserVirtualDebitCard, UserVirtualDebitCard_virtualDebitCard, UserVirtualDebitCard_virtualDebitCard_billingInfo, UserVirtualDebitCard_virtualDebitCard_billingInfo_address, UserVirtualDebitCard_virtualDebitCard_paymentAddresses, VerificationFragment, VerificationFragment_identity, VerificationFragment_identity_verificationMetadata, VerificationFragment_identity_verificationMetadata_details, VirtualAccountFragment, VirtualAccountFragment_depositInstructions, VirtualAccounts, VirtualAccounts_virtualAccounts, VirtualAccounts_virtualAccounts_depositInstructions, VirtualDebitCardFragment, VirtualDebitCardFragment_billingInfo, VirtualDebitCardFragment_billingInfo_address, VirtualDebitCardFragment_paymentAddresses, WalletTokenBalances, WalletTokenBalancesVariables, WalletTokenBalances_tokenBalances, WebhookEvent };
|