@financeable/aggregation 0.8.1 → 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/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 +93 -68
- package/models/components/consumersecuredloanassetattributes.d.ts.map +1 -1
- package/models/components/consumersecuredloanassetattributes.js +108 -78
- package/models/components/consumersecuredloanassetattributes.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/index.d.ts +2 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +2 -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 +318 -131
- package/src/models/components/consumersecuredloantypeofsale.ts +39 -0
- package/src/models/components/index.ts +2 -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,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 { ConsumerSecuredLoanTypeOfSale } from "./consumersecuredloantypeofsale.js";
|
|
6
7
|
import { MonetaryQuantity, MonetaryQuantity$Outbound } from "./monetaryquantity.js";
|
|
7
8
|
/**
|
|
8
9
|
* Condition of asset
|
|
@@ -19,7 +20,7 @@ export type ConsumerSecuredLoanAssetAttributesCondition = ClosedEnum<typeof Cons
|
|
|
19
20
|
/**
|
|
20
21
|
* Value of asset as either MonetaryQuantity model (preferred) or floating point AUD dollars as string. The latter will be deprecated.
|
|
21
22
|
*/
|
|
22
|
-
export type
|
|
23
|
+
export type ConsumerSecuredLoanAssetAttributesAssetValue = MonetaryQuantity | string;
|
|
23
24
|
/**
|
|
24
25
|
* Registration state (or territory) of asset
|
|
25
26
|
*/
|
|
@@ -37,22 +38,26 @@ export declare const ConsumerSecuredLoanAssetAttributesRegistrationState: {
|
|
|
37
38
|
* Registration state (or territory) of asset
|
|
38
39
|
*/
|
|
39
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;
|
|
40
45
|
/**
|
|
41
46
|
* Net asset value of asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
42
47
|
*/
|
|
43
|
-
export type
|
|
48
|
+
export type ConsumerSecuredLoanAssetAttributesNetAssetValue = MonetaryQuantity | string;
|
|
44
49
|
/**
|
|
45
50
|
* Luxury GST, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
46
51
|
*/
|
|
47
|
-
export type
|
|
52
|
+
export type ConsumerSecuredLoanAssetAttributesLuxuryGst = MonetaryQuantity | string;
|
|
48
53
|
/**
|
|
49
54
|
* Additional fees concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
50
55
|
*/
|
|
51
|
-
export type
|
|
56
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalFees = MonetaryQuantity | string;
|
|
52
57
|
/**
|
|
53
58
|
* Additional taxes concerning the asset, provided as either MonetaryQuantity (preferred) or floating point dollar value as string (latter will be deprecated)
|
|
54
59
|
*/
|
|
55
|
-
export type
|
|
60
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalTaxes = MonetaryQuantity | string;
|
|
56
61
|
/**
|
|
57
62
|
* The asset to be obtained by the customer, using the proposed loan financing.
|
|
58
63
|
*/
|
|
@@ -127,9 +132,9 @@ export type ConsumerSecuredLoanAssetAttributes = {
|
|
|
127
132
|
*/
|
|
128
133
|
privateSale: boolean;
|
|
129
134
|
/**
|
|
130
|
-
* Type of sale
|
|
135
|
+
* Type of sale. Must be a member of ConsumerSecuredLoan.TypeOfSale, but will not throw for invalid string values (backwards-compatibility).
|
|
131
136
|
*/
|
|
132
|
-
typeOfSale: string;
|
|
137
|
+
typeOfSale: string | ConsumerSecuredLoanTypeOfSale;
|
|
133
138
|
/**
|
|
134
139
|
* Description of asset
|
|
135
140
|
*/
|
|
@@ -178,25 +183,25 @@ export declare namespace ConsumerSecuredLoanAssetAttributesCondition$ {
|
|
|
178
183
|
}>;
|
|
179
184
|
}
|
|
180
185
|
/** @internal */
|
|
181
|
-
export declare const
|
|
186
|
+
export declare const ConsumerSecuredLoanAssetAttributesAssetValue$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue, z.ZodTypeDef, unknown>;
|
|
182
187
|
/** @internal */
|
|
183
|
-
export type
|
|
188
|
+
export type ConsumerSecuredLoanAssetAttributesAssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
184
189
|
/** @internal */
|
|
185
|
-
export declare const
|
|
190
|
+
export declare const ConsumerSecuredLoanAssetAttributesAssetValue$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAssetValue>;
|
|
186
191
|
/**
|
|
187
192
|
* @internal
|
|
188
193
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
189
194
|
*/
|
|
190
|
-
export declare namespace
|
|
191
|
-
/** @deprecated use `
|
|
192
|
-
const inboundSchema: z.ZodType<
|
|
193
|
-
/** @deprecated use `
|
|
194
|
-
const outboundSchema: z.ZodType<
|
|
195
|
-
/** @deprecated use `
|
|
196
|
-
type Outbound =
|
|
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;
|
|
197
202
|
}
|
|
198
|
-
export declare function
|
|
199
|
-
export declare function
|
|
203
|
+
export declare function consumerSecuredLoanAssetAttributesAssetValueToJSON(consumerSecuredLoanAssetAttributesAssetValue: ConsumerSecuredLoanAssetAttributesAssetValue): string;
|
|
204
|
+
export declare function consumerSecuredLoanAssetAttributesAssetValueFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAssetValue, SDKValidationError>;
|
|
200
205
|
/** @internal */
|
|
201
206
|
export declare const ConsumerSecuredLoanAssetAttributesRegistrationState$inboundSchema: z.ZodNativeEnum<typeof ConsumerSecuredLoanAssetAttributesRegistrationState>;
|
|
202
207
|
/** @internal */
|
|
@@ -230,85 +235,105 @@ export declare namespace ConsumerSecuredLoanAssetAttributesRegistrationState$ {
|
|
|
230
235
|
}>;
|
|
231
236
|
}
|
|
232
237
|
/** @internal */
|
|
233
|
-
export declare const
|
|
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>;
|
|
234
259
|
/** @internal */
|
|
235
|
-
export type
|
|
260
|
+
export type ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound = MonetaryQuantity$Outbound | string;
|
|
236
261
|
/** @internal */
|
|
237
|
-
export declare const
|
|
262
|
+
export declare const ConsumerSecuredLoanAssetAttributesNetAssetValue$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesNetAssetValue$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesNetAssetValue>;
|
|
238
263
|
/**
|
|
239
264
|
* @internal
|
|
240
265
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
241
266
|
*/
|
|
242
|
-
export declare namespace
|
|
243
|
-
/** @deprecated use `
|
|
244
|
-
const inboundSchema: z.ZodType<
|
|
245
|
-
/** @deprecated use `
|
|
246
|
-
const outboundSchema: z.ZodType<
|
|
247
|
-
/** @deprecated use `
|
|
248
|
-
type Outbound =
|
|
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;
|
|
249
274
|
}
|
|
250
|
-
export declare function
|
|
251
|
-
export declare function
|
|
275
|
+
export declare function consumerSecuredLoanAssetAttributesNetAssetValueToJSON(consumerSecuredLoanAssetAttributesNetAssetValue: ConsumerSecuredLoanAssetAttributesNetAssetValue): string;
|
|
276
|
+
export declare function consumerSecuredLoanAssetAttributesNetAssetValueFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesNetAssetValue, SDKValidationError>;
|
|
252
277
|
/** @internal */
|
|
253
|
-
export declare const
|
|
278
|
+
export declare const ConsumerSecuredLoanAssetAttributesLuxuryGst$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst, z.ZodTypeDef, unknown>;
|
|
254
279
|
/** @internal */
|
|
255
|
-
export type
|
|
280
|
+
export type ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound = MonetaryQuantity$Outbound | string;
|
|
256
281
|
/** @internal */
|
|
257
|
-
export declare const
|
|
282
|
+
export declare const ConsumerSecuredLoanAssetAttributesLuxuryGst$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesLuxuryGst$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesLuxuryGst>;
|
|
258
283
|
/**
|
|
259
284
|
* @internal
|
|
260
285
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
261
286
|
*/
|
|
262
|
-
export declare namespace
|
|
263
|
-
/** @deprecated use `
|
|
264
|
-
const inboundSchema: z.ZodType<
|
|
265
|
-
/** @deprecated use `
|
|
266
|
-
const outboundSchema: z.ZodType<
|
|
267
|
-
/** @deprecated use `
|
|
268
|
-
type Outbound =
|
|
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;
|
|
269
294
|
}
|
|
270
|
-
export declare function
|
|
271
|
-
export declare function
|
|
295
|
+
export declare function consumerSecuredLoanAssetAttributesLuxuryGstToJSON(consumerSecuredLoanAssetAttributesLuxuryGst: ConsumerSecuredLoanAssetAttributesLuxuryGst): string;
|
|
296
|
+
export declare function consumerSecuredLoanAssetAttributesLuxuryGstFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesLuxuryGst, SDKValidationError>;
|
|
272
297
|
/** @internal */
|
|
273
|
-
export declare const
|
|
298
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalFees$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees, z.ZodTypeDef, unknown>;
|
|
274
299
|
/** @internal */
|
|
275
|
-
export type
|
|
300
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound = MonetaryQuantity$Outbound | string;
|
|
276
301
|
/** @internal */
|
|
277
|
-
export declare const
|
|
302
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalFees$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalFees$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalFees>;
|
|
278
303
|
/**
|
|
279
304
|
* @internal
|
|
280
305
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
281
306
|
*/
|
|
282
|
-
export declare namespace
|
|
283
|
-
/** @deprecated use `
|
|
284
|
-
const inboundSchema: z.ZodType<
|
|
285
|
-
/** @deprecated use `
|
|
286
|
-
const outboundSchema: z.ZodType<
|
|
287
|
-
/** @deprecated use `
|
|
288
|
-
type Outbound =
|
|
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;
|
|
289
314
|
}
|
|
290
|
-
export declare function
|
|
291
|
-
export declare function
|
|
315
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalFeesToJSON(consumerSecuredLoanAssetAttributesAdditionalFees: ConsumerSecuredLoanAssetAttributesAdditionalFees): string;
|
|
316
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalFeesFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAdditionalFees, SDKValidationError>;
|
|
292
317
|
/** @internal */
|
|
293
|
-
export declare const
|
|
318
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalTaxes$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes, z.ZodTypeDef, unknown>;
|
|
294
319
|
/** @internal */
|
|
295
|
-
export type
|
|
320
|
+
export type ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound = MonetaryQuantity$Outbound | string;
|
|
296
321
|
/** @internal */
|
|
297
|
-
export declare const
|
|
322
|
+
export declare const ConsumerSecuredLoanAssetAttributesAdditionalTaxes$outboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributesAdditionalTaxes$Outbound, z.ZodTypeDef, ConsumerSecuredLoanAssetAttributesAdditionalTaxes>;
|
|
298
323
|
/**
|
|
299
324
|
* @internal
|
|
300
325
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
301
326
|
*/
|
|
302
|
-
export declare namespace
|
|
303
|
-
/** @deprecated use `
|
|
304
|
-
const inboundSchema: z.ZodType<
|
|
305
|
-
/** @deprecated use `
|
|
306
|
-
const outboundSchema: z.ZodType<
|
|
307
|
-
/** @deprecated use `
|
|
308
|
-
type Outbound =
|
|
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;
|
|
309
334
|
}
|
|
310
|
-
export declare function
|
|
311
|
-
export declare function
|
|
335
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalTaxesToJSON(consumerSecuredLoanAssetAttributesAdditionalTaxes: ConsumerSecuredLoanAssetAttributesAdditionalTaxes): string;
|
|
336
|
+
export declare function consumerSecuredLoanAssetAttributesAdditionalTaxesFromJSON(jsonString: string): SafeParseResult<ConsumerSecuredLoanAssetAttributesAdditionalTaxes, SDKValidationError>;
|
|
312
337
|
/** @internal */
|
|
313
338
|
export declare const ConsumerSecuredLoanAssetAttributes$inboundSchema: z.ZodType<ConsumerSecuredLoanAssetAttributes, z.ZodTypeDef, unknown>;
|
|
314
339
|
/** @internal */
|
|
@@ -331,7 +356,7 @@ export type ConsumerSecuredLoanAssetAttributes$Outbound = {
|
|
|
331
356
|
supplierContactName?: string | undefined;
|
|
332
357
|
supplierEmail?: string | undefined;
|
|
333
358
|
privateSale: boolean;
|
|
334
|
-
typeOfSale: string;
|
|
359
|
+
typeOfSale: string | string;
|
|
335
360
|
description: string;
|
|
336
361
|
netAssetValue: MonetaryQuantity$Outbound | string;
|
|
337
362
|
isLuxury: boolean;
|
|
@@ -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;AAC3C,OAAO,EACL,gBAAgB,EAEhB,yBAAyB,EAE1B,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,eAAO,MAAM,2CAA2C;;;;CAI9C,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,2CAA2C,GAAG,UAAU,CAClE,OAAO,2CAA2C,CACnD,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"consumersecuredloanassetattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/consumersecuredloanassetattributes.ts"],"names":[],"mappings":"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"}
|