@financeable/aggregation 0.8.0 → 0.8.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.
- package/README.md +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/consumersecuredloanassetattributes.d.ts +136 -15
- package/models/components/consumersecuredloanassetattributes.d.ts.map +1 -1
- package/models/components/consumersecuredloanassetattributes.js +131 -11
- 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/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 +6 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +6 -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/consumersecuredloanassetattributes.ts +282 -25
- package/src/models/components/consumersecuredloanconsumerapplicationrelationships.ts +436 -35
- 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 +6 -0
package/README.md
CHANGED
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
27
27
|
export declare const SDK_METADATA: {
|
|
28
28
|
readonly language: "typescript";
|
|
29
29
|
readonly openapiDocVersion: "0.4.0";
|
|
30
|
-
readonly sdkVersion: "0.8.
|
|
30
|
+
readonly sdkVersion: "0.8.1";
|
|
31
31
|
readonly genVersion: "2.610.0";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.8.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.8.1 2.610.0 0.4.0 @financeable/aggregation";
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "0.4.0",
|
|
31
|
-
sdkVersion: "0.8.
|
|
31
|
+
sdkVersion: "0.8.1",
|
|
32
32
|
genVersion: "2.610.0",
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 0.8.
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 0.8.1 2.610.0 0.4.0 @financeable/aggregation",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
|
@@ -3,6 +3,7 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
3
3
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
4
4
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
5
|
import { ConsumerSecuredLoanAssetType } from "./consumersecuredloanassettype.js";
|
|
6
|
+
import { MonetaryQuantity, MonetaryQuantity$Outbound } from "./monetaryquantity.js";
|
|
6
7
|
/**
|
|
7
8
|
* Condition of asset
|
|
8
9
|
*/
|
|
@@ -15,6 +16,10 @@ export declare const ConsumerSecuredLoanAssetAttributesCondition: {
|
|
|
15
16
|
* Condition of asset
|
|
16
17
|
*/
|
|
17
18
|
export type ConsumerSecuredLoanAssetAttributesCondition = ClosedEnum<typeof ConsumerSecuredLoanAssetAttributesCondition>;
|
|
19
|
+
/**
|
|
20
|
+
* Value of asset as either MonetaryQuantity model (preferred) or floating point AUD dollars as string. The latter will be deprecated.
|
|
21
|
+
*/
|
|
22
|
+
export type AssetValue = MonetaryQuantity | string;
|
|
18
23
|
/**
|
|
19
24
|
* Registration state (or territory) of asset
|
|
20
25
|
*/
|
|
@@ -32,6 +37,22 @@ export declare const ConsumerSecuredLoanAssetAttributesRegistrationState: {
|
|
|
32
37
|
* Registration state (or territory) of asset
|
|
33
38
|
*/
|
|
34
39
|
export type ConsumerSecuredLoanAssetAttributesRegistrationState = ClosedEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
40
|
+
/**
|
|
41
|
+
* Net asset value of asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
42
|
+
*/
|
|
43
|
+
export type NetAssetValue = MonetaryQuantity | string;
|
|
44
|
+
/**
|
|
45
|
+
* Luxury GST, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
46
|
+
*/
|
|
47
|
+
export type LuxuryGst = MonetaryQuantity | string;
|
|
48
|
+
/**
|
|
49
|
+
* Additional fees concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
50
|
+
*/
|
|
51
|
+
export type AdditionalFees = MonetaryQuantity | string;
|
|
52
|
+
/**
|
|
53
|
+
* Additional taxes concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
54
|
+
*/
|
|
55
|
+
export type AdditionalTaxes = MonetaryQuantity | string;
|
|
35
56
|
/**
|
|
36
57
|
* The asset to be obtained by the customer, using the proposed loan financing.
|
|
37
58
|
*/
|
|
@@ -54,9 +75,9 @@ export type ConsumerSecuredLoanAssetAttributes = {
|
|
|
54
75
|
*/
|
|
55
76
|
assetType: ConsumerSecuredLoanAssetType;
|
|
56
77
|
/**
|
|
57
|
-
* Value of asset
|
|
78
|
+
* Value of asset as either MonetaryQuantity model (preferred) or floating point AUD dollars as string. The latter will be deprecated.
|
|
58
79
|
*/
|
|
59
|
-
assetValue: string;
|
|
80
|
+
assetValue: MonetaryQuantity | string;
|
|
60
81
|
/**
|
|
61
82
|
* Make of asset
|
|
62
83
|
*/
|
|
@@ -114,25 +135,25 @@ export type ConsumerSecuredLoanAssetAttributes = {
|
|
|
114
135
|
*/
|
|
115
136
|
description: string;
|
|
116
137
|
/**
|
|
117
|
-
* Net asset value of asset, floating point value as string
|
|
138
|
+
* Net asset value of asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
118
139
|
*/
|
|
119
|
-
netAssetValue: string;
|
|
140
|
+
netAssetValue: MonetaryQuantity | string;
|
|
120
141
|
/**
|
|
121
142
|
* Is this asset a luxury asset?
|
|
122
143
|
*/
|
|
123
144
|
isLuxury: boolean;
|
|
124
145
|
/**
|
|
125
|
-
* Luxury GST, floating point value as string
|
|
146
|
+
* Luxury GST, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
126
147
|
*/
|
|
127
|
-
luxuryGst?: string | undefined;
|
|
148
|
+
luxuryGst?: MonetaryQuantity | string | undefined;
|
|
128
149
|
/**
|
|
129
|
-
* Additional fees concerning the asset, floating point value as string
|
|
150
|
+
* Additional fees concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
130
151
|
*/
|
|
131
|
-
additionalFees?: string | undefined;
|
|
152
|
+
additionalFees?: MonetaryQuantity | string | undefined;
|
|
132
153
|
/**
|
|
133
|
-
* Additional taxes concerning the asset, floating point value as string
|
|
154
|
+
* Additional taxes concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
134
155
|
*/
|
|
135
|
-
additionalTaxes?: string | undefined;
|
|
156
|
+
additionalTaxes?: MonetaryQuantity | string | undefined;
|
|
136
157
|
};
|
|
137
158
|
/** @internal */
|
|
138
159
|
export declare const ConsumerSecuredLoanAssetAttributesCondition$inboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesCondition>;
|
|
@@ -157,6 +178,26 @@ export declare namespace ConsumerSecuredLoanAssetAttributesCondition$ {
|
|
|
157
178
|
}>;
|
|
158
179
|
}
|
|
159
180
|
/** @internal */
|
|
181
|
+
export declare const AssetValue$inboundSchema: z.ZodType<AssetValue, z.ZodTypeDef, unknown>;
|
|
182
|
+
/** @internal */
|
|
183
|
+
export type AssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
184
|
+
/** @internal */
|
|
185
|
+
export declare const AssetValue$outboundSchema: z.ZodType<AssetValue$Outbound, z.ZodTypeDef, AssetValue>;
|
|
186
|
+
/**
|
|
187
|
+
* @internal
|
|
188
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
189
|
+
*/
|
|
190
|
+
export declare namespace AssetValue$ {
|
|
191
|
+
/** @deprecated use `AssetValue$inboundSchema` instead. */
|
|
192
|
+
const inboundSchema: z.ZodType<AssetValue, z.ZodTypeDef, unknown>;
|
|
193
|
+
/** @deprecated use `AssetValue$outboundSchema` instead. */
|
|
194
|
+
const outboundSchema: z.ZodType<AssetValue$Outbound, z.ZodTypeDef, AssetValue>;
|
|
195
|
+
/** @deprecated use `AssetValue$Outbound` instead. */
|
|
196
|
+
type Outbound = AssetValue$Outbound;
|
|
197
|
+
}
|
|
198
|
+
export declare function assetValueToJSON(assetValue: AssetValue): string;
|
|
199
|
+
export declare function assetValueFromJSON(jsonString: string): SafeParseResult<AssetValue, SDKValidationError>;
|
|
200
|
+
/** @internal */
|
|
160
201
|
export declare const ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
161
202
|
/** @internal */
|
|
162
203
|
export declare const ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
@@ -189,6 +230,86 @@ export declare namespace ConsumerSecuredLoanAssetAttributesRegistrationState$ {
|
|
|
189
230
|
}>;
|
|
190
231
|
}
|
|
191
232
|
/** @internal */
|
|
233
|
+
export declare const NetAssetValue$inboundSchema: z.ZodType<NetAssetValue, z.ZodTypeDef, unknown>;
|
|
234
|
+
/** @internal */
|
|
235
|
+
export type NetAssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
236
|
+
/** @internal */
|
|
237
|
+
export declare const NetAssetValue$outboundSchema: z.ZodType<NetAssetValue$Outbound, z.ZodTypeDef, NetAssetValue>;
|
|
238
|
+
/**
|
|
239
|
+
* @internal
|
|
240
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
241
|
+
*/
|
|
242
|
+
export declare namespace NetAssetValue$ {
|
|
243
|
+
/** @deprecated use `NetAssetValue$inboundSchema` instead. */
|
|
244
|
+
const inboundSchema: z.ZodType<NetAssetValue, z.ZodTypeDef, unknown>;
|
|
245
|
+
/** @deprecated use `NetAssetValue$outboundSchema` instead. */
|
|
246
|
+
const outboundSchema: z.ZodType<NetAssetValue$Outbound, z.ZodTypeDef, NetAssetValue>;
|
|
247
|
+
/** @deprecated use `NetAssetValue$Outbound` instead. */
|
|
248
|
+
type Outbound = NetAssetValue$Outbound;
|
|
249
|
+
}
|
|
250
|
+
export declare function netAssetValueToJSON(netAssetValue: NetAssetValue): string;
|
|
251
|
+
export declare function netAssetValueFromJSON(jsonString: string): SafeParseResult<NetAssetValue, SDKValidationError>;
|
|
252
|
+
/** @internal */
|
|
253
|
+
export declare const LuxuryGst$inboundSchema: z.ZodType<LuxuryGst, z.ZodTypeDef, unknown>;
|
|
254
|
+
/** @internal */
|
|
255
|
+
export type LuxuryGst$Outbound = MonetaryQuantity$Outbound | string;
|
|
256
|
+
/** @internal */
|
|
257
|
+
export declare const LuxuryGst$outboundSchema: z.ZodType<LuxuryGst$Outbound, z.ZodTypeDef, LuxuryGst>;
|
|
258
|
+
/**
|
|
259
|
+
* @internal
|
|
260
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
261
|
+
*/
|
|
262
|
+
export declare namespace LuxuryGst$ {
|
|
263
|
+
/** @deprecated use `LuxuryGst$inboundSchema` instead. */
|
|
264
|
+
const inboundSchema: z.ZodType<LuxuryGst, z.ZodTypeDef, unknown>;
|
|
265
|
+
/** @deprecated use `LuxuryGst$outboundSchema` instead. */
|
|
266
|
+
const outboundSchema: z.ZodType<LuxuryGst$Outbound, z.ZodTypeDef, LuxuryGst>;
|
|
267
|
+
/** @deprecated use `LuxuryGst$Outbound` instead. */
|
|
268
|
+
type Outbound = LuxuryGst$Outbound;
|
|
269
|
+
}
|
|
270
|
+
export declare function luxuryGstToJSON(luxuryGst: LuxuryGst): string;
|
|
271
|
+
export declare function luxuryGstFromJSON(jsonString: string): SafeParseResult<LuxuryGst, SDKValidationError>;
|
|
272
|
+
/** @internal */
|
|
273
|
+
export declare const AdditionalFees$inboundSchema: z.ZodType<AdditionalFees, z.ZodTypeDef, unknown>;
|
|
274
|
+
/** @internal */
|
|
275
|
+
export type AdditionalFees$Outbound = MonetaryQuantity$Outbound | string;
|
|
276
|
+
/** @internal */
|
|
277
|
+
export declare const AdditionalFees$outboundSchema: z.ZodType<AdditionalFees$Outbound, z.ZodTypeDef, AdditionalFees>;
|
|
278
|
+
/**
|
|
279
|
+
* @internal
|
|
280
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
281
|
+
*/
|
|
282
|
+
export declare namespace AdditionalFees$ {
|
|
283
|
+
/** @deprecated use `AdditionalFees$inboundSchema` instead. */
|
|
284
|
+
const inboundSchema: z.ZodType<AdditionalFees, z.ZodTypeDef, unknown>;
|
|
285
|
+
/** @deprecated use `AdditionalFees$outboundSchema` instead. */
|
|
286
|
+
const outboundSchema: z.ZodType<AdditionalFees$Outbound, z.ZodTypeDef, AdditionalFees>;
|
|
287
|
+
/** @deprecated use `AdditionalFees$Outbound` instead. */
|
|
288
|
+
type Outbound = AdditionalFees$Outbound;
|
|
289
|
+
}
|
|
290
|
+
export declare function additionalFeesToJSON(additionalFees: AdditionalFees): string;
|
|
291
|
+
export declare function additionalFeesFromJSON(jsonString: string): SafeParseResult<AdditionalFees, SDKValidationError>;
|
|
292
|
+
/** @internal */
|
|
293
|
+
export declare const AdditionalTaxes$inboundSchema: z.ZodType<AdditionalTaxes, z.ZodTypeDef, unknown>;
|
|
294
|
+
/** @internal */
|
|
295
|
+
export type AdditionalTaxes$Outbound = MonetaryQuantity$Outbound | string;
|
|
296
|
+
/** @internal */
|
|
297
|
+
export declare const AdditionalTaxes$outboundSchema: z.ZodType<AdditionalTaxes$Outbound, z.ZodTypeDef, AdditionalTaxes>;
|
|
298
|
+
/**
|
|
299
|
+
* @internal
|
|
300
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
301
|
+
*/
|
|
302
|
+
export declare namespace AdditionalTaxes$ {
|
|
303
|
+
/** @deprecated use `AdditionalTaxes$inboundSchema` instead. */
|
|
304
|
+
const inboundSchema: z.ZodType<AdditionalTaxes, z.ZodTypeDef, unknown>;
|
|
305
|
+
/** @deprecated use `AdditionalTaxes$outboundSchema` instead. */
|
|
306
|
+
const outboundSchema: z.ZodType<AdditionalTaxes$Outbound, z.ZodTypeDef, AdditionalTaxes>;
|
|
307
|
+
/** @deprecated use `AdditionalTaxes$Outbound` instead. */
|
|
308
|
+
type Outbound = AdditionalTaxes$Outbound;
|
|
309
|
+
}
|
|
310
|
+
export declare function additionalTaxesToJSON(additionalTaxes: AdditionalTaxes): string;
|
|
311
|
+
export declare function additionalTaxesFromJSON(jsonString: string): SafeParseResult<AdditionalTaxes, SDKValidationError>;
|
|
312
|
+
/** @internal */
|
|
192
313
|
export declare const ConsumerSecuredLoanAssetAttributes$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributes, z.ZodTypeDef, unknown>;
|
|
193
314
|
/** @internal */
|
|
194
315
|
export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
@@ -197,7 +318,7 @@ export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
|
197
318
|
ageOfAssetAtEnd: number;
|
|
198
319
|
condition: string;
|
|
199
320
|
assetType: string;
|
|
200
|
-
assetValue: string;
|
|
321
|
+
assetValue: MonetaryQuantity$Outbound | string;
|
|
201
322
|
make?: string | undefined;
|
|
202
323
|
assetModel?: string | undefined;
|
|
203
324
|
registrationNumber?: string | undefined;
|
|
@@ -212,11 +333,11 @@ export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
|
212
333
|
privateSale: boolean;
|
|
213
334
|
typeOfSale: string;
|
|
214
335
|
description: string;
|
|
215
|
-
netAssetValue: string;
|
|
336
|
+
netAssetValue: MonetaryQuantity$Outbound | string;
|
|
216
337
|
isLuxury: boolean;
|
|
217
|
-
luxuryGst?: string | undefined;
|
|
218
|
-
additionalFees?: string | undefined;
|
|
219
|
-
additionalTaxes?: string | undefined;
|
|
338
|
+
luxuryGst?: MonetaryQuantity$Outbound | string | undefined;
|
|
339
|
+
additionalFees?: MonetaryQuantity$Outbound | string | undefined;
|
|
340
|
+
additionalTaxes?: MonetaryQuantity$Outbound | string | undefined;
|
|
220
341
|
};
|
|
221
342
|
/** @internal */
|
|
222
343
|
export declare const ConsumerSecuredLoanAssetAttributes$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributes$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributes>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consumersecuredloanassetattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/consumersecuredloanassetattributes.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,4BAA4B,EAG7B,MAAM,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"consumersecuredloanassetattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/consumersecuredloanassetattributes.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,12 +36,23 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.ConsumerSecuredLoanAssetAttributes$ = exports.ConsumerSecuredLoanAssetAttributes$outboundSchema = exports.ConsumerSecuredLoanAssetAttributes$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$ = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesCondition$ = exports.ConsumerSecuredLoanAssetAttributesCondition$outboundSchema = exports.ConsumerSecuredLoanAssetAttributesCondition$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState = exports.ConsumerSecuredLoanAssetAttributesCondition = void 0;
|
|
39
|
+
exports.ConsumerSecuredLoanAssetAttributes$ = exports.ConsumerSecuredLoanAssetAttributes$outboundSchema = exports.ConsumerSecuredLoanAssetAttributes$inboundSchema = exports.AdditionalTaxes$ = exports.AdditionalTaxes$outboundSchema = exports.AdditionalTaxes$inboundSchema = exports.AdditionalFees$ = exports.AdditionalFees$outboundSchema = exports.AdditionalFees$inboundSchema = exports.LuxuryGst$ = exports.LuxuryGst$outboundSchema = exports.LuxuryGst$inboundSchema = exports.NetAssetValue$ = exports.NetAssetValue$outboundSchema = exports.NetAssetValue$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$ = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema = exports.AssetValue$ = exports.AssetValue$outboundSchema = exports.AssetValue$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesCondition$ = exports.ConsumerSecuredLoanAssetAttributesCondition$outboundSchema = exports.ConsumerSecuredLoanAssetAttributesCondition$inboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState = exports.ConsumerSecuredLoanAssetAttributesCondition = void 0;
|
|
40
|
+
exports.assetValueToJSON = assetValueToJSON;
|
|
41
|
+
exports.assetValueFromJSON = assetValueFromJSON;
|
|
42
|
+
exports.netAssetValueToJSON = netAssetValueToJSON;
|
|
43
|
+
exports.netAssetValueFromJSON = netAssetValueFromJSON;
|
|
44
|
+
exports.luxuryGstToJSON = luxuryGstToJSON;
|
|
45
|
+
exports.luxuryGstFromJSON = luxuryGstFromJSON;
|
|
46
|
+
exports.additionalFeesToJSON = additionalFeesToJSON;
|
|
47
|
+
exports.additionalFeesFromJSON = additionalFeesFromJSON;
|
|
48
|
+
exports.additionalTaxesToJSON = additionalTaxesToJSON;
|
|
49
|
+
exports.additionalTaxesFromJSON = additionalTaxesFromJSON;
|
|
40
50
|
exports.consumerSecuredLoanAssetAttributesToJSON = consumerSecuredLoanAssetAttributesToJSON;
|
|
41
51
|
exports.consumerSecuredLoanAssetAttributesFromJSON = consumerSecuredLoanAssetAttributesFromJSON;
|
|
42
52
|
const z = __importStar(require("zod"));
|
|
43
53
|
const schemas_js_1 = require("../../lib/schemas.js");
|
|
44
54
|
const consumersecuredloanassettype_js_1 = require("./consumersecuredloanassettype.js");
|
|
55
|
+
const monetaryquantity_js_1 = require("./monetaryquantity.js");
|
|
45
56
|
/**
|
|
46
57
|
* Condition of asset
|
|
47
58
|
*/
|
|
@@ -80,6 +91,27 @@ var ConsumerSecuredLoanAssetAttributesCondition$;
|
|
|
80
91
|
ConsumerSecuredLoanAssetAttributesCondition$.outboundSchema = exports.ConsumerSecuredLoanAssetAttributesCondition$outboundSchema;
|
|
81
92
|
})(ConsumerSecuredLoanAssetAttributesCondition$ || (exports.ConsumerSecuredLoanAssetAttributesCondition$ = ConsumerSecuredLoanAssetAttributesCondition$ = {}));
|
|
82
93
|
/** @internal */
|
|
94
|
+
exports.AssetValue$inboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]);
|
|
95
|
+
/** @internal */
|
|
96
|
+
exports.AssetValue$outboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]);
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
100
|
+
*/
|
|
101
|
+
var AssetValue$;
|
|
102
|
+
(function (AssetValue$) {
|
|
103
|
+
/** @deprecated use `AssetValue$inboundSchema` instead. */
|
|
104
|
+
AssetValue$.inboundSchema = exports.AssetValue$inboundSchema;
|
|
105
|
+
/** @deprecated use `AssetValue$outboundSchema` instead. */
|
|
106
|
+
AssetValue$.outboundSchema = exports.AssetValue$outboundSchema;
|
|
107
|
+
})(AssetValue$ || (exports.AssetValue$ = AssetValue$ = {}));
|
|
108
|
+
function assetValueToJSON(assetValue) {
|
|
109
|
+
return JSON.stringify(exports.AssetValue$outboundSchema.parse(assetValue));
|
|
110
|
+
}
|
|
111
|
+
function assetValueFromJSON(jsonString) {
|
|
112
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AssetValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AssetValue' from JSON`);
|
|
113
|
+
}
|
|
114
|
+
/** @internal */
|
|
83
115
|
exports.ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema = z.nativeEnum(exports.ConsumerSecuredLoanAssetAttributesRegistrationState);
|
|
84
116
|
/** @internal */
|
|
85
117
|
exports.ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema;
|
|
@@ -95,13 +127,97 @@ var ConsumerSecuredLoanAssetAttributesRegistrationState$;
|
|
|
95
127
|
ConsumerSecuredLoanAssetAttributesRegistrationState$.outboundSchema = exports.ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema;
|
|
96
128
|
})(ConsumerSecuredLoanAssetAttributesRegistrationState$ || (exports.ConsumerSecuredLoanAssetAttributesRegistrationState$ = ConsumerSecuredLoanAssetAttributesRegistrationState$ = {}));
|
|
97
129
|
/** @internal */
|
|
130
|
+
exports.NetAssetValue$inboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]);
|
|
131
|
+
/** @internal */
|
|
132
|
+
exports.NetAssetValue$outboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]);
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
136
|
+
*/
|
|
137
|
+
var NetAssetValue$;
|
|
138
|
+
(function (NetAssetValue$) {
|
|
139
|
+
/** @deprecated use `NetAssetValue$inboundSchema` instead. */
|
|
140
|
+
NetAssetValue$.inboundSchema = exports.NetAssetValue$inboundSchema;
|
|
141
|
+
/** @deprecated use `NetAssetValue$outboundSchema` instead. */
|
|
142
|
+
NetAssetValue$.outboundSchema = exports.NetAssetValue$outboundSchema;
|
|
143
|
+
})(NetAssetValue$ || (exports.NetAssetValue$ = NetAssetValue$ = {}));
|
|
144
|
+
function netAssetValueToJSON(netAssetValue) {
|
|
145
|
+
return JSON.stringify(exports.NetAssetValue$outboundSchema.parse(netAssetValue));
|
|
146
|
+
}
|
|
147
|
+
function netAssetValueFromJSON(jsonString) {
|
|
148
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.NetAssetValue$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NetAssetValue' from JSON`);
|
|
149
|
+
}
|
|
150
|
+
/** @internal */
|
|
151
|
+
exports.LuxuryGst$inboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]);
|
|
152
|
+
/** @internal */
|
|
153
|
+
exports.LuxuryGst$outboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]);
|
|
154
|
+
/**
|
|
155
|
+
* @internal
|
|
156
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
157
|
+
*/
|
|
158
|
+
var LuxuryGst$;
|
|
159
|
+
(function (LuxuryGst$) {
|
|
160
|
+
/** @deprecated use `LuxuryGst$inboundSchema` instead. */
|
|
161
|
+
LuxuryGst$.inboundSchema = exports.LuxuryGst$inboundSchema;
|
|
162
|
+
/** @deprecated use `LuxuryGst$outboundSchema` instead. */
|
|
163
|
+
LuxuryGst$.outboundSchema = exports.LuxuryGst$outboundSchema;
|
|
164
|
+
})(LuxuryGst$ || (exports.LuxuryGst$ = LuxuryGst$ = {}));
|
|
165
|
+
function luxuryGstToJSON(luxuryGst) {
|
|
166
|
+
return JSON.stringify(exports.LuxuryGst$outboundSchema.parse(luxuryGst));
|
|
167
|
+
}
|
|
168
|
+
function luxuryGstFromJSON(jsonString) {
|
|
169
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.LuxuryGst$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'LuxuryGst' from JSON`);
|
|
170
|
+
}
|
|
171
|
+
/** @internal */
|
|
172
|
+
exports.AdditionalFees$inboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]);
|
|
173
|
+
/** @internal */
|
|
174
|
+
exports.AdditionalFees$outboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]);
|
|
175
|
+
/**
|
|
176
|
+
* @internal
|
|
177
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
178
|
+
*/
|
|
179
|
+
var AdditionalFees$;
|
|
180
|
+
(function (AdditionalFees$) {
|
|
181
|
+
/** @deprecated use `AdditionalFees$inboundSchema` instead. */
|
|
182
|
+
AdditionalFees$.inboundSchema = exports.AdditionalFees$inboundSchema;
|
|
183
|
+
/** @deprecated use `AdditionalFees$outboundSchema` instead. */
|
|
184
|
+
AdditionalFees$.outboundSchema = exports.AdditionalFees$outboundSchema;
|
|
185
|
+
})(AdditionalFees$ || (exports.AdditionalFees$ = AdditionalFees$ = {}));
|
|
186
|
+
function additionalFeesToJSON(additionalFees) {
|
|
187
|
+
return JSON.stringify(exports.AdditionalFees$outboundSchema.parse(additionalFees));
|
|
188
|
+
}
|
|
189
|
+
function additionalFeesFromJSON(jsonString) {
|
|
190
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AdditionalFees$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AdditionalFees' from JSON`);
|
|
191
|
+
}
|
|
192
|
+
/** @internal */
|
|
193
|
+
exports.AdditionalTaxes$inboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]);
|
|
194
|
+
/** @internal */
|
|
195
|
+
exports.AdditionalTaxes$outboundSchema = z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]);
|
|
196
|
+
/**
|
|
197
|
+
* @internal
|
|
198
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
199
|
+
*/
|
|
200
|
+
var AdditionalTaxes$;
|
|
201
|
+
(function (AdditionalTaxes$) {
|
|
202
|
+
/** @deprecated use `AdditionalTaxes$inboundSchema` instead. */
|
|
203
|
+
AdditionalTaxes$.inboundSchema = exports.AdditionalTaxes$inboundSchema;
|
|
204
|
+
/** @deprecated use `AdditionalTaxes$outboundSchema` instead. */
|
|
205
|
+
AdditionalTaxes$.outboundSchema = exports.AdditionalTaxes$outboundSchema;
|
|
206
|
+
})(AdditionalTaxes$ || (exports.AdditionalTaxes$ = AdditionalTaxes$ = {}));
|
|
207
|
+
function additionalTaxesToJSON(additionalTaxes) {
|
|
208
|
+
return JSON.stringify(exports.AdditionalTaxes$outboundSchema.parse(additionalTaxes));
|
|
209
|
+
}
|
|
210
|
+
function additionalTaxesFromJSON(jsonString) {
|
|
211
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.AdditionalTaxes$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AdditionalTaxes' from JSON`);
|
|
212
|
+
}
|
|
213
|
+
/** @internal */
|
|
98
214
|
exports.ConsumerSecuredLoanAssetAttributes$inboundSchema = z.object({
|
|
99
215
|
id: z.string().optional(),
|
|
100
216
|
ageOfAsset: z.number().int(),
|
|
101
217
|
ageOfAssetAtEnd: z.number().int(),
|
|
102
218
|
condition: exports.ConsumerSecuredLoanAssetAttributesCondition$inboundSchema,
|
|
103
219
|
assetType: consumersecuredloanassettype_js_1.ConsumerSecuredLoanAssetType$inboundSchema,
|
|
104
|
-
assetValue: z.string(),
|
|
220
|
+
assetValue: z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]),
|
|
105
221
|
make: z.string().optional(),
|
|
106
222
|
assetModel: z.string().optional(),
|
|
107
223
|
registrationNumber: z.string().optional(),
|
|
@@ -117,11 +233,13 @@ exports.ConsumerSecuredLoanAssetAttributes$inboundSchema = z.object({
|
|
|
117
233
|
privateSale: z.boolean(),
|
|
118
234
|
typeOfSale: z.string(),
|
|
119
235
|
description: z.string(),
|
|
120
|
-
netAssetValue: z.string(),
|
|
236
|
+
netAssetValue: z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]),
|
|
121
237
|
isLuxury: z.boolean(),
|
|
122
|
-
luxuryGst: z.string().optional(),
|
|
123
|
-
additionalFees: z.
|
|
124
|
-
|
|
238
|
+
luxuryGst: z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()]).optional(),
|
|
239
|
+
additionalFees: z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()])
|
|
240
|
+
.optional(),
|
|
241
|
+
additionalTaxes: z.union([monetaryquantity_js_1.MonetaryQuantity$inboundSchema, z.string()])
|
|
242
|
+
.optional(),
|
|
125
243
|
});
|
|
126
244
|
/** @internal */
|
|
127
245
|
exports.ConsumerSecuredLoanAssetAttributes$outboundSchema = z.object({
|
|
@@ -130,7 +248,7 @@ exports.ConsumerSecuredLoanAssetAttributes$outboundSchema = z.object({
|
|
|
130
248
|
ageOfAssetAtEnd: z.number().int(),
|
|
131
249
|
condition: exports.ConsumerSecuredLoanAssetAttributesCondition$outboundSchema,
|
|
132
250
|
assetType: consumersecuredloanassettype_js_1.ConsumerSecuredLoanAssetType$outboundSchema,
|
|
133
|
-
assetValue: z.string(),
|
|
251
|
+
assetValue: z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]),
|
|
134
252
|
make: z.string().optional(),
|
|
135
253
|
assetModel: z.string().optional(),
|
|
136
254
|
registrationNumber: z.string().optional(),
|
|
@@ -146,11 +264,13 @@ exports.ConsumerSecuredLoanAssetAttributes$outboundSchema = z.object({
|
|
|
146
264
|
privateSale: z.boolean(),
|
|
147
265
|
typeOfSale: z.string(),
|
|
148
266
|
description: z.string(),
|
|
149
|
-
netAssetValue: z.string(),
|
|
267
|
+
netAssetValue: z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]),
|
|
150
268
|
isLuxury: z.boolean(),
|
|
151
|
-
luxuryGst: z.string().optional(),
|
|
152
|
-
additionalFees: z.
|
|
153
|
-
|
|
269
|
+
luxuryGst: z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()]).optional(),
|
|
270
|
+
additionalFees: z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()])
|
|
271
|
+
.optional(),
|
|
272
|
+
additionalTaxes: z.union([monetaryquantity_js_1.MonetaryQuantity$outboundSchema, z.string()])
|
|
273
|
+
.optional(),
|
|
154
274
|
});
|
|
155
275
|
/**
|
|
156
276
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consumersecuredloanassetattributes.js","sourceRoot":"","sources":["../../src/models/components/consumersecuredloanassetattributes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"consumersecuredloanassetattributes.js","sourceRoot":"","sources":["../../src/models/components/consumersecuredloanassetattributes.ts"],"names":[],"mappings":"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"}
|