@domu-ai/kiban-sdk 1.166.0 → 1.167.0
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/internal/client.d.ts +9 -0
- package/internal/schemas.d.ts +42 -0
- package/internal/schemas.js +6 -0
- package/package.json +1 -1
package/internal/client.d.ts
CHANGED
|
@@ -164,6 +164,9 @@ export type InternalAffirmOutboundPortfolioPost200LoansItemRaw = {
|
|
|
164
164
|
amount_due?: number | null;
|
|
165
165
|
/** @nullable */
|
|
166
166
|
overdue_amount?: number | null;
|
|
167
|
+
/** @nullable */
|
|
168
|
+
payoff_amount?: number | null;
|
|
169
|
+
due_date?: string;
|
|
167
170
|
/** @minLength 1 */
|
|
168
171
|
ux_charge_state?: string;
|
|
169
172
|
[key: string]: unknown;
|
|
@@ -248,6 +251,9 @@ export type InternalAffirmStartPinPost200LoansItemRaw = {
|
|
|
248
251
|
amount_due?: number | null;
|
|
249
252
|
/** @nullable */
|
|
250
253
|
overdue_amount?: number | null;
|
|
254
|
+
/** @nullable */
|
|
255
|
+
payoff_amount?: number | null;
|
|
256
|
+
due_date?: string;
|
|
251
257
|
/** @minLength 1 */
|
|
252
258
|
ux_charge_state?: string;
|
|
253
259
|
[key: string]: unknown;
|
|
@@ -332,6 +338,9 @@ export type InternalAffirmVerifyPinPortfolioPost200LoansItemRaw = {
|
|
|
332
338
|
amount_due?: number | null;
|
|
333
339
|
/** @nullable */
|
|
334
340
|
overdue_amount?: number | null;
|
|
341
|
+
/** @nullable */
|
|
342
|
+
payoff_amount?: number | null;
|
|
343
|
+
due_date?: string;
|
|
335
344
|
/** @minLength 1 */
|
|
336
345
|
ux_charge_state?: string;
|
|
337
346
|
[key: string]: unknown;
|
package/internal/schemas.d.ts
CHANGED
|
@@ -159,18 +159,24 @@ export declare const OutboundPortfolioResponse: zod.ZodObject<{
|
|
|
159
159
|
merchant_name: zod.ZodOptional<zod.ZodString>;
|
|
160
160
|
amount_due: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
161
161
|
overdue_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
162
|
+
payoff_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
163
|
+
due_date: zod.ZodOptional<zod.ZodString>;
|
|
162
164
|
ux_charge_state: zod.ZodOptional<zod.ZodString>;
|
|
163
165
|
}, "strip", zod.ZodTypeAny, {
|
|
164
166
|
loan_ari: string;
|
|
165
167
|
merchant_name?: string | undefined;
|
|
166
168
|
amount_due?: number | null | undefined;
|
|
167
169
|
overdue_amount?: number | null | undefined;
|
|
170
|
+
payoff_amount?: number | null | undefined;
|
|
171
|
+
due_date?: string | undefined;
|
|
168
172
|
ux_charge_state?: string | undefined;
|
|
169
173
|
}, {
|
|
170
174
|
loan_ari: string;
|
|
171
175
|
merchant_name?: string | undefined;
|
|
172
176
|
amount_due?: number | null | undefined;
|
|
173
177
|
overdue_amount?: number | null | undefined;
|
|
178
|
+
payoff_amount?: number | null | undefined;
|
|
179
|
+
due_date?: string | undefined;
|
|
174
180
|
ux_charge_state?: string | undefined;
|
|
175
181
|
}>;
|
|
176
182
|
instruments: zod.ZodArray<zod.ZodObject<{
|
|
@@ -213,6 +219,8 @@ export declare const OutboundPortfolioResponse: zod.ZodObject<{
|
|
|
213
219
|
merchant_name?: string | undefined;
|
|
214
220
|
amount_due?: number | null | undefined;
|
|
215
221
|
overdue_amount?: number | null | undefined;
|
|
222
|
+
payoff_amount?: number | null | undefined;
|
|
223
|
+
due_date?: string | undefined;
|
|
216
224
|
ux_charge_state?: string | undefined;
|
|
217
225
|
};
|
|
218
226
|
instruments: {
|
|
@@ -234,6 +242,8 @@ export declare const OutboundPortfolioResponse: zod.ZodObject<{
|
|
|
234
242
|
merchant_name?: string | undefined;
|
|
235
243
|
amount_due?: number | null | undefined;
|
|
236
244
|
overdue_amount?: number | null | undefined;
|
|
245
|
+
payoff_amount?: number | null | undefined;
|
|
246
|
+
due_date?: string | undefined;
|
|
237
247
|
ux_charge_state?: string | undefined;
|
|
238
248
|
};
|
|
239
249
|
instruments: {
|
|
@@ -260,6 +270,8 @@ export declare const OutboundPortfolioResponse: zod.ZodObject<{
|
|
|
260
270
|
merchant_name?: string | undefined;
|
|
261
271
|
amount_due?: number | null | undefined;
|
|
262
272
|
overdue_amount?: number | null | undefined;
|
|
273
|
+
payoff_amount?: number | null | undefined;
|
|
274
|
+
due_date?: string | undefined;
|
|
263
275
|
ux_charge_state?: string | undefined;
|
|
264
276
|
};
|
|
265
277
|
instruments: {
|
|
@@ -288,6 +300,8 @@ export declare const OutboundPortfolioResponse: zod.ZodObject<{
|
|
|
288
300
|
merchant_name?: string | undefined;
|
|
289
301
|
amount_due?: number | null | undefined;
|
|
290
302
|
overdue_amount?: number | null | undefined;
|
|
303
|
+
payoff_amount?: number | null | undefined;
|
|
304
|
+
due_date?: string | undefined;
|
|
291
305
|
ux_charge_state?: string | undefined;
|
|
292
306
|
};
|
|
293
307
|
instruments: {
|
|
@@ -343,18 +357,24 @@ export declare const StartPinResponse: zod.ZodObject<{
|
|
|
343
357
|
merchant_name: zod.ZodOptional<zod.ZodString>;
|
|
344
358
|
amount_due: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
345
359
|
overdue_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
360
|
+
payoff_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
361
|
+
due_date: zod.ZodOptional<zod.ZodString>;
|
|
346
362
|
ux_charge_state: zod.ZodOptional<zod.ZodString>;
|
|
347
363
|
}, "strip", zod.ZodTypeAny, {
|
|
348
364
|
loan_ari: string;
|
|
349
365
|
merchant_name?: string | undefined;
|
|
350
366
|
amount_due?: number | null | undefined;
|
|
351
367
|
overdue_amount?: number | null | undefined;
|
|
368
|
+
payoff_amount?: number | null | undefined;
|
|
369
|
+
due_date?: string | undefined;
|
|
352
370
|
ux_charge_state?: string | undefined;
|
|
353
371
|
}, {
|
|
354
372
|
loan_ari: string;
|
|
355
373
|
merchant_name?: string | undefined;
|
|
356
374
|
amount_due?: number | null | undefined;
|
|
357
375
|
overdue_amount?: number | null | undefined;
|
|
376
|
+
payoff_amount?: number | null | undefined;
|
|
377
|
+
due_date?: string | undefined;
|
|
358
378
|
ux_charge_state?: string | undefined;
|
|
359
379
|
}>;
|
|
360
380
|
instruments: zod.ZodArray<zod.ZodObject<{
|
|
@@ -397,6 +417,8 @@ export declare const StartPinResponse: zod.ZodObject<{
|
|
|
397
417
|
merchant_name?: string | undefined;
|
|
398
418
|
amount_due?: number | null | undefined;
|
|
399
419
|
overdue_amount?: number | null | undefined;
|
|
420
|
+
payoff_amount?: number | null | undefined;
|
|
421
|
+
due_date?: string | undefined;
|
|
400
422
|
ux_charge_state?: string | undefined;
|
|
401
423
|
};
|
|
402
424
|
instruments: {
|
|
@@ -418,6 +440,8 @@ export declare const StartPinResponse: zod.ZodObject<{
|
|
|
418
440
|
merchant_name?: string | undefined;
|
|
419
441
|
amount_due?: number | null | undefined;
|
|
420
442
|
overdue_amount?: number | null | undefined;
|
|
443
|
+
payoff_amount?: number | null | undefined;
|
|
444
|
+
due_date?: string | undefined;
|
|
421
445
|
ux_charge_state?: string | undefined;
|
|
422
446
|
};
|
|
423
447
|
instruments: {
|
|
@@ -444,6 +468,8 @@ export declare const StartPinResponse: zod.ZodObject<{
|
|
|
444
468
|
merchant_name?: string | undefined;
|
|
445
469
|
amount_due?: number | null | undefined;
|
|
446
470
|
overdue_amount?: number | null | undefined;
|
|
471
|
+
payoff_amount?: number | null | undefined;
|
|
472
|
+
due_date?: string | undefined;
|
|
447
473
|
ux_charge_state?: string | undefined;
|
|
448
474
|
};
|
|
449
475
|
instruments: {
|
|
@@ -472,6 +498,8 @@ export declare const StartPinResponse: zod.ZodObject<{
|
|
|
472
498
|
merchant_name?: string | undefined;
|
|
473
499
|
amount_due?: number | null | undefined;
|
|
474
500
|
overdue_amount?: number | null | undefined;
|
|
501
|
+
payoff_amount?: number | null | undefined;
|
|
502
|
+
due_date?: string | undefined;
|
|
475
503
|
ux_charge_state?: string | undefined;
|
|
476
504
|
};
|
|
477
505
|
instruments: {
|
|
@@ -527,18 +555,24 @@ export declare const VerifyPinPortfolioResponse: zod.ZodObject<{
|
|
|
527
555
|
merchant_name: zod.ZodOptional<zod.ZodString>;
|
|
528
556
|
amount_due: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
529
557
|
overdue_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
558
|
+
payoff_amount: zod.ZodOptional<zod.ZodNullable<zod.ZodNumber>>;
|
|
559
|
+
due_date: zod.ZodOptional<zod.ZodString>;
|
|
530
560
|
ux_charge_state: zod.ZodOptional<zod.ZodString>;
|
|
531
561
|
}, "strip", zod.ZodTypeAny, {
|
|
532
562
|
loan_ari: string;
|
|
533
563
|
merchant_name?: string | undefined;
|
|
534
564
|
amount_due?: number | null | undefined;
|
|
535
565
|
overdue_amount?: number | null | undefined;
|
|
566
|
+
payoff_amount?: number | null | undefined;
|
|
567
|
+
due_date?: string | undefined;
|
|
536
568
|
ux_charge_state?: string | undefined;
|
|
537
569
|
}, {
|
|
538
570
|
loan_ari: string;
|
|
539
571
|
merchant_name?: string | undefined;
|
|
540
572
|
amount_due?: number | null | undefined;
|
|
541
573
|
overdue_amount?: number | null | undefined;
|
|
574
|
+
payoff_amount?: number | null | undefined;
|
|
575
|
+
due_date?: string | undefined;
|
|
542
576
|
ux_charge_state?: string | undefined;
|
|
543
577
|
}>;
|
|
544
578
|
instruments: zod.ZodArray<zod.ZodObject<{
|
|
@@ -581,6 +615,8 @@ export declare const VerifyPinPortfolioResponse: zod.ZodObject<{
|
|
|
581
615
|
merchant_name?: string | undefined;
|
|
582
616
|
amount_due?: number | null | undefined;
|
|
583
617
|
overdue_amount?: number | null | undefined;
|
|
618
|
+
payoff_amount?: number | null | undefined;
|
|
619
|
+
due_date?: string | undefined;
|
|
584
620
|
ux_charge_state?: string | undefined;
|
|
585
621
|
};
|
|
586
622
|
instruments: {
|
|
@@ -602,6 +638,8 @@ export declare const VerifyPinPortfolioResponse: zod.ZodObject<{
|
|
|
602
638
|
merchant_name?: string | undefined;
|
|
603
639
|
amount_due?: number | null | undefined;
|
|
604
640
|
overdue_amount?: number | null | undefined;
|
|
641
|
+
payoff_amount?: number | null | undefined;
|
|
642
|
+
due_date?: string | undefined;
|
|
605
643
|
ux_charge_state?: string | undefined;
|
|
606
644
|
};
|
|
607
645
|
instruments: {
|
|
@@ -628,6 +666,8 @@ export declare const VerifyPinPortfolioResponse: zod.ZodObject<{
|
|
|
628
666
|
merchant_name?: string | undefined;
|
|
629
667
|
amount_due?: number | null | undefined;
|
|
630
668
|
overdue_amount?: number | null | undefined;
|
|
669
|
+
payoff_amount?: number | null | undefined;
|
|
670
|
+
due_date?: string | undefined;
|
|
631
671
|
ux_charge_state?: string | undefined;
|
|
632
672
|
};
|
|
633
673
|
instruments: {
|
|
@@ -656,6 +696,8 @@ export declare const VerifyPinPortfolioResponse: zod.ZodObject<{
|
|
|
656
696
|
merchant_name?: string | undefined;
|
|
657
697
|
amount_due?: number | null | undefined;
|
|
658
698
|
overdue_amount?: number | null | undefined;
|
|
699
|
+
payoff_amount?: number | null | undefined;
|
|
700
|
+
due_date?: string | undefined;
|
|
659
701
|
ux_charge_state?: string | undefined;
|
|
660
702
|
};
|
|
661
703
|
instruments: {
|
package/internal/schemas.js
CHANGED
|
@@ -118,6 +118,8 @@ exports.OutboundPortfolioResponse = zod.object({
|
|
|
118
118
|
"merchant_name": zod.string().optional(),
|
|
119
119
|
"amount_due": zod.number().nullish(),
|
|
120
120
|
"overdue_amount": zod.number().nullish(),
|
|
121
|
+
"payoff_amount": zod.number().nullish(),
|
|
122
|
+
"due_date": zod.string().optional(),
|
|
121
123
|
"ux_charge_state": zod.string().min(1).optional()
|
|
122
124
|
}),
|
|
123
125
|
"instruments": zod.array(zod.object({
|
|
@@ -160,6 +162,8 @@ exports.StartPinResponse = zod.object({
|
|
|
160
162
|
"merchant_name": zod.string().optional(),
|
|
161
163
|
"amount_due": zod.number().nullish(),
|
|
162
164
|
"overdue_amount": zod.number().nullish(),
|
|
165
|
+
"payoff_amount": zod.number().nullish(),
|
|
166
|
+
"due_date": zod.string().optional(),
|
|
163
167
|
"ux_charge_state": zod.string().min(1).optional()
|
|
164
168
|
}),
|
|
165
169
|
"instruments": zod.array(zod.object({
|
|
@@ -202,6 +206,8 @@ exports.VerifyPinPortfolioResponse = zod.object({
|
|
|
202
206
|
"merchant_name": zod.string().optional(),
|
|
203
207
|
"amount_due": zod.number().nullish(),
|
|
204
208
|
"overdue_amount": zod.number().nullish(),
|
|
209
|
+
"payoff_amount": zod.number().nullish(),
|
|
210
|
+
"due_date": zod.string().optional(),
|
|
205
211
|
"ux_charge_state": zod.string().min(1).optional()
|
|
206
212
|
}),
|
|
207
213
|
"instruments": zod.array(zod.object({
|