@financeable/aggregation 0.7.4 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/commercialsecuredloancommercialapplicationrelationships.d.ts +192 -14
- package/models/components/commercialsecuredloancommercialapplicationrelationships.d.ts.map +1 -1
- package/models/components/commercialsecuredloancommercialapplicationrelationships.js +186 -19
- package/models/components/commercialsecuredloancommercialapplicationrelationships.js.map +1 -1
- package/models/components/consumersecuredloanconsumerapplicationrelationships.d.ts +192 -14
- package/models/components/consumersecuredloanconsumerapplicationrelationships.d.ts.map +1 -1
- package/models/components/consumersecuredloanconsumerapplicationrelationships.js +191 -20
- package/models/components/consumersecuredloanconsumerapplicationrelationships.js.map +1 -1
- package/models/components/currencycodeiso4217.d.ts +25 -0
- package/models/components/currencycodeiso4217.d.ts.map +1 -0
- package/models/components/currencycodeiso4217.js +59 -0
- package/models/components/currencycodeiso4217.js.map +1 -0
- package/models/components/customerassetattributes.d.ts +37 -0
- package/models/components/customerassetattributes.d.ts.map +1 -0
- package/models/components/customerassetattributes.js +77 -0
- package/models/components/customerassetattributes.js.map +1 -0
- package/models/components/customerassettype.d.ts +46 -0
- package/models/components/customerassettype.d.ts.map +1 -0
- package/models/components/customerassettype.js +66 -0
- package/models/components/customerassettype.js.map +1 -0
- package/models/components/customerliabilityattributes.d.ts +46 -0
- package/models/components/customerliabilityattributes.d.ts.map +1 -0
- package/models/components/customerliabilityattributes.js +88 -0
- package/models/components/customerliabilityattributes.js.map +1 -0
- package/models/components/customerliabilityrepaymentfrequency.d.ts +31 -0
- package/models/components/customerliabilityrepaymentfrequency.d.ts.map +1 -0
- package/models/components/customerliabilityrepaymentfrequency.js +61 -0
- package/models/components/customerliabilityrepaymentfrequency.js.map +1 -0
- package/models/components/customerliabilitytype.d.ts +40 -0
- package/models/components/customerliabilitytype.d.ts.map +1 -0
- package/models/components/customerliabilitytype.js +64 -0
- package/models/components/customerliabilitytype.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/models/components/loandetailsattributes.d.ts +252 -30
- package/models/components/loandetailsattributes.d.ts.map +1 -1
- package/models/components/loandetailsattributes.js +266 -19
- package/models/components/loandetailsattributes.js.map +1 -1
- package/models/components/monetaryquantity.d.ts +63 -0
- package/models/components/monetaryquantity.d.ts.map +1 -0
- package/models/components/monetaryquantity.js +93 -0
- package/models/components/monetaryquantity.js.map +1 -0
- package/models/components/percentagequantity.d.ts +57 -0
- package/models/components/percentagequantity.d.ts.map +1 -0
- package/models/components/percentagequantity.js +89 -0
- package/models/components/percentagequantity.js.map +1 -0
- package/models/operations/createapplication.d.ts +102 -4
- package/models/operations/createapplication.d.ts.map +1 -1
- package/models/operations/createapplication.js +107 -1
- package/models/operations/createapplication.js.map +1 -1
- package/package.json +2 -2
- package/src/lib/config.ts +3 -3
- package/src/models/components/commercialsecuredloancommercialapplicationrelationships.ts +426 -25
- package/src/models/components/consumersecuredloanconsumerapplicationrelationships.ts +480 -26
- package/src/models/components/currencycodeiso4217.ts +32 -0
- package/src/models/components/customerassetattributes.ts +89 -0
- package/src/models/components/customerassettype.ts +39 -0
- package/src/models/components/customerliabilityattributes.ts +114 -0
- package/src/models/components/customerliabilityrepaymentfrequency.ts +38 -0
- package/src/models/components/customerliabilitytype.ts +37 -0
- package/src/models/components/index.ts +8 -0
- package/src/models/components/loandetailsattributes.ts +537 -48
- package/src/models/components/monetaryquantity.ts +110 -0
- package/src/models/components/percentagequantity.ts +102 -0
- package/src/models/operations/createapplication.ts +191 -3
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
export declare const CustomerAssetType: {
|
|
4
|
+
readonly PrimaryOccupiedResidentialProperty: "PRIMARY_OCCUPIED_RESIDENTIAL_PROPERTY";
|
|
5
|
+
readonly InvestmentProperty: "INVESTMENT_PROPERTY";
|
|
6
|
+
readonly CommercialProperty: "COMMERCIAL_PROPERTY";
|
|
7
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
8
|
+
readonly CashSavings: "CASH_SAVINGS";
|
|
9
|
+
readonly InvestmentShares: "INVESTMENT_SHARES";
|
|
10
|
+
readonly Superannuation: "SUPERANNUATION";
|
|
11
|
+
readonly Other: "OTHER";
|
|
12
|
+
};
|
|
13
|
+
export type CustomerAssetType = ClosedEnum<typeof CustomerAssetType>;
|
|
14
|
+
/** @internal */
|
|
15
|
+
export declare const CustomerAssetType$inboundSchema: z.ZodNativeEnum<typeof CustomerAssetType>;
|
|
16
|
+
/** @internal */
|
|
17
|
+
export declare const CustomerAssetType$outboundSchema: z.ZodNativeEnum<typeof CustomerAssetType>;
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
21
|
+
*/
|
|
22
|
+
export declare namespace CustomerAssetType$ {
|
|
23
|
+
/** @deprecated use `CustomerAssetType$inboundSchema` instead. */
|
|
24
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
25
|
+
readonly PrimaryOccupiedResidentialProperty: "PRIMARY_OCCUPIED_RESIDENTIAL_PROPERTY";
|
|
26
|
+
readonly InvestmentProperty: "INVESTMENT_PROPERTY";
|
|
27
|
+
readonly CommercialProperty: "COMMERCIAL_PROPERTY";
|
|
28
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
29
|
+
readonly CashSavings: "CASH_SAVINGS";
|
|
30
|
+
readonly InvestmentShares: "INVESTMENT_SHARES";
|
|
31
|
+
readonly Superannuation: "SUPERANNUATION";
|
|
32
|
+
readonly Other: "OTHER";
|
|
33
|
+
}>;
|
|
34
|
+
/** @deprecated use `CustomerAssetType$outboundSchema` instead. */
|
|
35
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
36
|
+
readonly PrimaryOccupiedResidentialProperty: "PRIMARY_OCCUPIED_RESIDENTIAL_PROPERTY";
|
|
37
|
+
readonly InvestmentProperty: "INVESTMENT_PROPERTY";
|
|
38
|
+
readonly CommercialProperty: "COMMERCIAL_PROPERTY";
|
|
39
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
40
|
+
readonly CashSavings: "CASH_SAVINGS";
|
|
41
|
+
readonly InvestmentShares: "INVESTMENT_SHARES";
|
|
42
|
+
readonly Superannuation: "SUPERANNUATION";
|
|
43
|
+
readonly Other: "OTHER";
|
|
44
|
+
}>;
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=customerassettype.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerassettype.d.ts","sourceRoot":"","sources":["../../src/models/components/customerassettype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,iBAAiB;;;;;;;;;CASpB,CAAC;AACX,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAErE,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,aAAa,CAC3D,OAAO,iBAAiB,CACS,CAAC;AAEpC,gBAAgB;AAChB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,aAAa,CAC5D,OAAO,iBAAiB,CACS,CAAC;AAEpC;;;GAGG;AACH,yBAAiB,kBAAkB,CAAC;IAClC,iEAAiE;IAC1D,MAAM,aAAa;;;;;;;;;MAAkC,CAAC;IAC7D,kEAAkE;IAC3D,MAAM,cAAc;;;;;;;;;MAAmC,CAAC;CAChE"}
|
|
@@ -0,0 +1,66 @@
|
|
|
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.CustomerAssetType$ = exports.CustomerAssetType$outboundSchema = exports.CustomerAssetType$inboundSchema = exports.CustomerAssetType = void 0;
|
|
40
|
+
const z = __importStar(require("zod"));
|
|
41
|
+
exports.CustomerAssetType = {
|
|
42
|
+
PrimaryOccupiedResidentialProperty: "PRIMARY_OCCUPIED_RESIDENTIAL_PROPERTY",
|
|
43
|
+
InvestmentProperty: "INVESTMENT_PROPERTY",
|
|
44
|
+
CommercialProperty: "COMMERCIAL_PROPERTY",
|
|
45
|
+
MotorVehicle: "MOTOR_VEHICLE",
|
|
46
|
+
CashSavings: "CASH_SAVINGS",
|
|
47
|
+
InvestmentShares: "INVESTMENT_SHARES",
|
|
48
|
+
Superannuation: "SUPERANNUATION",
|
|
49
|
+
Other: "OTHER",
|
|
50
|
+
};
|
|
51
|
+
/** @internal */
|
|
52
|
+
exports.CustomerAssetType$inboundSchema = z.nativeEnum(exports.CustomerAssetType);
|
|
53
|
+
/** @internal */
|
|
54
|
+
exports.CustomerAssetType$outboundSchema = exports.CustomerAssetType$inboundSchema;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
58
|
+
*/
|
|
59
|
+
var CustomerAssetType$;
|
|
60
|
+
(function (CustomerAssetType$) {
|
|
61
|
+
/** @deprecated use `CustomerAssetType$inboundSchema` instead. */
|
|
62
|
+
CustomerAssetType$.inboundSchema = exports.CustomerAssetType$inboundSchema;
|
|
63
|
+
/** @deprecated use `CustomerAssetType$outboundSchema` instead. */
|
|
64
|
+
CustomerAssetType$.outboundSchema = exports.CustomerAssetType$outboundSchema;
|
|
65
|
+
})(CustomerAssetType$ || (exports.CustomerAssetType$ = CustomerAssetType$ = {}));
|
|
66
|
+
//# sourceMappingURL=customerassettype.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerassettype.js","sourceRoot":"","sources":["../../src/models/components/customerassettype.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,iBAAiB,GAAG;IAC/B,kCAAkC,EAAE,uCAAuC;IAC3E,kBAAkB,EAAE,qBAAqB;IACzC,kBAAkB,EAAE,qBAAqB;IACzC,YAAY,EAAE,eAAe;IAC7B,WAAW,EAAE,cAAc;IAC3B,gBAAgB,EAAE,mBAAmB;IACrC,cAAc,EAAE,gBAAgB;IAChC,KAAK,EAAE,OAAO;CACN,CAAC;AAGX,gBAAgB;AACH,QAAA,+BAA+B,GAExC,CAAC,CAAC,UAAU,CAAC,yBAAiB,CAAC,CAAC;AAEpC,gBAAgB;AACH,QAAA,gCAAgC,GAEzC,uCAA+B,CAAC;AAEpC;;;GAGG;AACH,IAAiB,kBAAkB,CAKlC;AALD,WAAiB,kBAAkB;IACjC,iEAAiE;IACpD,gCAAa,GAAG,uCAA+B,CAAC;IAC7D,kEAAkE;IACrD,iCAAc,GAAG,wCAAgC,CAAC;AACjE,CAAC,EALgB,kBAAkB,kCAAlB,kBAAkB,QAKlC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
4
|
+
import { CustomerLiabilityRepaymentFrequency } from "./customerliabilityrepaymentfrequency.js";
|
|
5
|
+
import { CustomerLiabilityType } from "./customerliabilitytype.js";
|
|
6
|
+
import { MonetaryQuantity, MonetaryQuantity$Outbound } from "./monetaryquantity.js";
|
|
7
|
+
export type CustomerLiabilityAttributes = {
|
|
8
|
+
id?: string | undefined;
|
|
9
|
+
liabilityType: CustomerLiabilityType;
|
|
10
|
+
outstandingAmount?: MonetaryQuantity | undefined;
|
|
11
|
+
limit?: MonetaryQuantity | undefined;
|
|
12
|
+
financier?: string | undefined;
|
|
13
|
+
repaymentFrequency?: CustomerLiabilityRepaymentFrequency | undefined;
|
|
14
|
+
repaymentAmount?: MonetaryQuantity | undefined;
|
|
15
|
+
description?: string | undefined;
|
|
16
|
+
};
|
|
17
|
+
/** @internal */
|
|
18
|
+
export declare const CustomerLiabilityAttributes$inboundSchema: z.ZodType<CustomerLiabilityAttributes, z.ZodTypeDef, unknown>;
|
|
19
|
+
/** @internal */
|
|
20
|
+
export type CustomerLiabilityAttributes$Outbound = {
|
|
21
|
+
id?: string | undefined;
|
|
22
|
+
liabilityType: string;
|
|
23
|
+
outstandingAmount?: MonetaryQuantity$Outbound | undefined;
|
|
24
|
+
limit?: MonetaryQuantity$Outbound | undefined;
|
|
25
|
+
financier?: string | undefined;
|
|
26
|
+
repaymentFrequency?: string | undefined;
|
|
27
|
+
repaymentAmount?: MonetaryQuantity$Outbound | undefined;
|
|
28
|
+
description?: string | undefined;
|
|
29
|
+
};
|
|
30
|
+
/** @internal */
|
|
31
|
+
export declare const CustomerLiabilityAttributes$outboundSchema: z.ZodType<CustomerLiabilityAttributes$Outbound, z.ZodTypeDef, CustomerLiabilityAttributes>;
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
35
|
+
*/
|
|
36
|
+
export declare namespace CustomerLiabilityAttributes$ {
|
|
37
|
+
/** @deprecated use `CustomerLiabilityAttributes$inboundSchema` instead. */
|
|
38
|
+
const inboundSchema: z.ZodType<CustomerLiabilityAttributes, z.ZodTypeDef, unknown>;
|
|
39
|
+
/** @deprecated use `CustomerLiabilityAttributes$outboundSchema` instead. */
|
|
40
|
+
const outboundSchema: z.ZodType<CustomerLiabilityAttributes$Outbound, z.ZodTypeDef, CustomerLiabilityAttributes>;
|
|
41
|
+
/** @deprecated use `CustomerLiabilityAttributes$Outbound` instead. */
|
|
42
|
+
type Outbound = CustomerLiabilityAttributes$Outbound;
|
|
43
|
+
}
|
|
44
|
+
export declare function customerLiabilityAttributesToJSON(customerLiabilityAttributes: CustomerLiabilityAttributes): string;
|
|
45
|
+
export declare function customerLiabilityAttributesFromJSON(jsonString: string): SafeParseResult<CustomerLiabilityAttributes, SDKValidationError>;
|
|
46
|
+
//# sourceMappingURL=customerliabilityattributes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilityattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/customerliabilityattributes.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,mCAAmC,EAGpC,MAAM,0CAA0C,CAAC;AAClD,OAAO,EACL,qBAAqB,EAGtB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,gBAAgB,EAEhB,yBAAyB,EAE1B,MAAM,uBAAuB,CAAC;AAE/B,MAAM,MAAM,2BAA2B,GAAG;IACxC,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,aAAa,EAAE,qBAAqB,CAAC;IACrC,iBAAiB,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IACjD,KAAK,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IACrC,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,kBAAkB,CAAC,EAAE,mCAAmC,GAAG,SAAS,CAAC;IACrE,eAAe,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC/C,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,2BAA2B,EAC3B,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,oCAAoC,GAAG;IACjD,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IAC1D,KAAK,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IAC9C,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxC,eAAe,CAAC,EAAE,yBAAyB,GAAG,SAAS,CAAC;IACxD,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,oCAAoC,EACpC,CAAC,CAAC,UAAU,EACZ,2BAA2B,CAW3B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,4BAA4B,CAAC;IAC5C,2EAA2E;IACpE,MAAM,aAAa,+DAA4C,CAAC;IACvE,4EAA4E;IACrE,MAAM,cAAc,4FAA6C,CAAC;IACzE,sEAAsE;IACtE,KAAY,QAAQ,GAAG,oCAAoC,CAAC;CAC7D;AAED,wBAAgB,iCAAiC,CAC/C,2BAA2B,EAAE,2BAA2B,GACvD,MAAM,CAMR;AAED,wBAAgB,mCAAmC,CACjD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,2BAA2B,EAAE,kBAAkB,CAAC,CAMlE"}
|
|
@@ -0,0 +1,88 @@
|
|
|
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.CustomerLiabilityAttributes$ = exports.CustomerLiabilityAttributes$outboundSchema = exports.CustomerLiabilityAttributes$inboundSchema = void 0;
|
|
40
|
+
exports.customerLiabilityAttributesToJSON = customerLiabilityAttributesToJSON;
|
|
41
|
+
exports.customerLiabilityAttributesFromJSON = customerLiabilityAttributesFromJSON;
|
|
42
|
+
const z = __importStar(require("zod"));
|
|
43
|
+
const schemas_js_1 = require("../../lib/schemas.js");
|
|
44
|
+
const customerliabilityrepaymentfrequency_js_1 = require("./customerliabilityrepaymentfrequency.js");
|
|
45
|
+
const customerliabilitytype_js_1 = require("./customerliabilitytype.js");
|
|
46
|
+
const monetaryquantity_js_1 = require("./monetaryquantity.js");
|
|
47
|
+
/** @internal */
|
|
48
|
+
exports.CustomerLiabilityAttributes$inboundSchema = z.object({
|
|
49
|
+
id: z.string().optional(),
|
|
50
|
+
liabilityType: customerliabilitytype_js_1.CustomerLiabilityType$inboundSchema,
|
|
51
|
+
outstandingAmount: monetaryquantity_js_1.MonetaryQuantity$inboundSchema.optional(),
|
|
52
|
+
limit: monetaryquantity_js_1.MonetaryQuantity$inboundSchema.optional(),
|
|
53
|
+
financier: z.string().optional(),
|
|
54
|
+
repaymentFrequency: customerliabilityrepaymentfrequency_js_1.CustomerLiabilityRepaymentFrequency$inboundSchema
|
|
55
|
+
.optional(),
|
|
56
|
+
repaymentAmount: monetaryquantity_js_1.MonetaryQuantity$inboundSchema.optional(),
|
|
57
|
+
description: z.string().optional(),
|
|
58
|
+
});
|
|
59
|
+
/** @internal */
|
|
60
|
+
exports.CustomerLiabilityAttributes$outboundSchema = z.object({
|
|
61
|
+
id: z.string().optional(),
|
|
62
|
+
liabilityType: customerliabilitytype_js_1.CustomerLiabilityType$outboundSchema,
|
|
63
|
+
outstandingAmount: monetaryquantity_js_1.MonetaryQuantity$outboundSchema.optional(),
|
|
64
|
+
limit: monetaryquantity_js_1.MonetaryQuantity$outboundSchema.optional(),
|
|
65
|
+
financier: z.string().optional(),
|
|
66
|
+
repaymentFrequency: customerliabilityrepaymentfrequency_js_1.CustomerLiabilityRepaymentFrequency$outboundSchema
|
|
67
|
+
.optional(),
|
|
68
|
+
repaymentAmount: monetaryquantity_js_1.MonetaryQuantity$outboundSchema.optional(),
|
|
69
|
+
description: z.string().optional(),
|
|
70
|
+
});
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
74
|
+
*/
|
|
75
|
+
var CustomerLiabilityAttributes$;
|
|
76
|
+
(function (CustomerLiabilityAttributes$) {
|
|
77
|
+
/** @deprecated use `CustomerLiabilityAttributes$inboundSchema` instead. */
|
|
78
|
+
CustomerLiabilityAttributes$.inboundSchema = exports.CustomerLiabilityAttributes$inboundSchema;
|
|
79
|
+
/** @deprecated use `CustomerLiabilityAttributes$outboundSchema` instead. */
|
|
80
|
+
CustomerLiabilityAttributes$.outboundSchema = exports.CustomerLiabilityAttributes$outboundSchema;
|
|
81
|
+
})(CustomerLiabilityAttributes$ || (exports.CustomerLiabilityAttributes$ = CustomerLiabilityAttributes$ = {}));
|
|
82
|
+
function customerLiabilityAttributesToJSON(customerLiabilityAttributes) {
|
|
83
|
+
return JSON.stringify(exports.CustomerLiabilityAttributes$outboundSchema.parse(customerLiabilityAttributes));
|
|
84
|
+
}
|
|
85
|
+
function customerLiabilityAttributesFromJSON(jsonString) {
|
|
86
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CustomerLiabilityAttributes$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CustomerLiabilityAttributes' from JSON`);
|
|
87
|
+
}
|
|
88
|
+
//# sourceMappingURL=customerliabilityattributes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilityattributes.js","sourceRoot":"","sources":["../../src/models/components/customerliabilityattributes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6FH,8EAQC;AAED,kFAQC;AA7GD,uCAAyB;AACzB,qDAAiD;AAGjD,qGAIkD;AAClD,yEAIoC;AACpC,+DAK+B;AAa/B,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,aAAa,EAAE,8DAAmC;IAClD,iBAAiB,EAAE,oDAA8B,CAAC,QAAQ,EAAE;IAC5D,KAAK,EAAE,oDAA8B,CAAC,QAAQ,EAAE;IAChD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,kBAAkB,EAAE,0FAAiD;SAClE,QAAQ,EAAE;IACb,eAAe,EAAE,oDAA8B,CAAC,QAAQ,EAAE;IAC1D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC;AAcH,gBAAgB;AACH,QAAA,0CAA0C,GAInD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,aAAa,EAAE,+DAAoC;IACnD,iBAAiB,EAAE,qDAA+B,CAAC,QAAQ,EAAE;IAC7D,KAAK,EAAE,qDAA+B,CAAC,QAAQ,EAAE;IACjD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,kBAAkB,EAAE,2FAAkD;SACnE,QAAQ,EAAE;IACb,eAAe,EAAE,qDAA+B,CAAC,QAAQ,EAAE;IAC3D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,4BAA4B,CAO5C;AAPD,WAAiB,4BAA4B;IAC3C,2EAA2E;IAC9D,0CAAa,GAAG,iDAAyC,CAAC;IACvE,4EAA4E;IAC/D,2CAAc,GAAG,kDAA0C,CAAC;AAG3E,CAAC,EAPgB,4BAA4B,4CAA5B,4BAA4B,QAO5C;AAED,SAAgB,iCAAiC,CAC/C,2BAAwD;IAExD,OAAO,IAAI,CAAC,SAAS,CACnB,kDAA0C,CAAC,KAAK,CAC9C,2BAA2B,CAC5B,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,mCAAmC,CACjD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,iDAAyC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACrE,yDAAyD,CAC1D,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
export declare const CustomerLiabilityRepaymentFrequency: {
|
|
4
|
+
readonly Monthly: "MONTHLY";
|
|
5
|
+
readonly Weekly: "WEEKLY";
|
|
6
|
+
readonly Fortnightly: "FORTNIGHTLY";
|
|
7
|
+
};
|
|
8
|
+
export type CustomerLiabilityRepaymentFrequency = ClosedEnum<typeof CustomerLiabilityRepaymentFrequency>;
|
|
9
|
+
/** @internal */
|
|
10
|
+
export declare const CustomerLiabilityRepaymentFrequency$inboundSchema: z.ZodNativeEnum<typeof CustomerLiabilityRepaymentFrequency>;
|
|
11
|
+
/** @internal */
|
|
12
|
+
export declare const CustomerLiabilityRepaymentFrequency$outboundSchema: z.ZodNativeEnum<typeof CustomerLiabilityRepaymentFrequency>;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
16
|
+
*/
|
|
17
|
+
export declare namespace CustomerLiabilityRepaymentFrequency$ {
|
|
18
|
+
/** @deprecated use `CustomerLiabilityRepaymentFrequency$inboundSchema` instead. */
|
|
19
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
20
|
+
readonly Monthly: "MONTHLY";
|
|
21
|
+
readonly Weekly: "WEEKLY";
|
|
22
|
+
readonly Fortnightly: "FORTNIGHTLY";
|
|
23
|
+
}>;
|
|
24
|
+
/** @deprecated use `CustomerLiabilityRepaymentFrequency$outboundSchema` instead. */
|
|
25
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
26
|
+
readonly Monthly: "MONTHLY";
|
|
27
|
+
readonly Weekly: "WEEKLY";
|
|
28
|
+
readonly Fortnightly: "FORTNIGHTLY";
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=customerliabilityrepaymentfrequency.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilityrepaymentfrequency.d.ts","sourceRoot":"","sources":["../../src/models/components/customerliabilityrepaymentfrequency.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,mCAAmC;;;;CAItC,CAAC;AACX,MAAM,MAAM,mCAAmC,GAAG,UAAU,CAC1D,OAAO,mCAAmC,CAC3C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,iDAAiD,EAAE,CAAC,CAAC,aAAa,CAC7E,OAAO,mCAAmC,CACS,CAAC;AAEtD,gBAAgB;AAChB,eAAO,MAAM,kDAAkD,EAC7D,CAAC,CAAC,aAAa,CAAC,OAAO,mCAAmC,CACP,CAAC;AAEtD;;;GAGG;AACH,yBAAiB,oCAAoC,CAAC;IACpD,mFAAmF;IAC5E,MAAM,aAAa;;;;MACyB,CAAC;IACpD,oFAAoF;IAC7E,MAAM,cAAc;;;;MACyB,CAAC;CACtD"}
|
|
@@ -0,0 +1,61 @@
|
|
|
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.CustomerLiabilityRepaymentFrequency$ = exports.CustomerLiabilityRepaymentFrequency$outboundSchema = exports.CustomerLiabilityRepaymentFrequency$inboundSchema = exports.CustomerLiabilityRepaymentFrequency = void 0;
|
|
40
|
+
const z = __importStar(require("zod"));
|
|
41
|
+
exports.CustomerLiabilityRepaymentFrequency = {
|
|
42
|
+
Monthly: "MONTHLY",
|
|
43
|
+
Weekly: "WEEKLY",
|
|
44
|
+
Fortnightly: "FORTNIGHTLY",
|
|
45
|
+
};
|
|
46
|
+
/** @internal */
|
|
47
|
+
exports.CustomerLiabilityRepaymentFrequency$inboundSchema = z.nativeEnum(exports.CustomerLiabilityRepaymentFrequency);
|
|
48
|
+
/** @internal */
|
|
49
|
+
exports.CustomerLiabilityRepaymentFrequency$outboundSchema = exports.CustomerLiabilityRepaymentFrequency$inboundSchema;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
53
|
+
*/
|
|
54
|
+
var CustomerLiabilityRepaymentFrequency$;
|
|
55
|
+
(function (CustomerLiabilityRepaymentFrequency$) {
|
|
56
|
+
/** @deprecated use `CustomerLiabilityRepaymentFrequency$inboundSchema` instead. */
|
|
57
|
+
CustomerLiabilityRepaymentFrequency$.inboundSchema = exports.CustomerLiabilityRepaymentFrequency$inboundSchema;
|
|
58
|
+
/** @deprecated use `CustomerLiabilityRepaymentFrequency$outboundSchema` instead. */
|
|
59
|
+
CustomerLiabilityRepaymentFrequency$.outboundSchema = exports.CustomerLiabilityRepaymentFrequency$outboundSchema;
|
|
60
|
+
})(CustomerLiabilityRepaymentFrequency$ || (exports.CustomerLiabilityRepaymentFrequency$ = CustomerLiabilityRepaymentFrequency$ = {}));
|
|
61
|
+
//# sourceMappingURL=customerliabilityrepaymentfrequency.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilityrepaymentfrequency.js","sourceRoot":"","sources":["../../src/models/components/customerliabilityrepaymentfrequency.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,mCAAmC,GAAG;IACjD,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;CAClB,CAAC;AAKX,gBAAgB;AACH,QAAA,iDAAiD,GAE1D,CAAC,CAAC,UAAU,CAAC,2CAAmC,CAAC,CAAC;AAEtD,gBAAgB;AACH,QAAA,kDAAkD,GAE3D,yDAAiD,CAAC;AAEtD;;;GAGG;AACH,IAAiB,oCAAoC,CAOpD;AAPD,WAAiB,oCAAoC;IACnD,mFAAmF;IACtE,kDAAa,GACxB,yDAAiD,CAAC;IACpD,oFAAoF;IACvE,mDAAc,GACzB,0DAAkD,CAAC;AACvD,CAAC,EAPgB,oCAAoC,oDAApC,oCAAoC,QAOpD"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
export declare const CustomerLiabilityType: {
|
|
4
|
+
readonly Mortgage: "MORTGAGE";
|
|
5
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
6
|
+
readonly CreditCard: "CREDIT_CARD";
|
|
7
|
+
readonly PersonalLoan: "PERSONAL_LOAN";
|
|
8
|
+
readonly PayLater: "PAY_LATER";
|
|
9
|
+
readonly Other: "OTHER";
|
|
10
|
+
};
|
|
11
|
+
export type CustomerLiabilityType = ClosedEnum<typeof CustomerLiabilityType>;
|
|
12
|
+
/** @internal */
|
|
13
|
+
export declare const CustomerLiabilityType$inboundSchema: z.ZodNativeEnum<typeof CustomerLiabilityType>;
|
|
14
|
+
/** @internal */
|
|
15
|
+
export declare const CustomerLiabilityType$outboundSchema: z.ZodNativeEnum<typeof CustomerLiabilityType>;
|
|
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 CustomerLiabilityType$ {
|
|
21
|
+
/** @deprecated use `CustomerLiabilityType$inboundSchema` instead. */
|
|
22
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
23
|
+
readonly Mortgage: "MORTGAGE";
|
|
24
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
25
|
+
readonly CreditCard: "CREDIT_CARD";
|
|
26
|
+
readonly PersonalLoan: "PERSONAL_LOAN";
|
|
27
|
+
readonly PayLater: "PAY_LATER";
|
|
28
|
+
readonly Other: "OTHER";
|
|
29
|
+
}>;
|
|
30
|
+
/** @deprecated use `CustomerLiabilityType$outboundSchema` instead. */
|
|
31
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
32
|
+
readonly Mortgage: "MORTGAGE";
|
|
33
|
+
readonly MotorVehicle: "MOTOR_VEHICLE";
|
|
34
|
+
readonly CreditCard: "CREDIT_CARD";
|
|
35
|
+
readonly PersonalLoan: "PERSONAL_LOAN";
|
|
36
|
+
readonly PayLater: "PAY_LATER";
|
|
37
|
+
readonly Other: "OTHER";
|
|
38
|
+
}>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=customerliabilitytype.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilitytype.d.ts","sourceRoot":"","sources":["../../src/models/components/customerliabilitytype.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,qBAAqB;;;;;;;CAOxB,CAAC;AACX,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE7E,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,aAAa,CAC/D,OAAO,qBAAqB,CACS,CAAC;AAExC,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,aAAa,CAChE,OAAO,qBAAqB,CACS,CAAC;AAExC;;;GAGG;AACH,yBAAiB,sBAAsB,CAAC;IACtC,qEAAqE;IAC9D,MAAM,aAAa;;;;;;;MAAsC,CAAC;IACjE,sEAAsE;IAC/D,MAAM,cAAc;;;;;;;MAAuC,CAAC;CACpE"}
|
|
@@ -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.CustomerLiabilityType$ = exports.CustomerLiabilityType$outboundSchema = exports.CustomerLiabilityType$inboundSchema = exports.CustomerLiabilityType = void 0;
|
|
40
|
+
const z = __importStar(require("zod"));
|
|
41
|
+
exports.CustomerLiabilityType = {
|
|
42
|
+
Mortgage: "MORTGAGE",
|
|
43
|
+
MotorVehicle: "MOTOR_VEHICLE",
|
|
44
|
+
CreditCard: "CREDIT_CARD",
|
|
45
|
+
PersonalLoan: "PERSONAL_LOAN",
|
|
46
|
+
PayLater: "PAY_LATER",
|
|
47
|
+
Other: "OTHER",
|
|
48
|
+
};
|
|
49
|
+
/** @internal */
|
|
50
|
+
exports.CustomerLiabilityType$inboundSchema = z.nativeEnum(exports.CustomerLiabilityType);
|
|
51
|
+
/** @internal */
|
|
52
|
+
exports.CustomerLiabilityType$outboundSchema = exports.CustomerLiabilityType$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 CustomerLiabilityType$;
|
|
58
|
+
(function (CustomerLiabilityType$) {
|
|
59
|
+
/** @deprecated use `CustomerLiabilityType$inboundSchema` instead. */
|
|
60
|
+
CustomerLiabilityType$.inboundSchema = exports.CustomerLiabilityType$inboundSchema;
|
|
61
|
+
/** @deprecated use `CustomerLiabilityType$outboundSchema` instead. */
|
|
62
|
+
CustomerLiabilityType$.outboundSchema = exports.CustomerLiabilityType$outboundSchema;
|
|
63
|
+
})(CustomerLiabilityType$ || (exports.CustomerLiabilityType$ = CustomerLiabilityType$ = {}));
|
|
64
|
+
//# sourceMappingURL=customerliabilitytype.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerliabilitytype.js","sourceRoot":"","sources":["../../src/models/components/customerliabilitytype.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,qBAAqB,GAAG;IACnC,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,eAAe;IAC7B,UAAU,EAAE,aAAa;IACzB,YAAY,EAAE,eAAe;IAC7B,QAAQ,EAAE,WAAW;IACrB,KAAK,EAAE,OAAO;CACN,CAAC;AAGX,gBAAgB;AACH,QAAA,mCAAmC,GAE5C,CAAC,CAAC,UAAU,CAAC,6BAAqB,CAAC,CAAC;AAExC,gBAAgB;AACH,QAAA,oCAAoC,GAE7C,2CAAmC,CAAC;AAExC;;;GAGG;AACH,IAAiB,sBAAsB,CAKtC;AALD,WAAiB,sBAAsB;IACrC,qEAAqE;IACxD,oCAAa,GAAG,2CAAmC,CAAC;IACjE,sEAAsE;IACzD,qCAAc,GAAG,4CAAoC,CAAC;AACrE,CAAC,EALgB,sBAAsB,sCAAtB,sBAAsB,QAKtC"}
|
|
@@ -17,8 +17,14 @@ export * from "./consumersecuredloanassetattributes.js";
|
|
|
17
17
|
export * from "./consumersecuredloanassettype.js";
|
|
18
18
|
export * from "./consumersecuredloanconsumerapplicationrelationships.js";
|
|
19
19
|
export * from "./createsupportingdocumentsresponse.js";
|
|
20
|
+
export * from "./currencycodeiso4217.js";
|
|
21
|
+
export * from "./customerassetattributes.js";
|
|
22
|
+
export * from "./customerassettype.js";
|
|
20
23
|
export * from "./customerattributes.js";
|
|
21
24
|
export * from "./customeridtype.js";
|
|
25
|
+
export * from "./customerliabilityattributes.js";
|
|
26
|
+
export * from "./customerliabilityrepaymentfrequency.js";
|
|
27
|
+
export * from "./customerliabilitytype.js";
|
|
22
28
|
export * from "./customertitle.js";
|
|
23
29
|
export * from "./documenttype.js";
|
|
24
30
|
export * from "./entityattributes.js";
|
|
@@ -29,6 +35,8 @@ export * from "./linkobject.js";
|
|
|
29
35
|
export * from "./livingarrangements.js";
|
|
30
36
|
export * from "./loandetailsattributes.js";
|
|
31
37
|
export * from "./maritalstatus.js";
|
|
38
|
+
export * from "./monetaryquantity.js";
|
|
39
|
+
export * from "./percentagequantity.js";
|
|
32
40
|
export * from "./relationshipresourcenotfound.js";
|
|
33
41
|
export * from "./repaymentstructure.js";
|
|
34
42
|
export * from "./residencystatus.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qCAAqC,CAAC;AACpD,cAAc,sBAAsB,CAAC;AACrC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0DAA0D,CAAC;AACzE,cAAc,wCAAwC,CAAC;AACvD,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mCAAmC,CAAC;AAClD,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,mCAAmC,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qCAAqC,CAAC;AACpD,cAAc,sBAAsB,CAAC;AACrC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qCAAqC,CAAC;AACpD,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0DAA0D,CAAC;AACzE,cAAc,wCAAwC,CAAC;AACvD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kCAAkC,CAAC;AACjD,cAAc,0CAA0C,CAAC;AACzD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC;AAClD,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,mCAAmC,CAAC;AAClD,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC;AACrD,cAAc,iCAAiC,CAAC;AAChD,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC"}
|
|
@@ -36,8 +36,14 @@ __exportStar(require("./consumersecuredloanassetattributes.js"), exports);
|
|
|
36
36
|
__exportStar(require("./consumersecuredloanassettype.js"), exports);
|
|
37
37
|
__exportStar(require("./consumersecuredloanconsumerapplicationrelationships.js"), exports);
|
|
38
38
|
__exportStar(require("./createsupportingdocumentsresponse.js"), exports);
|
|
39
|
+
__exportStar(require("./currencycodeiso4217.js"), exports);
|
|
40
|
+
__exportStar(require("./customerassetattributes.js"), exports);
|
|
41
|
+
__exportStar(require("./customerassettype.js"), exports);
|
|
39
42
|
__exportStar(require("./customerattributes.js"), exports);
|
|
40
43
|
__exportStar(require("./customeridtype.js"), exports);
|
|
44
|
+
__exportStar(require("./customerliabilityattributes.js"), exports);
|
|
45
|
+
__exportStar(require("./customerliabilityrepaymentfrequency.js"), exports);
|
|
46
|
+
__exportStar(require("./customerliabilitytype.js"), exports);
|
|
41
47
|
__exportStar(require("./customertitle.js"), exports);
|
|
42
48
|
__exportStar(require("./documenttype.js"), exports);
|
|
43
49
|
__exportStar(require("./entityattributes.js"), exports);
|
|
@@ -48,6 +54,8 @@ __exportStar(require("./linkobject.js"), exports);
|
|
|
48
54
|
__exportStar(require("./livingarrangements.js"), exports);
|
|
49
55
|
__exportStar(require("./loandetailsattributes.js"), exports);
|
|
50
56
|
__exportStar(require("./maritalstatus.js"), exports);
|
|
57
|
+
__exportStar(require("./monetaryquantity.js"), exports);
|
|
58
|
+
__exportStar(require("./percentagequantity.js"), exports);
|
|
51
59
|
__exportStar(require("./relationshipresourcenotfound.js"), exports);
|
|
52
60
|
__exportStar(require("./repaymentstructure.js"), exports);
|
|
53
61
|
__exportStar(require("./residencystatus.js"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,yDAAuC;AACvC,qDAAmC;AACnC,2DAAyC;AACzC,yDAAuC;AACvC,sEAAoD;AACpD,uDAAqC;AACrC,iFAA+D;AAC/D,2EAAyD;AACzD,4EAA0D;AAC1D,4EAA0D;AAC1D,sEAAoD;AACpD,+FAA6E;AAC7E,+EAA6D;AAC7D,yEAAuD;AACvD,0EAAwD;AACxD,0EAAwD;AACxD,oEAAkD;AAClD,2FAAyE;AACzE,yEAAuD;AACvD,0DAAwC;AACxC,sDAAoC;AACpC,qDAAmC;AACnC,oDAAkC;AAClC,wDAAsC;AACtC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,kDAAgC;AAChC,0DAAwC;AACxC,6DAA2C;AAC3C,qDAAmC;AACnC,oEAAkD;AAClD,0DAAwC;AACxC,uDAAqC;AACrC,wDAAsC;AACtC,gDAA8B;AAC9B,oEAAkD;AAClD,yEAAuD;AACvD,uEAAqD;AACrD,kEAAgD;AAChD,oDAAkC;AAClC,qDAAmC;AACnC,sDAAoC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,yDAAuC;AACvC,qDAAmC;AACnC,2DAAyC;AACzC,yDAAuC;AACvC,sEAAoD;AACpD,uDAAqC;AACrC,iFAA+D;AAC/D,2EAAyD;AACzD,4EAA0D;AAC1D,4EAA0D;AAC1D,sEAAoD;AACpD,+FAA6E;AAC7E,+EAA6D;AAC7D,yEAAuD;AACvD,0EAAwD;AACxD,0EAAwD;AACxD,oEAAkD;AAClD,2FAAyE;AACzE,yEAAuD;AACvD,2DAAyC;AACzC,+DAA6C;AAC7C,yDAAuC;AACvC,0DAAwC;AACxC,sDAAoC;AACpC,mEAAiD;AACjD,2EAAyD;AACzD,6DAA2C;AAC3C,qDAAmC;AACnC,oDAAkC;AAClC,wDAAsC;AACtC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,kDAAgC;AAChC,0DAAwC;AACxC,6DAA2C;AAC3C,qDAAmC;AACnC,wDAAsC;AACtC,0DAAwC;AACxC,oEAAkD;AAClD,0DAAwC;AACxC,uDAAqC;AACrC,wDAAsC;AACtC,gDAA8B;AAC9B,oEAAkD;AAClD,yEAAuD;AACvD,uEAAqD;AACrD,kEAAgD;AAChD,oDAAkC;AAClC,qDAAmC;AACnC,sDAAoC"}
|