@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
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
export declare const CommercialSecuredLoanTypeOfSale: {
|
|
4
|
+
readonly AuthorisedSeller: "AUTHORISED_SELLER";
|
|
5
|
+
readonly AuthorisedElectricVehicleSeller: "AUTHORISED_ELECTRIC_VEHICLE_SELLER";
|
|
6
|
+
readonly PrivateSale: "PRIVATE_SALE";
|
|
7
|
+
readonly MidTermRefinance: "MID-TERM_REFINANCE";
|
|
8
|
+
readonly BalloonOrResdiualRefinance: "BALLOON_OR_RESDIUAL_REFINANCE";
|
|
9
|
+
readonly SaleAndBuybackOrEquity: "SALE_AND_BUYBACK_OR_EQUITY";
|
|
10
|
+
};
|
|
11
|
+
export type CommercialSecuredLoanTypeOfSale = ClosedEnum<typeof CommercialSecuredLoanTypeOfSale>;
|
|
12
|
+
/** @internal */
|
|
13
|
+
export declare const CommercialSecuredLoanTypeOfSale$inboundSchema: z.ZodNativeEnum<typeof CommercialSecuredLoanTypeOfSale>;
|
|
14
|
+
/** @internal */
|
|
15
|
+
export declare const CommercialSecuredLoanTypeOfSale$outboundSchema: z.ZodNativeEnum<typeof CommercialSecuredLoanTypeOfSale>;
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
19
|
+
*/
|
|
20
|
+
export declare namespace CommercialSecuredLoanTypeOfSale$ {
|
|
21
|
+
/** @deprecated use `CommercialSecuredLoanTypeOfSale$inboundSchema` instead. */
|
|
22
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
23
|
+
readonly AuthorisedSeller: "AUTHORISED_SELLER";
|
|
24
|
+
readonly AuthorisedElectricVehicleSeller: "AUTHORISED_ELECTRIC_VEHICLE_SELLER";
|
|
25
|
+
readonly PrivateSale: "PRIVATE_SALE";
|
|
26
|
+
readonly MidTermRefinance: "MID-TERM_REFINANCE";
|
|
27
|
+
readonly BalloonOrResdiualRefinance: "BALLOON_OR_RESDIUAL_REFINANCE";
|
|
28
|
+
readonly SaleAndBuybackOrEquity: "SALE_AND_BUYBACK_OR_EQUITY";
|
|
29
|
+
}>;
|
|
30
|
+
/** @deprecated use `CommercialSecuredLoanTypeOfSale$outboundSchema` instead. */
|
|
31
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
32
|
+
readonly AuthorisedSeller: "AUTHORISED_SELLER";
|
|
33
|
+
readonly AuthorisedElectricVehicleSeller: "AUTHORISED_ELECTRIC_VEHICLE_SELLER";
|
|
34
|
+
readonly PrivateSale: "PRIVATE_SALE";
|
|
35
|
+
readonly MidTermRefinance: "MID-TERM_REFINANCE";
|
|
36
|
+
readonly BalloonOrResdiualRefinance: "BALLOON_OR_RESDIUAL_REFINANCE";
|
|
37
|
+
readonly SaleAndBuybackOrEquity: "SALE_AND_BUYBACK_OR_EQUITY";
|
|
38
|
+
}>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=commercialsecuredloantypeofsale.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commercialsecuredloantypeofsale.d.ts","sourceRoot":"","sources":["../../src/models/components/commercialsecuredloantypeofsale.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,+BAA+B;;;;;;;CAOlC,CAAC;AACX,MAAM,MAAM,+BAA+B,GAAG,UAAU,CACtD,OAAO,+BAA+B,CACvC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6CAA6C,EAAE,CAAC,CAAC,aAAa,CACzE,OAAO,+BAA+B,CACS,CAAC;AAElD,gBAAgB;AAChB,eAAO,MAAM,8CAA8C,EAAE,CAAC,CAAC,aAAa,CAC1E,OAAO,+BAA+B,CACS,CAAC;AAElD;;;GAGG;AACH,yBAAiB,gCAAgC,CAAC;IAChD,+EAA+E;IACxE,MAAM,aAAa;;;;;;;MAAgD,CAAC;IAC3E,gFAAgF;IACzE,MAAM,cAAc;;;;;;;MAAiD,CAAC;CAC9E"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.CommercialSecuredLoanTypeOfSale$ = exports.CommercialSecuredLoanTypeOfSale$outboundSchema = exports.CommercialSecuredLoanTypeOfSale$inboundSchema = exports.CommercialSecuredLoanTypeOfSale = void 0;
|
|
40
|
+
const z = __importStar(require("zod"));
|
|
41
|
+
exports.CommercialSecuredLoanTypeOfSale = {
|
|
42
|
+
AuthorisedSeller: "AUTHORISED_SELLER",
|
|
43
|
+
AuthorisedElectricVehicleSeller: "AUTHORISED_ELECTRIC_VEHICLE_SELLER",
|
|
44
|
+
PrivateSale: "PRIVATE_SALE",
|
|
45
|
+
MidTermRefinance: "MID-TERM_REFINANCE",
|
|
46
|
+
BalloonOrResdiualRefinance: "BALLOON_OR_RESDIUAL_REFINANCE",
|
|
47
|
+
SaleAndBuybackOrEquity: "SALE_AND_BUYBACK_OR_EQUITY",
|
|
48
|
+
};
|
|
49
|
+
/** @internal */
|
|
50
|
+
exports.CommercialSecuredLoanTypeOfSale$inboundSchema = z.nativeEnum(exports.CommercialSecuredLoanTypeOfSale);
|
|
51
|
+
/** @internal */
|
|
52
|
+
exports.CommercialSecuredLoanTypeOfSale$outboundSchema = exports.CommercialSecuredLoanTypeOfSale$inboundSchema;
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
56
|
+
*/
|
|
57
|
+
var CommercialSecuredLoanTypeOfSale$;
|
|
58
|
+
(function (CommercialSecuredLoanTypeOfSale$) {
|
|
59
|
+
/** @deprecated use `CommercialSecuredLoanTypeOfSale$inboundSchema` instead. */
|
|
60
|
+
CommercialSecuredLoanTypeOfSale$.inboundSchema = exports.CommercialSecuredLoanTypeOfSale$inboundSchema;
|
|
61
|
+
/** @deprecated use `CommercialSecuredLoanTypeOfSale$outboundSchema` instead. */
|
|
62
|
+
CommercialSecuredLoanTypeOfSale$.outboundSchema = exports.CommercialSecuredLoanTypeOfSale$outboundSchema;
|
|
63
|
+
})(CommercialSecuredLoanTypeOfSale$ || (exports.CommercialSecuredLoanTypeOfSale$ = CommercialSecuredLoanTypeOfSale$ = {}));
|
|
64
|
+
//# sourceMappingURL=commercialsecuredloantypeofsale.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commercialsecuredloantypeofsale.js","sourceRoot":"","sources":["../../src/models/components/commercialsecuredloantypeofsale.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,+BAA+B,GAAG;IAC7C,gBAAgB,EAAE,mBAAmB;IACrC,+BAA+B,EAAE,oCAAoC;IACrE,WAAW,EAAE,cAAc;IAC3B,gBAAgB,EAAE,oBAAoB;IACtC,0BAA0B,EAAE,+BAA+B;IAC3D,sBAAsB,EAAE,4BAA4B;CAC5C,CAAC;AAKX,gBAAgB;AACH,QAAA,6CAA6C,GAEtD,CAAC,CAAC,UAAU,CAAC,uCAA+B,CAAC,CAAC;AAElD,gBAAgB;AACH,QAAA,8CAA8C,GAEvD,qDAA6C,CAAC;AAElD;;;GAGG;AACH,IAAiB,gCAAgC,CAKhD;AALD,WAAiB,gCAAgC;IAC/C,+EAA+E;IAClE,8CAAa,GAAG,qDAA6C,CAAC;IAC3E,gFAAgF;IACnE,+CAAc,GAAG,sDAA8C,CAAC;AAC/E,CAAC,EALgB,gCAAgC,gDAAhC,gCAAgC,QAKhD"}
|
|
@@ -3,6 +3,8 @@ 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 { ConsumerSecuredLoanTypeOfSale } from "./consumersecuredloantypeofsale.js";
|
|
7
|
+
import { MonetaryQuantity, MonetaryQuantity$Outbound } from "./monetaryquantity.js";
|
|
6
8
|
/**
|
|
7
9
|
* Condition of asset
|
|
8
10
|
*/
|
|
@@ -15,6 +17,10 @@ export declare const ConsumerSecuredLoanAssetAttributesCondition: {
|
|
|
15
17
|
* Condition of asset
|
|
16
18
|
*/
|
|
17
19
|
export type ConsumerSecuredLoanAssetAttributesCondition = ClosedEnum<typeof ConsumerSecuredLoanAssetAttributesCondition>;
|
|
20
|
+
/**
|
|
21
|
+
* Value of asset as either MonetaryQuantity model (preferred) or floating point AUD dollars as string. The latter will be deprecated.
|
|
22
|
+
*/
|
|
23
|
+
export type ConsumerSecuredLoanAssetAttributesAssetValue = MonetaryQuantity | string;
|
|
18
24
|
/**
|
|
19
25
|
* Registration state (or territory) of asset
|
|
20
26
|
*/
|
|
@@ -32,6 +38,26 @@ export declare const ConsumerSecuredLoanAssetAttributesRegistrationState: {
|
|
|
32
38
|
* Registration state (or territory) of asset
|
|
33
39
|
*/
|
|
34
40
|
export type ConsumerSecuredLoanAssetAttributesRegistrationState = ClosedEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
41
|
+
/**
|
|
42
|
+
* Type of sale. Must be a member of ConsumerSecuredLoan.TypeOfSale, but will not throw for invalid string values (backwards-compatibility).
|
|
43
|
+
*/
|
|
44
|
+
export type ConsumerSecuredLoanAssetAttributesTypeOfSale = string | ConsumerSecuredLoanTypeOfSale;
|
|
45
|
+
/**
|
|
46
|
+
* Net asset value of asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
47
|
+
*/
|
|
48
|
+
export type ConsumerSecuredLoanAssetAttributesNetAssetValue = MonetaryQuantity | string;
|
|
49
|
+
/**
|
|
50
|
+
* Luxury GST, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
51
|
+
*/
|
|
52
|
+
export type ConsumerSecuredLoanAssetAttributesLuxuryGst = MonetaryQuantity | string;
|
|
53
|
+
/**
|
|
54
|
+
* Additional fees concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
55
|
+
*/
|
|
56
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalFees = MonetaryQuantity | string;
|
|
57
|
+
/**
|
|
58
|
+
* Additional taxes concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
59
|
+
*/
|
|
60
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalTaxes = MonetaryQuantity | string;
|
|
35
61
|
/**
|
|
36
62
|
* The asset to be obtained by the customer, using the proposed loan financing.
|
|
37
63
|
*/
|
|
@@ -54,9 +80,9 @@ export type ConsumerSecuredLoanAssetAttributes = {
|
|
|
54
80
|
*/
|
|
55
81
|
assetType: ConsumerSecuredLoanAssetType;
|
|
56
82
|
/**
|
|
57
|
-
* Value of asset
|
|
83
|
+
* Value of asset as either MonetaryQuantity model (preferred) or floating point AUD dollars as string. The latter will be deprecated.
|
|
58
84
|
*/
|
|
59
|
-
assetValue: string;
|
|
85
|
+
assetValue: MonetaryQuantity | string;
|
|
60
86
|
/**
|
|
61
87
|
* Make of asset
|
|
62
88
|
*/
|
|
@@ -106,33 +132,33 @@ export type ConsumerSecuredLoanAssetAttributes = {
|
|
|
106
132
|
*/
|
|
107
133
|
privateSale: boolean;
|
|
108
134
|
/**
|
|
109
|
-
* Type of sale
|
|
135
|
+
* Type of sale. Must be a member of ConsumerSecuredLoan.TypeOfSale, but will not throw for invalid string values (backwards-compatibility).
|
|
110
136
|
*/
|
|
111
|
-
typeOfSale: string;
|
|
137
|
+
typeOfSale: string | ConsumerSecuredLoanTypeOfSale;
|
|
112
138
|
/**
|
|
113
139
|
* Description of asset
|
|
114
140
|
*/
|
|
115
141
|
description: string;
|
|
116
142
|
/**
|
|
117
|
-
* Net asset value of asset, floating point value as string
|
|
143
|
+
* Net asset value of asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
118
144
|
*/
|
|
119
|
-
netAssetValue: string;
|
|
145
|
+
netAssetValue: MonetaryQuantity | string;
|
|
120
146
|
/**
|
|
121
147
|
* Is this asset a luxury asset?
|
|
122
148
|
*/
|
|
123
149
|
isLuxury: boolean;
|
|
124
150
|
/**
|
|
125
|
-
* Luxury GST, floating point value as string
|
|
151
|
+
* Luxury GST, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
126
152
|
*/
|
|
127
|
-
luxuryGst?: string | undefined;
|
|
153
|
+
luxuryGst?: MonetaryQuantity | string | undefined;
|
|
128
154
|
/**
|
|
129
|
-
* Additional fees concerning the asset, floating point value as string
|
|
155
|
+
* Additional fees concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
130
156
|
*/
|
|
131
|
-
additionalFees?: string | undefined;
|
|
157
|
+
additionalFees?: MonetaryQuantity | string | undefined;
|
|
132
158
|
/**
|
|
133
|
-
* Additional taxes concerning the asset, floating point value as string
|
|
159
|
+
* Additional taxes concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
134
160
|
*/
|
|
135
|
-
additionalTaxes?: string | undefined;
|
|
161
|
+
additionalTaxes?: MonetaryQuantity | string | undefined;
|
|
136
162
|
};
|
|
137
163
|
/** @internal */
|
|
138
164
|
export declare const ConsumerSecuredLoanAssetAttributesCondition$inboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesCondition>;
|
|
@@ -157,6 +183,26 @@ export declare namespace ConsumerSecuredLoanAssetAttributesCondition$ {
|
|
|
157
183
|
}>;
|
|
158
184
|
}
|
|
159
185
|
/** @internal */
|
|
186
|
+
export declare const ConsumerSecuredLoanAssetAttributesAssetValue$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue, z.ZodTypeDef, unknown>;
|
|
187
|
+
/** @internal */
|
|
188
|
+
export type ConsumerSecuredLoanAssetAttributesAssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
189
|
+
/** @internal */
|
|
190
|
+
export declare const ConsumerSecuredLoanAssetAttributesAssetValue$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAssetValue>;
|
|
191
|
+
/**
|
|
192
|
+
* @internal
|
|
193
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
194
|
+
*/
|
|
195
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesAssetValue$ {
|
|
196
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAssetValue$inboundSchema` instead. */
|
|
197
|
+
const inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue, z.ZodTypeDef, unknown>;
|
|
198
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAssetValue$outboundSchema` instead. */
|
|
199
|
+
const outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAssetValue>;
|
|
200
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAssetValue$Outbound` instead. */
|
|
201
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesAssetValue$Outbound;
|
|
202
|
+
}
|
|
203
|
+
export declare function consumerSecuredLoanAssetAttributesAssetValueToJSON(consumerSecuredLoanAssetAttributesAssetValue: ConsumerSecuredLoanAssetAttributesAssetValue): string;
|
|
204
|
+
export declare function consumerSecuredLoanAssetAttributesAssetValueFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAssetValue, SDKValidationError>;
|
|
205
|
+
/** @internal */
|
|
160
206
|
export declare const ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
161
207
|
/** @internal */
|
|
162
208
|
export declare const ConsumerSecuredLoanAssetAttributesRegistrationState$outboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
@@ -189,6 +235,106 @@ export declare namespace ConsumerSecuredLoanAssetAttributesRegistrationState$ {
|
|
|
189
235
|
}>;
|
|
190
236
|
}
|
|
191
237
|
/** @internal */
|
|
238
|
+
export declare const ConsumerSecuredLoanAssetAttributesTypeOfSale$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesTypeOfSale, z.ZodTypeDef, unknown>;
|
|
239
|
+
/** @internal */
|
|
240
|
+
export type ConsumerSecuredLoanAssetAttributesTypeOfSale$Outbound = string | string;
|
|
241
|
+
/** @internal */
|
|
242
|
+
export declare const ConsumerSecuredLoanAssetAttributesTypeOfSale$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesTypeOfSale$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesTypeOfSale>;
|
|
243
|
+
/**
|
|
244
|
+
* @internal
|
|
245
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
246
|
+
*/
|
|
247
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesTypeOfSale$ {
|
|
248
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesTypeOfSale$inboundSchema` instead. */
|
|
249
|
+
const inboundSchema: z.ZodType<string, z.ZodTypeDef, unknown>;
|
|
250
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesTypeOfSale$outboundSchema` instead. */
|
|
251
|
+
const outboundSchema: z.ZodType<string, z.ZodTypeDef, string>;
|
|
252
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesTypeOfSale$Outbound` instead. */
|
|
253
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesTypeOfSale$Outbound;
|
|
254
|
+
}
|
|
255
|
+
export declare function consumerSecuredLoanAssetAttributesTypeOfSaleToJSON(consumerSecuredLoanAssetAttributesTypeOfSale: ConsumerSecuredLoanAssetAttributesTypeOfSale): string;
|
|
256
|
+
export declare function consumerSecuredLoanAssetAttributesTypeOfSaleFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesTypeOfSale, SDKValidationError>;
|
|
257
|
+
/** @internal */
|
|
258
|
+
export declare const ConsumerSecuredLoanAssetAttributesNetAssetValue$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesNetAssetValue, z.ZodTypeDef, unknown>;
|
|
259
|
+
/** @internal */
|
|
260
|
+
export type ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
261
|
+
/** @internal */
|
|
262
|
+
export declare const ConsumerSecuredLoanAssetAttributesNetAssetValue$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesNetAssetValue>;
|
|
263
|
+
/**
|
|
264
|
+
* @internal
|
|
265
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
266
|
+
*/
|
|
267
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesNetAssetValue$ {
|
|
268
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesNetAssetValue$inboundSchema` instead. */
|
|
269
|
+
const inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesNetAssetValue, z.ZodTypeDef, unknown>;
|
|
270
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesNetAssetValue$outboundSchema` instead. */
|
|
271
|
+
const outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesNetAssetValue>;
|
|
272
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound` instead. */
|
|
273
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound;
|
|
274
|
+
}
|
|
275
|
+
export declare function consumerSecuredLoanAssetAttributesNetAssetValueToJSON(consumerSecuredLoanAssetAttributesNetAssetValue: ConsumerSecuredLoanAssetAttributesNetAssetValue): string;
|
|
276
|
+
export declare function consumerSecuredLoanAssetAttributesNetAssetValueFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesNetAssetValue, SDKValidationError>;
|
|
277
|
+
/** @internal */
|
|
278
|
+
export declare const ConsumerSecuredLoanAssetAttributesLuxuryGst$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst, z.ZodTypeDef, unknown>;
|
|
279
|
+
/** @internal */
|
|
280
|
+
export type ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound = MonetaryQuantity$Outbound | string;
|
|
281
|
+
/** @internal */
|
|
282
|
+
export declare const ConsumerSecuredLoanAssetAttributesLuxuryGst$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesLuxuryGst>;
|
|
283
|
+
/**
|
|
284
|
+
* @internal
|
|
285
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
286
|
+
*/
|
|
287
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesLuxuryGst$ {
|
|
288
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesLuxuryGst$inboundSchema` instead. */
|
|
289
|
+
const inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst, z.ZodTypeDef, unknown>;
|
|
290
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesLuxuryGst$outboundSchema` instead. */
|
|
291
|
+
const outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesLuxuryGst>;
|
|
292
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound` instead. */
|
|
293
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound;
|
|
294
|
+
}
|
|
295
|
+
export declare function consumerSecuredLoanAssetAttributesLuxuryGstToJSON(consumerSecuredLoanAssetAttributesLuxuryGst: ConsumerSecuredLoanAssetAttributesLuxuryGst): string;
|
|
296
|
+
export declare function consumerSecuredLoanAssetAttributesLuxuryGstFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesLuxuryGst, SDKValidationError>;
|
|
297
|
+
/** @internal */
|
|
298
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalFees$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees, z.ZodTypeDef, unknown>;
|
|
299
|
+
/** @internal */
|
|
300
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound = MonetaryQuantity$Outbound | string;
|
|
301
|
+
/** @internal */
|
|
302
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalFees$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalFees>;
|
|
303
|
+
/**
|
|
304
|
+
* @internal
|
|
305
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
306
|
+
*/
|
|
307
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesAdditionalFees$ {
|
|
308
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalFees$inboundSchema` instead. */
|
|
309
|
+
const inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees, z.ZodTypeDef, unknown>;
|
|
310
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalFees$outboundSchema` instead. */
|
|
311
|
+
const outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalFees>;
|
|
312
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound` instead. */
|
|
313
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound;
|
|
314
|
+
}
|
|
315
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalFeesToJSON(consumerSecuredLoanAssetAttributesAdditionalFees: ConsumerSecuredLoanAssetAttributesAdditionalFees): string;
|
|
316
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalFeesFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAdditionalFees, SDKValidationError>;
|
|
317
|
+
/** @internal */
|
|
318
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalTaxes$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes, z.ZodTypeDef, unknown>;
|
|
319
|
+
/** @internal */
|
|
320
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound = MonetaryQuantity$Outbound | string;
|
|
321
|
+
/** @internal */
|
|
322
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalTaxes$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalTaxes>;
|
|
323
|
+
/**
|
|
324
|
+
* @internal
|
|
325
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
326
|
+
*/
|
|
327
|
+
export declare namespace ConsumerSecuredLoanAssetAttributesAdditionalTaxes$ {
|
|
328
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalTaxes$inboundSchema` instead. */
|
|
329
|
+
const inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes, z.ZodTypeDef, unknown>;
|
|
330
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalTaxes$outboundSchema` instead. */
|
|
331
|
+
const outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalTaxes>;
|
|
332
|
+
/** @deprecated use `ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound` instead. */
|
|
333
|
+
type Outbound = ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound;
|
|
334
|
+
}
|
|
335
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalTaxesToJSON(consumerSecuredLoanAssetAttributesAdditionalTaxes: ConsumerSecuredLoanAssetAttributesAdditionalTaxes): string;
|
|
336
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalTaxesFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAdditionalTaxes, SDKValidationError>;
|
|
337
|
+
/** @internal */
|
|
192
338
|
export declare const ConsumerSecuredLoanAssetAttributes$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributes, z.ZodTypeDef, unknown>;
|
|
193
339
|
/** @internal */
|
|
194
340
|
export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
@@ -197,7 +343,7 @@ export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
|
197
343
|
ageOfAssetAtEnd: number;
|
|
198
344
|
condition: string;
|
|
199
345
|
assetType: string;
|
|
200
|
-
assetValue: string;
|
|
346
|
+
assetValue: MonetaryQuantity$Outbound | string;
|
|
201
347
|
make?: string | undefined;
|
|
202
348
|
assetModel?: string | undefined;
|
|
203
349
|
registrationNumber?: string | undefined;
|
|
@@ -210,13 +356,13 @@ export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
|
210
356
|
supplierContactName?: string | undefined;
|
|
211
357
|
supplierEmail?: string | undefined;
|
|
212
358
|
privateSale: boolean;
|
|
213
|
-
typeOfSale: string;
|
|
359
|
+
typeOfSale: string | string;
|
|
214
360
|
description: string;
|
|
215
|
-
netAssetValue: string;
|
|
361
|
+
netAssetValue: MonetaryQuantity$Outbound | string;
|
|
216
362
|
isLuxury: boolean;
|
|
217
|
-
luxuryGst?: string | undefined;
|
|
218
|
-
additionalFees?: string | undefined;
|
|
219
|
-
additionalTaxes?: string | undefined;
|
|
363
|
+
luxuryGst?: MonetaryQuantity$Outbound | string | undefined;
|
|
364
|
+
additionalFees?: MonetaryQuantity$Outbound | string | undefined;
|
|
365
|
+
additionalTaxes?: MonetaryQuantity$Outbound | string | undefined;
|
|
220
366
|
};
|
|
221
367
|
/** @internal */
|
|
222
368
|
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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"}
|