@comparaonline/cico-funnel-schema
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -5,4 +5,5 @@ export { PaymentMethod } from './enums/common'; | ||
export { ManagementStatus, MeanOfPayment, PaymentCertificate } from './enums/collection'; | ||
export { Car, FinancialEntity, ForeignTaxation, Insurance, PublicLinkPerson, PublicResources, Sarlaft, Work } from './interfaces/checkout/sarlaft'; | ||
export { Inspection, InspectionCity, InspectionMail } from './interfaces/checkout/inspection'; | ||
export { Entity } from './interfaces/checkout/entity'; | ||
export { Car, ForeignTaxation, Insurance, PublicLinkPerson, PublicResources, Sarlaft, Work } from './interfaces/checkout/sarlaft'; | ||
export { Inspection, InspectionMail } from './interfaces/checkout/inspection'; | ||
export { Checkout, CheckoutFiles, Sarlafts, CheckoutFilesDetail } from './interfaces/checkout'; | ||
@@ -9,0 +10,0 @@ export { Issue, IssueReadOnly, IssueAgents } from './interfaces/issue'; |
@@ -15,3 +15,3 @@ import { Sarlaft } from './sarlaft'; | ||
propertyCertificate: CheckoutFilesDetail; | ||
others?: CheckoutFilesDetail; | ||
others?: CheckoutFilesDetail[]; | ||
} | ||
@@ -18,0 +18,0 @@ export interface Sarlafts { |
import { ColombiaForm, ColombiaOffer } from '@comparaonlineprivate/data-interfaces'; | ||
export interface InspectionCity { | ||
label: string; | ||
value: number; | ||
} | ||
import { Entity } from './entity'; | ||
export interface Inspection { | ||
address?: string; | ||
city: InspectionCity; | ||
city: Entity; | ||
email: string; | ||
firstName: string; | ||
inspectionId?: number; | ||
isCompleted: boolean; | ||
isHome: boolean; | ||
lastName: string; | ||
phone: string; | ||
isCompleted: boolean; | ||
} | ||
@@ -17,0 +14,0 @@ export interface InspectionMail extends Inspection { |
import { Gender, EducationLevel, CompanyTypes, IdentificationType, CivilStatus, HousingType } from '@comparaonline/common-schema'; | ||
import { Entity } from './entity'; | ||
export interface Car { | ||
chassisNumber: string; | ||
color: string; | ||
color: Entity; | ||
cylinderCapacity: string; | ||
@@ -11,3 +12,3 @@ engineNumber: string; | ||
address: string; | ||
city: string; | ||
city: Entity; | ||
name: string; | ||
@@ -23,8 +24,8 @@ phone: string; | ||
financialProductAmount?: string; | ||
financialProductEntity?: string; | ||
financialProductCity?: string; | ||
financialProductCountry?: string; | ||
financialProductCountry?: Entity; | ||
financialProductCurrency?: string; | ||
numberOfProduct?: string; | ||
typeOfProduct?: string; | ||
financialProductEntity?: string; | ||
financialProductNumber?: string; | ||
financialProductType?: string; | ||
} | ||
@@ -44,5 +45,5 @@ export interface Insurance { | ||
birthDate: Date; | ||
birthPlace: string; | ||
birthPlace: Entity; | ||
childrenQuantity: number; | ||
city: string; | ||
city: Entity; | ||
civilStatus: CivilStatus; | ||
@@ -60,5 +61,5 @@ dateIssued: string; | ||
middleName: string; | ||
nationality: string; | ||
nationality: Entity; | ||
neighborhood: string; | ||
placeIssued: string; | ||
placeIssued: Entity; | ||
phone: string; | ||
@@ -72,3 +73,3 @@ secondLastName: string; | ||
identificationType: string; | ||
nationality: string; | ||
nationality: Entity; | ||
position: string; | ||
@@ -89,3 +90,3 @@ relation: string; | ||
assetValue: string; | ||
ciiuCode: string; | ||
ciiuCode: Entity; | ||
company: Company; | ||
@@ -100,10 +101,6 @@ liabilityValue: string; | ||
} | ||
export interface FinancialEntity { | ||
id: number; | ||
name: string; | ||
} | ||
export interface Sarlaft { | ||
isCompleted: boolean; | ||
car?: Car; | ||
financialEntity?: FinancialEntity; | ||
financialEntity: Entity; | ||
foreignTaxation: ForeignTaxation; | ||
@@ -110,0 +107,0 @@ insurance: Insurance; |
{ | ||
"name": "@comparaonline/cico-funnel-schema", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Cico Funnel Schema", | ||
@@ -27,3 +27,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "1801aaacee9e9414482ca3b818bb3fc7d9a8d137" | ||
"gitHead": "ad1b80b0590d9d8fcd6cefb208cbe557cd9df7fe" | ||
} |
Sorry, the diff of this file is not supported yet
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
257297
44