@domu-ai/kiban-sdk 1.164.0 → 1.165.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 +0 -3
- package/internal/schemas.js +3 -3
- package/package.json +1 -1
package/internal/client.d.ts
CHANGED
|
@@ -158,7 +158,6 @@ export declare const InternalAffirmOutboundPortfolioPost200Status: {
|
|
|
158
158
|
export type InternalAffirmOutboundPortfolioPost200LoansItemRaw = {
|
|
159
159
|
/** @minLength 1 */
|
|
160
160
|
loan_ari: string;
|
|
161
|
-
/** @minLength 1 */
|
|
162
161
|
merchant_name?: string;
|
|
163
162
|
/** @nullable */
|
|
164
163
|
amount_due?: number | null;
|
|
@@ -243,7 +242,6 @@ export declare const InternalAffirmStartPinPost200Status: {
|
|
|
243
242
|
export type InternalAffirmStartPinPost200LoansItemRaw = {
|
|
244
243
|
/** @minLength 1 */
|
|
245
244
|
loan_ari: string;
|
|
246
|
-
/** @minLength 1 */
|
|
247
245
|
merchant_name?: string;
|
|
248
246
|
/** @nullable */
|
|
249
247
|
amount_due?: number | null;
|
|
@@ -328,7 +326,6 @@ export declare const InternalAffirmVerifyPinPortfolioPost200Status: {
|
|
|
328
326
|
export type InternalAffirmVerifyPinPortfolioPost200LoansItemRaw = {
|
|
329
327
|
/** @minLength 1 */
|
|
330
328
|
loan_ari: string;
|
|
331
|
-
/** @minLength 1 */
|
|
332
329
|
merchant_name?: string;
|
|
333
330
|
/** @nullable */
|
|
334
331
|
amount_due?: number | null;
|
package/internal/schemas.js
CHANGED
|
@@ -115,7 +115,7 @@ exports.OutboundPortfolioResponse = zod.object({
|
|
|
115
115
|
"amountDue": zod.number().nullish(),
|
|
116
116
|
"raw": zod.object({
|
|
117
117
|
"loan_ari": zod.string().min(1),
|
|
118
|
-
"merchant_name": zod.string().
|
|
118
|
+
"merchant_name": zod.string().optional(),
|
|
119
119
|
"amount_due": zod.number().nullish(),
|
|
120
120
|
"overdue_amount": zod.number().nullish(),
|
|
121
121
|
"ux_charge_state": zod.string().min(1).optional()
|
|
@@ -157,7 +157,7 @@ exports.StartPinResponse = zod.object({
|
|
|
157
157
|
"amountDue": zod.number().nullish(),
|
|
158
158
|
"raw": zod.object({
|
|
159
159
|
"loan_ari": zod.string().min(1),
|
|
160
|
-
"merchant_name": zod.string().
|
|
160
|
+
"merchant_name": zod.string().optional(),
|
|
161
161
|
"amount_due": zod.number().nullish(),
|
|
162
162
|
"overdue_amount": zod.number().nullish(),
|
|
163
163
|
"ux_charge_state": zod.string().min(1).optional()
|
|
@@ -199,7 +199,7 @@ exports.VerifyPinPortfolioResponse = zod.object({
|
|
|
199
199
|
"amountDue": zod.number().nullish(),
|
|
200
200
|
"raw": zod.object({
|
|
201
201
|
"loan_ari": zod.string().min(1),
|
|
202
|
-
"merchant_name": zod.string().
|
|
202
|
+
"merchant_name": zod.string().optional(),
|
|
203
203
|
"amount_due": zod.number().nullish(),
|
|
204
204
|
"overdue_amount": zod.number().nullish(),
|
|
205
205
|
"ux_charge_state": zod.string().min(1).optional()
|