@financeable/aggregation 0.8.0 → 0.8.3
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/README.md +1 -0
- package/docs/sdks/applications/README.md +2 -2
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/commercialsecuredloanassetattributes.d.ts +164 -18
- package/models/components/commercialsecuredloanassetattributes.d.ts.map +1 -1
- package/models/components/commercialsecuredloanassetattributes.js +163 -13
- package/models/components/commercialsecuredloanassetattributes.js.map +1 -1
- package/models/components/commercialsecuredloantypeofsale.d.ts +40 -0
- package/models/components/commercialsecuredloantypeofsale.d.ts.map +1 -0
- package/models/components/commercialsecuredloantypeofsale.js +64 -0
- package/models/components/commercialsecuredloantypeofsale.js.map +1 -0
- package/models/components/consumersecuredloanassetattributes.d.ts +164 -18
- package/models/components/consumersecuredloanassetattributes.d.ts.map +1 -1
- package/models/components/consumersecuredloanassetattributes.js +163 -13
- package/models/components/consumersecuredloanassetattributes.js.map +1 -1
- package/models/components/consumersecuredloanconsumerapplicationrelationships.d.ts +199 -21
- package/models/components/consumersecuredloanconsumerapplicationrelationships.d.ts.map +1 -1
- package/models/components/consumersecuredloanconsumerapplicationrelationships.js +192 -25
- package/models/components/consumersecuredloanconsumerapplicationrelationships.js.map +1 -1
- package/models/components/consumersecuredloantypeofsale.d.ts +40 -0
- package/models/components/consumersecuredloantypeofsale.d.ts.map +1 -0
- package/models/components/consumersecuredloantypeofsale.js +64 -0
- package/models/components/consumersecuredloantypeofsale.js.map +1 -0
- package/models/components/customerattributes.d.ts +3 -0
- package/models/components/customerattributes.d.ts.map +1 -1
- package/models/components/customerattributes.js +3 -0
- package/models/components/customerattributes.js.map +1 -1
- package/models/components/expenseattributes.d.ts +38 -0
- package/models/components/expenseattributes.d.ts.map +1 -0
- package/models/components/expenseattributes.js +78 -0
- package/models/components/expenseattributes.js.map +1 -0
- package/models/components/expensefrequency.d.ts +31 -0
- package/models/components/expensefrequency.d.ts.map +1 -0
- package/models/components/expensefrequency.js +61 -0
- package/models/components/expensefrequency.js.map +1 -0
- package/models/components/expensetype.d.ts +79 -0
- package/models/components/expensetype.d.ts.map +1 -0
- package/models/components/expensetype.js +78 -0
- package/models/components/expensetype.js.map +1 -0
- package/models/components/incomeattributes.d.ts +38 -0
- package/models/components/incomeattributes.d.ts.map +1 -0
- package/models/components/incomeattributes.js +78 -0
- package/models/components/incomeattributes.js.map +1 -0
- package/models/components/incomefrequency.d.ts +34 -0
- package/models/components/incomefrequency.d.ts.map +1 -0
- package/models/components/incomefrequency.js +62 -0
- package/models/components/incomefrequency.js.map +1 -0
- package/models/components/incometype.d.ts +49 -0
- package/models/components/incometype.d.ts.map +1 -0
- package/models/components/incometype.js +68 -0
- package/models/components/incometype.js.map +1 -0
- package/models/components/index.d.ts +8 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +8 -0
- package/models/components/index.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/commercialsecuredloanassetattributes.ts +347 -30
- package/src/models/components/commercialsecuredloantypeofsale.ts +39 -0
- package/src/models/components/consumersecuredloanassetattributes.ts +474 -30
- package/src/models/components/consumersecuredloanconsumerapplicationrelationships.ts +436 -35
- package/src/models/components/consumersecuredloantypeofsale.ts +39 -0
- package/src/models/components/customerattributes.ts +10 -0
- package/src/models/components/expenseattributes.ts +94 -0
- package/src/models/components/expensefrequency.ts +34 -0
- package/src/models/components/expensetype.ts +48 -0
- package/src/models/components/incomeattributes.ts +94 -0
- package/src/models/components/incomefrequency.ts +35 -0
- package/src/models/components/incometype.ts +38 -0
- package/src/models/components/index.ts +8 -0
|
@@ -37,6 +37,18 @@ import {
|
|
|
37
37
|
CustomerLiabilityAttributes$Outbound,
|
|
38
38
|
CustomerLiabilityAttributes$outboundSchema,
|
|
39
39
|
} from "./customerliabilityattributes.js";
|
|
40
|
+
import {
|
|
41
|
+
ExpenseAttributes,
|
|
42
|
+
ExpenseAttributes$inboundSchema,
|
|
43
|
+
ExpenseAttributes$Outbound,
|
|
44
|
+
ExpenseAttributes$outboundSchema,
|
|
45
|
+
} from "./expenseattributes.js";
|
|
46
|
+
import {
|
|
47
|
+
IncomeAttributes,
|
|
48
|
+
IncomeAttributes$inboundSchema,
|
|
49
|
+
IncomeAttributes$Outbound,
|
|
50
|
+
IncomeAttributes$outboundSchema,
|
|
51
|
+
} from "./incomeattributes.js";
|
|
40
52
|
import {
|
|
41
53
|
LinkObject,
|
|
42
54
|
LinkObject$inboundSchema,
|
|
@@ -104,7 +116,7 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsAddresses = {
|
|
|
104
116
|
|
|
105
117
|
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsType =
|
|
106
118
|
{
|
|
107
|
-
|
|
119
|
+
Income: "income",
|
|
108
120
|
} as const;
|
|
109
121
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsType =
|
|
110
122
|
ClosedEnum<
|
|
@@ -115,6 +127,30 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData
|
|
|
115
127
|
{
|
|
116
128
|
type:
|
|
117
129
|
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsType;
|
|
130
|
+
attributes: IncomeAttributes;
|
|
131
|
+
links?: { [k: string]: LinkObject } | undefined;
|
|
132
|
+
meta?: { [k: string]: any } | undefined;
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
export type Income = {
|
|
136
|
+
data: Array<
|
|
137
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData
|
|
138
|
+
>;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType =
|
|
142
|
+
{
|
|
143
|
+
CustomerLiabilities: "customer-liabilities",
|
|
144
|
+
} as const;
|
|
145
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType =
|
|
146
|
+
ClosedEnum<
|
|
147
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType
|
|
148
|
+
>;
|
|
149
|
+
|
|
150
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData =
|
|
151
|
+
{
|
|
152
|
+
type:
|
|
153
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType;
|
|
118
154
|
attributes: CustomerLiabilityAttributes;
|
|
119
155
|
links?: { [k: string]: LinkObject } | undefined;
|
|
120
156
|
meta?: { [k: string]: any } | undefined;
|
|
@@ -122,7 +158,7 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData
|
|
|
122
158
|
|
|
123
159
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities = {
|
|
124
160
|
data: Array<
|
|
125
|
-
|
|
161
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData
|
|
126
162
|
>;
|
|
127
163
|
};
|
|
128
164
|
|
|
@@ -135,7 +171,7 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRela
|
|
|
135
171
|
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsType
|
|
136
172
|
>;
|
|
137
173
|
|
|
138
|
-
export type
|
|
174
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData =
|
|
139
175
|
{
|
|
140
176
|
type:
|
|
141
177
|
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsType;
|
|
@@ -146,7 +182,31 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRela
|
|
|
146
182
|
|
|
147
183
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsAssets = {
|
|
148
184
|
data: Array<
|
|
149
|
-
|
|
185
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData
|
|
186
|
+
>;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType =
|
|
190
|
+
{
|
|
191
|
+
Expenses: "expenses",
|
|
192
|
+
} as const;
|
|
193
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType =
|
|
194
|
+
ClosedEnum<
|
|
195
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType
|
|
196
|
+
>;
|
|
197
|
+
|
|
198
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData =
|
|
199
|
+
{
|
|
200
|
+
type:
|
|
201
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType;
|
|
202
|
+
attributes: ExpenseAttributes;
|
|
203
|
+
links?: { [k: string]: LinkObject } | undefined;
|
|
204
|
+
meta?: { [k: string]: any } | undefined;
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
export type Expenses = {
|
|
208
|
+
data: Array<
|
|
209
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData
|
|
150
210
|
>;
|
|
151
211
|
};
|
|
152
212
|
|
|
@@ -154,12 +214,14 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsRelationships = {
|
|
|
154
214
|
addresses?:
|
|
155
215
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsAddresses
|
|
156
216
|
| undefined;
|
|
217
|
+
income?: Income | undefined;
|
|
157
218
|
liabilities?:
|
|
158
219
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities
|
|
159
220
|
| undefined;
|
|
160
221
|
assets?:
|
|
161
222
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsAssets
|
|
162
223
|
| undefined;
|
|
224
|
+
expenses?: Expenses | undefined;
|
|
163
225
|
};
|
|
164
226
|
|
|
165
227
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersData = {
|
|
@@ -633,7 +695,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataDat
|
|
|
633
695
|
> = z.object({
|
|
634
696
|
type:
|
|
635
697
|
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsType$inboundSchema,
|
|
636
|
-
attributes:
|
|
698
|
+
attributes: IncomeAttributes$inboundSchema,
|
|
637
699
|
links: z.record(LinkObject$inboundSchema).optional(),
|
|
638
700
|
meta: z.record(z.any()).optional(),
|
|
639
701
|
});
|
|
@@ -642,7 +704,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataDat
|
|
|
642
704
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData$Outbound =
|
|
643
705
|
{
|
|
644
706
|
type: string;
|
|
645
|
-
attributes:
|
|
707
|
+
attributes: IncomeAttributes$Outbound;
|
|
646
708
|
links?: { [k: string]: LinkObject$Outbound } | undefined;
|
|
647
709
|
meta?: { [k: string]: any } | undefined;
|
|
648
710
|
};
|
|
@@ -656,7 +718,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataDat
|
|
|
656
718
|
> = z.object({
|
|
657
719
|
type:
|
|
658
720
|
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsType$outboundSchema,
|
|
659
|
-
attributes:
|
|
721
|
+
attributes: IncomeAttributes$outboundSchema,
|
|
660
722
|
links: z.record(LinkObject$outboundSchema).optional(),
|
|
661
723
|
meta: z.record(z.any()).optional(),
|
|
662
724
|
});
|
|
@@ -704,6 +766,171 @@ export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersData
|
|
|
704
766
|
);
|
|
705
767
|
}
|
|
706
768
|
|
|
769
|
+
/** @internal */
|
|
770
|
+
export const Income$inboundSchema: z.ZodType<Income, z.ZodTypeDef, unknown> = z
|
|
771
|
+
.object({
|
|
772
|
+
data: z.array(
|
|
773
|
+
z.lazy(() =>
|
|
774
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData$inboundSchema
|
|
775
|
+
),
|
|
776
|
+
),
|
|
777
|
+
});
|
|
778
|
+
|
|
779
|
+
/** @internal */
|
|
780
|
+
export type Income$Outbound = {
|
|
781
|
+
data: Array<
|
|
782
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData$Outbound
|
|
783
|
+
>;
|
|
784
|
+
};
|
|
785
|
+
|
|
786
|
+
/** @internal */
|
|
787
|
+
export const Income$outboundSchema: z.ZodType<
|
|
788
|
+
Income$Outbound,
|
|
789
|
+
z.ZodTypeDef,
|
|
790
|
+
Income
|
|
791
|
+
> = z.object({
|
|
792
|
+
data: z.array(
|
|
793
|
+
z.lazy(() =>
|
|
794
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataData$outboundSchema
|
|
795
|
+
),
|
|
796
|
+
),
|
|
797
|
+
});
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* @internal
|
|
801
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
802
|
+
*/
|
|
803
|
+
export namespace Income$ {
|
|
804
|
+
/** @deprecated use `Income$inboundSchema` instead. */
|
|
805
|
+
export const inboundSchema = Income$inboundSchema;
|
|
806
|
+
/** @deprecated use `Income$outboundSchema` instead. */
|
|
807
|
+
export const outboundSchema = Income$outboundSchema;
|
|
808
|
+
/** @deprecated use `Income$Outbound` instead. */
|
|
809
|
+
export type Outbound = Income$Outbound;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
export function incomeToJSON(income: Income): string {
|
|
813
|
+
return JSON.stringify(Income$outboundSchema.parse(income));
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
export function incomeFromJSON(
|
|
817
|
+
jsonString: string,
|
|
818
|
+
): SafeParseResult<Income, SDKValidationError> {
|
|
819
|
+
return safeParse(
|
|
820
|
+
jsonString,
|
|
821
|
+
(x) => Income$inboundSchema.parse(JSON.parse(x)),
|
|
822
|
+
`Failed to parse 'Income' from JSON`,
|
|
823
|
+
);
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
/** @internal */
|
|
827
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$inboundSchema:
|
|
828
|
+
z.ZodNativeEnum<
|
|
829
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType
|
|
830
|
+
> = z.nativeEnum(
|
|
831
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType,
|
|
832
|
+
);
|
|
833
|
+
|
|
834
|
+
/** @internal */
|
|
835
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$outboundSchema:
|
|
836
|
+
z.ZodNativeEnum<
|
|
837
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType
|
|
838
|
+
> =
|
|
839
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$inboundSchema;
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* @internal
|
|
843
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
844
|
+
*/
|
|
845
|
+
export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$ {
|
|
846
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$inboundSchema` instead. */
|
|
847
|
+
export const inboundSchema =
|
|
848
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$inboundSchema;
|
|
849
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$outboundSchema` instead. */
|
|
850
|
+
export const outboundSchema =
|
|
851
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$outboundSchema;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
/** @internal */
|
|
855
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$inboundSchema:
|
|
856
|
+
z.ZodType<
|
|
857
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData,
|
|
858
|
+
z.ZodTypeDef,
|
|
859
|
+
unknown
|
|
860
|
+
> = z.object({
|
|
861
|
+
type:
|
|
862
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$inboundSchema,
|
|
863
|
+
attributes: CustomerLiabilityAttributes$inboundSchema,
|
|
864
|
+
links: z.record(LinkObject$inboundSchema).optional(),
|
|
865
|
+
meta: z.record(z.any()).optional(),
|
|
866
|
+
});
|
|
867
|
+
|
|
868
|
+
/** @internal */
|
|
869
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$Outbound =
|
|
870
|
+
{
|
|
871
|
+
type: string;
|
|
872
|
+
attributes: CustomerLiabilityAttributes$Outbound;
|
|
873
|
+
links?: { [k: string]: LinkObject$Outbound } | undefined;
|
|
874
|
+
meta?: { [k: string]: any } | undefined;
|
|
875
|
+
};
|
|
876
|
+
|
|
877
|
+
/** @internal */
|
|
878
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$outboundSchema:
|
|
879
|
+
z.ZodType<
|
|
880
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$Outbound,
|
|
881
|
+
z.ZodTypeDef,
|
|
882
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData
|
|
883
|
+
> = z.object({
|
|
884
|
+
type:
|
|
885
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsLiabilitiesType$outboundSchema,
|
|
886
|
+
attributes: CustomerLiabilityAttributes$outboundSchema,
|
|
887
|
+
links: z.record(LinkObject$outboundSchema).optional(),
|
|
888
|
+
meta: z.record(z.any()).optional(),
|
|
889
|
+
});
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* @internal
|
|
893
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
894
|
+
*/
|
|
895
|
+
export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$ {
|
|
896
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$inboundSchema` instead. */
|
|
897
|
+
export const inboundSchema =
|
|
898
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$inboundSchema;
|
|
899
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$outboundSchema` instead. */
|
|
900
|
+
export const outboundSchema =
|
|
901
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$outboundSchema;
|
|
902
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$Outbound` instead. */
|
|
903
|
+
export type Outbound =
|
|
904
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$Outbound;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsDataToJSON(
|
|
908
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData:
|
|
909
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData,
|
|
910
|
+
): string {
|
|
911
|
+
return JSON.stringify(
|
|
912
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$outboundSchema
|
|
913
|
+
.parse(
|
|
914
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData,
|
|
915
|
+
),
|
|
916
|
+
);
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsDataFromJSON(
|
|
920
|
+
jsonString: string,
|
|
921
|
+
): SafeParseResult<
|
|
922
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData,
|
|
923
|
+
SDKValidationError
|
|
924
|
+
> {
|
|
925
|
+
return safeParse(
|
|
926
|
+
jsonString,
|
|
927
|
+
(x) =>
|
|
928
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$inboundSchema
|
|
929
|
+
.parse(JSON.parse(x)),
|
|
930
|
+
`Failed to parse 'ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData' from JSON`,
|
|
931
|
+
);
|
|
932
|
+
}
|
|
933
|
+
|
|
707
934
|
/** @internal */
|
|
708
935
|
export const ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$inboundSchema:
|
|
709
936
|
z.ZodType<
|
|
@@ -713,7 +940,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$inbo
|
|
|
713
940
|
> = z.object({
|
|
714
941
|
data: z.array(
|
|
715
942
|
z.lazy(() =>
|
|
716
|
-
|
|
943
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$inboundSchema
|
|
717
944
|
),
|
|
718
945
|
),
|
|
719
946
|
});
|
|
@@ -722,7 +949,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$inbo
|
|
|
722
949
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$Outbound =
|
|
723
950
|
{
|
|
724
951
|
data: Array<
|
|
725
|
-
|
|
952
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$Outbound
|
|
726
953
|
>;
|
|
727
954
|
};
|
|
728
955
|
|
|
@@ -735,7 +962,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$outb
|
|
|
735
962
|
> = z.object({
|
|
736
963
|
data: z.array(
|
|
737
964
|
z.lazy(() =>
|
|
738
|
-
|
|
965
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsData$outboundSchema
|
|
739
966
|
),
|
|
740
967
|
),
|
|
741
968
|
});
|
|
@@ -810,9 +1037,9 @@ export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDat
|
|
|
810
1037
|
}
|
|
811
1038
|
|
|
812
1039
|
/** @internal */
|
|
813
|
-
export const
|
|
1040
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$inboundSchema:
|
|
814
1041
|
z.ZodType<
|
|
815
|
-
|
|
1042
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData,
|
|
816
1043
|
z.ZodTypeDef,
|
|
817
1044
|
unknown
|
|
818
1045
|
> = z.object({
|
|
@@ -824,7 +1051,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRel
|
|
|
824
1051
|
});
|
|
825
1052
|
|
|
826
1053
|
/** @internal */
|
|
827
|
-
export type
|
|
1054
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$Outbound =
|
|
828
1055
|
{
|
|
829
1056
|
type: string;
|
|
830
1057
|
attributes: CustomerAssetAttributes$Outbound;
|
|
@@ -833,11 +1060,11 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRela
|
|
|
833
1060
|
};
|
|
834
1061
|
|
|
835
1062
|
/** @internal */
|
|
836
|
-
export const
|
|
1063
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$outboundSchema:
|
|
837
1064
|
z.ZodType<
|
|
838
|
-
|
|
1065
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$Outbound,
|
|
839
1066
|
z.ZodTypeDef,
|
|
840
|
-
|
|
1067
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData
|
|
841
1068
|
> = z.object({
|
|
842
1069
|
type:
|
|
843
1070
|
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsType$outboundSchema,
|
|
@@ -850,42 +1077,42 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRel
|
|
|
850
1077
|
* @internal
|
|
851
1078
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
852
1079
|
*/
|
|
853
|
-
export namespace
|
|
854
|
-
/** @deprecated use `
|
|
1080
|
+
export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$ {
|
|
1081
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$inboundSchema` instead. */
|
|
855
1082
|
export const inboundSchema =
|
|
856
|
-
|
|
857
|
-
/** @deprecated use `
|
|
1083
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$inboundSchema;
|
|
1084
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$outboundSchema` instead. */
|
|
858
1085
|
export const outboundSchema =
|
|
859
|
-
|
|
860
|
-
/** @deprecated use `
|
|
1086
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$outboundSchema;
|
|
1087
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$Outbound` instead. */
|
|
861
1088
|
export type Outbound =
|
|
862
|
-
|
|
1089
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$Outbound;
|
|
863
1090
|
}
|
|
864
1091
|
|
|
865
|
-
export function
|
|
866
|
-
|
|
867
|
-
|
|
1092
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsDataToJSON(
|
|
1093
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData:
|
|
1094
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData,
|
|
868
1095
|
): string {
|
|
869
1096
|
return JSON.stringify(
|
|
870
|
-
|
|
1097
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$outboundSchema
|
|
871
1098
|
.parse(
|
|
872
|
-
|
|
1099
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData,
|
|
873
1100
|
),
|
|
874
1101
|
);
|
|
875
1102
|
}
|
|
876
1103
|
|
|
877
|
-
export function
|
|
1104
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsDataFromJSON(
|
|
878
1105
|
jsonString: string,
|
|
879
1106
|
): SafeParseResult<
|
|
880
|
-
|
|
1107
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData,
|
|
881
1108
|
SDKValidationError
|
|
882
1109
|
> {
|
|
883
1110
|
return safeParse(
|
|
884
1111
|
jsonString,
|
|
885
1112
|
(x) =>
|
|
886
|
-
|
|
1113
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$inboundSchema
|
|
887
1114
|
.parse(JSON.parse(x)),
|
|
888
|
-
`Failed to parse '
|
|
1115
|
+
`Failed to parse 'ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData' from JSON`,
|
|
889
1116
|
);
|
|
890
1117
|
}
|
|
891
1118
|
|
|
@@ -898,7 +1125,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$inboundSc
|
|
|
898
1125
|
> = z.object({
|
|
899
1126
|
data: z.array(
|
|
900
1127
|
z.lazy(() =>
|
|
901
|
-
|
|
1128
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$inboundSchema
|
|
902
1129
|
),
|
|
903
1130
|
),
|
|
904
1131
|
});
|
|
@@ -907,7 +1134,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$inboundSc
|
|
|
907
1134
|
export type ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$Outbound =
|
|
908
1135
|
{
|
|
909
1136
|
data: Array<
|
|
910
|
-
|
|
1137
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$Outbound
|
|
911
1138
|
>;
|
|
912
1139
|
};
|
|
913
1140
|
|
|
@@ -920,7 +1147,7 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$outboundS
|
|
|
920
1147
|
> = z.object({
|
|
921
1148
|
data: z.array(
|
|
922
1149
|
z.lazy(() =>
|
|
923
|
-
|
|
1150
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsAssetsData$outboundSchema
|
|
924
1151
|
),
|
|
925
1152
|
),
|
|
926
1153
|
});
|
|
@@ -966,6 +1193,174 @@ export function consumerSecuredLoanConsumerApplicationRelationshipsAssetsFromJSO
|
|
|
966
1193
|
);
|
|
967
1194
|
}
|
|
968
1195
|
|
|
1196
|
+
/** @internal */
|
|
1197
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$inboundSchema:
|
|
1198
|
+
z.ZodNativeEnum<
|
|
1199
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType
|
|
1200
|
+
> = z.nativeEnum(
|
|
1201
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType,
|
|
1202
|
+
);
|
|
1203
|
+
|
|
1204
|
+
/** @internal */
|
|
1205
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$outboundSchema:
|
|
1206
|
+
z.ZodNativeEnum<
|
|
1207
|
+
typeof ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType
|
|
1208
|
+
> =
|
|
1209
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$inboundSchema;
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* @internal
|
|
1213
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1214
|
+
*/
|
|
1215
|
+
export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$ {
|
|
1216
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$inboundSchema` instead. */
|
|
1217
|
+
export const inboundSchema =
|
|
1218
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$inboundSchema;
|
|
1219
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$outboundSchema` instead. */
|
|
1220
|
+
export const outboundSchema =
|
|
1221
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$outboundSchema;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
/** @internal */
|
|
1225
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$inboundSchema:
|
|
1226
|
+
z.ZodType<
|
|
1227
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData,
|
|
1228
|
+
z.ZodTypeDef,
|
|
1229
|
+
unknown
|
|
1230
|
+
> = z.object({
|
|
1231
|
+
type:
|
|
1232
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$inboundSchema,
|
|
1233
|
+
attributes: ExpenseAttributes$inboundSchema,
|
|
1234
|
+
links: z.record(LinkObject$inboundSchema).optional(),
|
|
1235
|
+
meta: z.record(z.any()).optional(),
|
|
1236
|
+
});
|
|
1237
|
+
|
|
1238
|
+
/** @internal */
|
|
1239
|
+
export type ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$Outbound =
|
|
1240
|
+
{
|
|
1241
|
+
type: string;
|
|
1242
|
+
attributes: ExpenseAttributes$Outbound;
|
|
1243
|
+
links?: { [k: string]: LinkObject$Outbound } | undefined;
|
|
1244
|
+
meta?: { [k: string]: any } | undefined;
|
|
1245
|
+
};
|
|
1246
|
+
|
|
1247
|
+
/** @internal */
|
|
1248
|
+
export const ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$outboundSchema:
|
|
1249
|
+
z.ZodType<
|
|
1250
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$Outbound,
|
|
1251
|
+
z.ZodTypeDef,
|
|
1252
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData
|
|
1253
|
+
> = z.object({
|
|
1254
|
+
type:
|
|
1255
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesType$outboundSchema,
|
|
1256
|
+
attributes: ExpenseAttributes$outboundSchema,
|
|
1257
|
+
links: z.record(LinkObject$outboundSchema).optional(),
|
|
1258
|
+
meta: z.record(z.any()).optional(),
|
|
1259
|
+
});
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* @internal
|
|
1263
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1264
|
+
*/
|
|
1265
|
+
export namespace ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$ {
|
|
1266
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$inboundSchema` instead. */
|
|
1267
|
+
export const inboundSchema =
|
|
1268
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$inboundSchema;
|
|
1269
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$outboundSchema` instead. */
|
|
1270
|
+
export const outboundSchema =
|
|
1271
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$outboundSchema;
|
|
1272
|
+
/** @deprecated use `ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$Outbound` instead. */
|
|
1273
|
+
export type Outbound =
|
|
1274
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$Outbound;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesDataToJSON(
|
|
1278
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData:
|
|
1279
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData,
|
|
1280
|
+
): string {
|
|
1281
|
+
return JSON.stringify(
|
|
1282
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$outboundSchema
|
|
1283
|
+
.parse(
|
|
1284
|
+
consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData,
|
|
1285
|
+
),
|
|
1286
|
+
);
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
export function consumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesDataFromJSON(
|
|
1290
|
+
jsonString: string,
|
|
1291
|
+
): SafeParseResult<
|
|
1292
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData,
|
|
1293
|
+
SDKValidationError
|
|
1294
|
+
> {
|
|
1295
|
+
return safeParse(
|
|
1296
|
+
jsonString,
|
|
1297
|
+
(x) =>
|
|
1298
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$inboundSchema
|
|
1299
|
+
.parse(JSON.parse(x)),
|
|
1300
|
+
`Failed to parse 'ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData' from JSON`,
|
|
1301
|
+
);
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
/** @internal */
|
|
1305
|
+
export const Expenses$inboundSchema: z.ZodType<
|
|
1306
|
+
Expenses,
|
|
1307
|
+
z.ZodTypeDef,
|
|
1308
|
+
unknown
|
|
1309
|
+
> = z.object({
|
|
1310
|
+
data: z.array(
|
|
1311
|
+
z.lazy(() =>
|
|
1312
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$inboundSchema
|
|
1313
|
+
),
|
|
1314
|
+
),
|
|
1315
|
+
});
|
|
1316
|
+
|
|
1317
|
+
/** @internal */
|
|
1318
|
+
export type Expenses$Outbound = {
|
|
1319
|
+
data: Array<
|
|
1320
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$Outbound
|
|
1321
|
+
>;
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
/** @internal */
|
|
1325
|
+
export const Expenses$outboundSchema: z.ZodType<
|
|
1326
|
+
Expenses$Outbound,
|
|
1327
|
+
z.ZodTypeDef,
|
|
1328
|
+
Expenses
|
|
1329
|
+
> = z.object({
|
|
1330
|
+
data: z.array(
|
|
1331
|
+
z.lazy(() =>
|
|
1332
|
+
ConsumerSecuredLoanConsumerApplicationRelationshipsCustomersDataRelationshipsExpensesData$outboundSchema
|
|
1333
|
+
),
|
|
1334
|
+
),
|
|
1335
|
+
});
|
|
1336
|
+
|
|
1337
|
+
/**
|
|
1338
|
+
* @internal
|
|
1339
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1340
|
+
*/
|
|
1341
|
+
export namespace Expenses$ {
|
|
1342
|
+
/** @deprecated use `Expenses$inboundSchema` instead. */
|
|
1343
|
+
export const inboundSchema = Expenses$inboundSchema;
|
|
1344
|
+
/** @deprecated use `Expenses$outboundSchema` instead. */
|
|
1345
|
+
export const outboundSchema = Expenses$outboundSchema;
|
|
1346
|
+
/** @deprecated use `Expenses$Outbound` instead. */
|
|
1347
|
+
export type Outbound = Expenses$Outbound;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
export function expensesToJSON(expenses: Expenses): string {
|
|
1351
|
+
return JSON.stringify(Expenses$outboundSchema.parse(expenses));
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
export function expensesFromJSON(
|
|
1355
|
+
jsonString: string,
|
|
1356
|
+
): SafeParseResult<Expenses, SDKValidationError> {
|
|
1357
|
+
return safeParse(
|
|
1358
|
+
jsonString,
|
|
1359
|
+
(x) => Expenses$inboundSchema.parse(JSON.parse(x)),
|
|
1360
|
+
`Failed to parse 'Expenses' from JSON`,
|
|
1361
|
+
);
|
|
1362
|
+
}
|
|
1363
|
+
|
|
969
1364
|
/** @internal */
|
|
970
1365
|
export const ConsumerSecuredLoanConsumerApplicationRelationshipsRelationships$inboundSchema:
|
|
971
1366
|
z.ZodType<
|
|
@@ -976,12 +1371,14 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsRelationships$in
|
|
|
976
1371
|
addresses: z.lazy(() =>
|
|
977
1372
|
ConsumerSecuredLoanConsumerApplicationRelationshipsAddresses$inboundSchema
|
|
978
1373
|
).optional(),
|
|
1374
|
+
income: z.lazy(() => Income$inboundSchema).optional(),
|
|
979
1375
|
liabilities: z.lazy(() =>
|
|
980
1376
|
ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$inboundSchema
|
|
981
1377
|
).optional(),
|
|
982
1378
|
assets: z.lazy(() =>
|
|
983
1379
|
ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$inboundSchema
|
|
984
1380
|
).optional(),
|
|
1381
|
+
expenses: z.lazy(() => Expenses$inboundSchema).optional(),
|
|
985
1382
|
});
|
|
986
1383
|
|
|
987
1384
|
/** @internal */
|
|
@@ -990,12 +1387,14 @@ export type ConsumerSecuredLoanConsumerApplicationRelationshipsRelationships$Out
|
|
|
990
1387
|
addresses?:
|
|
991
1388
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsAddresses$Outbound
|
|
992
1389
|
| undefined;
|
|
1390
|
+
income?: Income$Outbound | undefined;
|
|
993
1391
|
liabilities?:
|
|
994
1392
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$Outbound
|
|
995
1393
|
| undefined;
|
|
996
1394
|
assets?:
|
|
997
1395
|
| ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$Outbound
|
|
998
1396
|
| undefined;
|
|
1397
|
+
expenses?: Expenses$Outbound | undefined;
|
|
999
1398
|
};
|
|
1000
1399
|
|
|
1001
1400
|
/** @internal */
|
|
@@ -1008,12 +1407,14 @@ export const ConsumerSecuredLoanConsumerApplicationRelationshipsRelationships$ou
|
|
|
1008
1407
|
addresses: z.lazy(() =>
|
|
1009
1408
|
ConsumerSecuredLoanConsumerApplicationRelationshipsAddresses$outboundSchema
|
|
1010
1409
|
).optional(),
|
|
1410
|
+
income: z.lazy(() => Income$outboundSchema).optional(),
|
|
1011
1411
|
liabilities: z.lazy(() =>
|
|
1012
1412
|
ConsumerSecuredLoanConsumerApplicationRelationshipsLiabilities$outboundSchema
|
|
1013
1413
|
).optional(),
|
|
1014
1414
|
assets: z.lazy(() =>
|
|
1015
1415
|
ConsumerSecuredLoanConsumerApplicationRelationshipsAssets$outboundSchema
|
|
1016
1416
|
).optional(),
|
|
1417
|
+
expenses: z.lazy(() => Expenses$outboundSchema).optional(),
|
|
1017
1418
|
});
|
|
1018
1419
|
|
|
1019
1420
|
/**
|