@lendi/integrations-transform
Advanced tools
Comparing version 1.2.7 to 1.2.8
export * from './transform-events/transform-applicant'; | ||
export * from './transform-events/transform-application'; | ||
export * from './transform-events/transform-application-workflow'; | ||
export * from './transform-events/transform-income'; | ||
export * from './transform-events/transform-asset'; | ||
export * from './transform-events/transform-expenses'; | ||
export * from './transform-events/generate-liability'; | ||
export * from './transform-events/transform-liability'; | ||
export * from './transform-events/generate-required-document'; | ||
export * from './transform-events/generate-funding-position'; | ||
export * from './update-application/merge-application'; |
@@ -16,8 +16,9 @@ "use strict"; | ||
__exportStar(require("./transform-events/transform-application"), exports); | ||
__exportStar(require("./transform-events/transform-application-workflow"), exports); | ||
__exportStar(require("./transform-events/transform-income"), exports); | ||
__exportStar(require("./transform-events/transform-asset"), exports); | ||
__exportStar(require("./transform-events/transform-expenses"), exports); | ||
__exportStar(require("./transform-events/generate-liability"), exports); | ||
__exportStar(require("./transform-events/transform-liability"), exports); | ||
__exportStar(require("./transform-events/generate-required-document"), exports); | ||
__exportStar(require("./transform-events/generate-funding-position"), exports); | ||
__exportStar(require("./update-application/merge-application"), exports); |
@@ -14,11 +14,11 @@ { | ||
"type": "string", | ||
"description": "The Broker Audit Review record type", | ||
"description": "The Broker Audit Review record type" | ||
}, | ||
"status": { | ||
"type": "string", | ||
"description": "The Broker Audit Review status", | ||
"description": "The Broker Audit Review status" | ||
}, | ||
"outcome": { | ||
"type": "string", | ||
"description": "The Broker Audit Review outcome", | ||
"description": "The Broker Audit Review outcome" | ||
}, | ||
@@ -25,0 +25,0 @@ "completedBy": { |
@@ -64,2 +64,17 @@ { | ||
}, | ||
"financialInstitutionShortName": { | ||
"type": "string" | ||
}, | ||
"FinancialInstitutionBsb": { | ||
"type": "string", | ||
"pattern": "^\\d{6}$", | ||
"description": "The BSB number identifying where the account is held within the Financial Institution", | ||
"example": "123456" | ||
}, | ||
"FinancialInstitutionAccountNumber": { | ||
"type": "string", | ||
"pattern": "^\\d{0,10}$", | ||
"description": "The unique number assigned to the Financial Institution account", | ||
"example": "999994" | ||
}, | ||
"repaymentAmount": { | ||
@@ -149,2 +164,11 @@ "type": "number" | ||
}, | ||
"financialInstitutionShortName": { | ||
"$ref": "#/definitions/financialInstitutionShortName" | ||
}, | ||
"financialInstitutionBsb": { | ||
"$ref": "#/definitions/FinancialInstitutionBsb" | ||
}, | ||
"financialInstitutionAccountNumber": { | ||
"$ref": "#/definitions/FinancialInstitutionAccountNumber" | ||
}, | ||
"repaymentAmount": { | ||
@@ -196,3 +220,3 @@ "$ref": "#/definitions/repaymentAmount" | ||
}, | ||
"required": ["outstandingBalance", "percentOwned", "type"] | ||
"required": ["type", "outstandingBalance"] | ||
}, | ||
@@ -199,0 +223,0 @@ "LiabilityPayload": { |
@@ -32,2 +32,5 @@ /** | ||
financialInstitution?: string; | ||
financialInstitutionAccountNumber?: string; | ||
financialInstitutionBsb?: string; | ||
financialInstitutionShortName?: string; | ||
interestOnlyDuration?: number; | ||
@@ -39,3 +42,3 @@ interestOnlyRemainingTerm?: number; | ||
outstandingBalance: number; | ||
percentOwned: PercentOwned; | ||
percentOwned?: PercentOwned; | ||
remainingTermDuration?: number; | ||
@@ -42,0 +45,0 @@ repaymentAmount?: number; |
{ | ||
"name": "@lendi/integrations-transform", | ||
"version": "1.2.7", | ||
"version": "1.2.8", | ||
"description": "Library for kafka event data transforming", | ||
@@ -5,0 +5,0 @@ "author": "Integrations <integrations@lendi.com.au>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
453776
12561