@domu-ai/kiban-sdk 1.166.0 → 1.167.1

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.
@@ -54,6 +54,11 @@ export declare const InternalActionsPostBodyActionType: {
54
54
  readonly targetenrich: "target.enrich";
55
55
  readonly smssend: "sms.send";
56
56
  readonly transferprepareContact: "transfer.prepareContact";
57
+ readonly agentsessionlogin: "agentsession.login";
58
+ readonly screenpopget: "screenpop.get";
59
+ readonly termcodesave: "termcode.save";
60
+ readonly docdbpost: "docdb.post";
61
+ readonly sipheaderextract: "sipheader.extract";
57
62
  };
58
63
  export type InternalActionsPostBody = {
59
64
  /** Action type to register */
@@ -164,6 +169,9 @@ export type InternalAffirmOutboundPortfolioPost200LoansItemRaw = {
164
169
  amount_due?: number | null;
165
170
  /** @nullable */
166
171
  overdue_amount?: number | null;
172
+ /** @nullable */
173
+ payoff_amount?: number | null;
174
+ due_date?: string;
167
175
  /** @minLength 1 */
168
176
  ux_charge_state?: string;
169
177
  [key: string]: unknown;
@@ -248,6 +256,9 @@ export type InternalAffirmStartPinPost200LoansItemRaw = {
248
256
  amount_due?: number | null;
249
257
  /** @nullable */
250
258
  overdue_amount?: number | null;
259
+ /** @nullable */
260
+ payoff_amount?: number | null;
261
+ due_date?: string;
251
262
  /** @minLength 1 */
252
263
  ux_charge_state?: string;
253
264
  [key: string]: unknown;
@@ -332,6 +343,9 @@ export type InternalAffirmVerifyPinPortfolioPost200LoansItemRaw = {
332
343
  amount_due?: number | null;
333
344
  /** @nullable */
334
345
  overdue_amount?: number | null;
346
+ /** @nullable */
347
+ payoff_amount?: number | null;
348
+ due_date?: string;
335
349
  /** @minLength 1 */
336
350
  ux_charge_state?: string;
337
351
  [key: string]: unknown;
@@ -40,6 +40,11 @@ exports.InternalActionsPostBodyActionType = {
40
40
  targetenrich: 'target.enrich',
41
41
  smssend: 'sms.send',
42
42
  transferprepareContact: 'transfer.prepareContact',
43
+ agentsessionlogin: 'agentsession.login',
44
+ screenpopget: 'screenpop.get',
45
+ termcodesave: 'termcode.save',
46
+ docdbpost: 'docdb.post',
47
+ sipheaderextract: 'sipheader.extract',
43
48
  };
44
49
  exports.InternalAffirmOutboundPortfolioPost200Status = {
45
50
  verified: 'verified',
@@ -87,16 +87,16 @@ export declare const CreateQueryParams: zod.ZodObject<{
87
87
  export declare const createBodyProviderMax = 50;
88
88
  export declare const createBodyIsEnabledDefault = true;
89
89
  export declare const CreateBody: zod.ZodObject<{
90
- actionType: zod.ZodEnum<["analysis.completed", "interaction.start", "interaction.end", "contact.get", "contact.update", "payment.notify", "payment.delegate", "payment.chargeCardOnFile", "target.enrich", "sms.send", "transfer.prepareContact"]>;
90
+ actionType: zod.ZodEnum<["analysis.completed", "interaction.start", "interaction.end", "contact.get", "contact.update", "payment.notify", "payment.delegate", "payment.chargeCardOnFile", "target.enrich", "sms.send", "transfer.prepareContact", "agentsession.login", "screenpop.get", "termcode.save", "docdb.post", "sipheader.extract"]>;
91
91
  provider: zod.ZodString;
92
92
  isEnabled: zod.ZodDefault<zod.ZodBoolean>;
93
93
  }, "strip", zod.ZodTypeAny, {
94
94
  provider: string;
95
- actionType: "analysis.completed" | "interaction.start" | "interaction.end" | "contact.get" | "contact.update" | "payment.notify" | "payment.delegate" | "payment.chargeCardOnFile" | "target.enrich" | "sms.send" | "transfer.prepareContact";
95
+ actionType: "analysis.completed" | "interaction.start" | "interaction.end" | "contact.get" | "contact.update" | "payment.notify" | "payment.delegate" | "payment.chargeCardOnFile" | "target.enrich" | "sms.send" | "transfer.prepareContact" | "agentsession.login" | "screenpop.get" | "termcode.save" | "docdb.post" | "sipheader.extract";
96
96
  isEnabled: boolean;
97
97
  }, {
98
98
  provider: string;
99
- actionType: "analysis.completed" | "interaction.start" | "interaction.end" | "contact.get" | "contact.update" | "payment.notify" | "payment.delegate" | "payment.chargeCardOnFile" | "target.enrich" | "sms.send" | "transfer.prepareContact";
99
+ actionType: "analysis.completed" | "interaction.start" | "interaction.end" | "contact.get" | "contact.update" | "payment.notify" | "payment.delegate" | "payment.chargeCardOnFile" | "target.enrich" | "sms.send" | "transfer.prepareContact" | "agentsession.login" | "screenpop.get" | "termcode.save" | "docdb.post" | "sipheader.extract";
100
100
  isEnabled?: boolean | undefined;
101
101
  }>;
102
102
  /**
@@ -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: {
@@ -74,7 +74,7 @@ exports.CreateQueryParams = zod.object({
74
74
  exports.createBodyProviderMax = 50;
75
75
  exports.createBodyIsEnabledDefault = true;
76
76
  exports.CreateBody = zod.object({
77
- "actionType": zod.enum(['analysis.completed', 'interaction.start', 'interaction.end', 'contact.get', 'contact.update', 'payment.notify', 'payment.delegate', 'payment.chargeCardOnFile', 'target.enrich', 'sms.send', 'transfer.prepareContact']).describe('Action type to register'),
77
+ "actionType": zod.enum(['analysis.completed', 'interaction.start', 'interaction.end', 'contact.get', 'contact.update', 'payment.notify', 'payment.delegate', 'payment.chargeCardOnFile', 'target.enrich', 'sms.send', 'transfer.prepareContact', 'agentsession.login', 'screenpop.get', 'termcode.save', 'docdb.post', 'sipheader.extract']).describe('Action type to register'),
78
78
  "provider": zod.string().min(1).max(exports.createBodyProviderMax).describe('Provider name (e.g. \'sst\', \'livevox\', \'nubank\')'),
79
79
  "isEnabled": zod.boolean().default(exports.createBodyIsEnabledDefault).describe('Whether the action is enabled')
80
80
  });
@@ -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({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domu-ai/kiban-sdk",
3
- "version": "1.166.0",
3
+ "version": "1.167.1",
4
4
  "description": "Generated TypeScript SDKs for Kiban public, internal, and dashboard APIs.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./index.js",