@dynamatix/gb-schemas 2.0.30 → 2.0.31
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/entities/applicants/applicant-credit-data.entity.ts +23 -23
- package/entities/applicants/applicant-credit-profile.entity.ts +18 -18
- package/entities/applicants/applicant-employment-income.entity.ts +17 -17
- package/entities/applicants/applicant-employment.entity.ts +59 -59
- package/entities/applicants/applicant-expenditure.entity.ts +18 -18
- package/entities/applicants/applicant-income-source.entity.ts +21 -21
- package/entities/applicants/applicant-income.entity.ts +60 -60
- package/entities/applicants/applicant.entity.ts +192 -192
- package/entities/applicants/credit-card-commitment.entity.ts +19 -19
- package/entities/applicants/index.ts +56 -56
- package/entities/applicants/loan-commitment.entity.ts +23 -23
- package/entities/applicants/mortgage-commitment.entity.ts +55 -55
- package/entities/applicants/other-income.entity.ts +67 -67
- package/entities/applicants/property-income.entity.ts +18 -18
- package/entities/applicants/residence-commitment.entity.ts +62 -62
- package/entities/applicants/secure-loan-commitment.entity.ts +29 -29
- package/entities/applicants/unsecured-loan-commitment.entity.ts +29 -29
- package/entities/applications/application-audit.entity.ts +22 -22
- package/entities/applications/application-company.entity.ts +16 -16
- package/entities/applications/application-credit-profile.entity.ts +12 -12
- package/entities/applications/application-direct-debit.entity.ts +28 -28
- package/entities/applications/application-document.entity.ts +32 -32
- package/entities/applications/application-fieldconfig.entity.ts +10 -10
- package/entities/applications/application-illustration.entity.ts +9 -9
- package/entities/applications/application-legal.entity.ts +10 -10
- package/entities/applications/application-mortgage.entity.ts +81 -80
- package/entities/applications/application-note.entity.ts +42 -42
- package/entities/applications/application-offer.entity.ts +9 -9
- package/entities/applications/application-onboarding.entity.ts +12 -12
- package/entities/applications/application-product.entity.ts +37 -37
- package/entities/applications/application-rationale.entity.ts +55 -55
- package/entities/applications/application.entity.ts +169 -169
- package/entities/applications/broker.entity.ts +24 -24
- package/entities/applications/checklist-item.entity.ts +48 -48
- package/entities/applications/company.entity.ts +101 -101
- package/entities/applications/index.ts +65 -65
- package/entities/applications/product-features.entity.ts +55 -55
- package/entities/applications/solicitor.entity.ts +37 -37
- package/entities/index.ts +13 -13
- package/entities/prisma.ts +12 -12
- package/entities/product-catalogues/index.ts +22 -22
- package/entities/product-catalogues/product-catalogue.entity.ts +26 -26
- package/entities/product-catalogues/product-definition.entity.ts +20 -20
- package/entities/product-catalogues/product-variant.entity.ts +18 -18
- package/entities/product-catalogues/product.entity.ts +15 -15
- package/entities/product-catalogues/rule.entity.ts +25 -25
- package/entities/properties/data-street.entity.ts +26 -26
- package/entities/properties/index.ts +16 -16
- package/entities/properties/property.entity.ts +35 -35
- package/entities/properties/security.entity.ts +61 -61
- package/entities/shared/alert.entity.ts +18 -18
- package/entities/shared/apprivo-sync-journey.entity.ts +24 -24
- package/entities/shared/apprivo-sync-journey.model.ts +12 -12
- package/entities/shared/checklist.entity.ts +19 -19
- package/entities/shared/document-type.entity.ts +10 -10
- package/entities/shared/index.ts +34 -34
- package/entities/shared/job-run.entity.ts +19 -19
- package/entities/shared/job-run.model.ts +9 -9
- package/entities/shared/job-setting.entity.ts +12 -12
- package/entities/shared/lookup-group.entity.ts +15 -15
- package/entities/shared/lookup.entity.ts +18 -18
- package/entities/shared/system-parameter.entity.ts +12 -12
- package/entities/underwriter/index.ts +6 -6
- package/entities/underwriter/underwriter.entity.ts +18 -18
- package/entities/users/auth-log.entity.ts +12 -12
- package/entities/users/index.ts +22 -22
- package/entities/users/permission.entity.ts +16 -16
- package/entities/users/role-group.entity.ts +16 -16
- package/entities/users/role.entity.ts +18 -18
- package/entities/users/user.entity.ts +43 -43
- package/package.json +83 -83
- package/prisma/applicants/applicant-credit-data.prisma +18 -18
- package/prisma/applicants/applicant-credit-profile.prisma +14 -14
- package/prisma/applicants/applicant-employment-income.prisma +13 -13
- package/prisma/applicants/applicant-employment.prisma +53 -53
- package/prisma/applicants/applicant-expenditure.prisma +13 -13
- package/prisma/applicants/applicant-income-source.prisma +16 -16
- package/prisma/applicants/applicant-income.prisma +66 -66
- package/prisma/applicants/applicant-other-income.prisma +44 -44
- package/prisma/applicants/applicant-property-income.prisma +20 -20
- package/prisma/applicants/applicant.prisma +129 -129
- package/prisma/applicants/credit-card-commitment.prisma +20 -20
- package/prisma/applicants/loan-commitment.prisma +25 -25
- package/prisma/applicants/mortgage-commitment.prisma +33 -33
- package/prisma/applicants/residence-commitment.prisma +40 -40
- package/prisma/applicants/secured-loan-commitment.prisma +20 -20
- package/prisma/applicants/unsecured-loan-commitment.prisma +19 -19
- package/prisma/applications/application-audit.prisma +18 -18
- package/prisma/applications/application-company.prisma +13 -13
- package/prisma/applications/application-credit-profile.prisma +14 -14
- package/prisma/applications/application-direct-debit.prisma +27 -27
- package/prisma/applications/application-document.prisma +27 -27
- package/prisma/applications/application-fieldconfig.prisma +8 -8
- package/prisma/applications/application-illustration.prisma +7 -7
- package/prisma/applications/application-legal.prisma +8 -8
- package/prisma/applications/application-mortgage.prisma +48 -47
- package/prisma/applications/application-note.prisma +36 -36
- package/prisma/applications/application-offer.prisma +7 -7
- package/prisma/applications/application-onboarding.prisma +10 -10
- package/prisma/applications/application-product.prisma +32 -32
- package/prisma/applications/application-rationale.prisma +50 -50
- package/prisma/applications/application.prisma +93 -93
- package/prisma/applications/broker.prisma +25 -25
- package/prisma/applications/checklist-item.prisma +46 -46
- package/prisma/applications/checklist.prisma +18 -18
- package/prisma/applications/company.prisma +76 -76
- package/prisma/applications/product-features.prisma +54 -54
- package/prisma/applications/solicitor.prisma +33 -33
- package/prisma/broker.entity.ts +7 -7
- package/prisma/migrations/20250501070203_initial_migration/migration.sql +2044 -2044
- package/prisma/migrations/20250501102630_job_setting_name_change/migration.sql +10 -10
- package/prisma/migrations/20250501104920_milstone_update/migration.sql +30 -30
- package/prisma/migrations/20250501105546_apprivo_sync_journey_update/migration.sql +9 -9
- package/prisma/migrations/20250501105850_job_run_update/migration.sql +13 -13
- package/prisma/migrations/20250505115236_update_application_schema/migration.sql +115 -115
- package/prisma/migrations/20250505145328_update_broker_schema/migration.sql +8 -8
- package/prisma/migrations/20250505185034_update_direct_debit_schema/migration.sql +27 -27
- package/prisma/migrations/20250505190613_update_solicitor_schema/migration.sql +29 -29
- package/prisma/migrations/20250506054831_update_note_schema/migration.sql +12 -12
- package/prisma/migrations/20250506142218_update_broker_schema/migration.sql +17 -17
- package/prisma/migrations/20250506190258_update_application_note_schema/migration.sql +32 -32
- package/prisma/migrations/20250506204635_update_mortgage_schema/migration.sql +26 -26
- package/prisma/migrations/20250507122847_applicant_retirement_age/migration.sql +9 -9
- package/prisma/migrations/20250507184905_update_mortgage_schema/migration.sql +8 -8
- package/prisma/migrations/20250507194746_update_direct_debit_schema/migration.sql +5 -5
- package/prisma/migrations/20250508092417_update_application_schema/migration.sql +3 -3
- package/prisma/migrations/20250508094735_update_direct_debit_schema/migration.sql +2 -2
- package/prisma/migrations/20250509073536_update_applicant_schema/migration.sql +4 -4
- package/prisma/migrations/20250509111029_update_solicitor_schema/migration.sql +2 -2
- package/prisma/migrations/20250509125107_update_mortgage_schema/migration.sql +19 -0
- package/prisma/migrations/20250512071728_update_mortgage_schema/migration.sql +15 -0
- package/prisma/product-catalogues/product-catalogue.prisma +21 -21
- package/prisma/product-catalogues/product-definition.prisma +38 -38
- package/prisma/product-catalogues/product-variant.prisma +14 -14
- package/prisma/product-catalogues/product.prisma +9 -9
- package/prisma/properties/property.prisma +29 -29
- package/prisma/properties/security.prisma +79 -79
- package/prisma/schema.prisma +1709 -1708
- package/prisma/shared/alert.prisma +14 -14
- package/prisma/shared/apprivo-sync-journey.prisma +18 -18
- package/prisma/shared/checklist.prisma +9 -9
- package/prisma/shared/document-type.prisma +8 -8
- package/prisma/shared/job-run.prisma +14 -14
- package/prisma/shared/job-setting.prisma +10 -10
- package/prisma/shared/lookup-group.prisma +11 -11
- package/prisma/shared/lookup.prisma +144 -144
- package/prisma/shared/system-parameter.prisma +15 -15
- package/prisma/underwriter/underwriter.prisma +20 -20
- package/prisma/users/auth-log.prisma +10 -10
- package/prisma/users/permission.prisma +12 -12
- package/prisma/users/role-group.prisma +13 -13
- package/prisma/users/role.prisma +13 -13
- package/prisma/users/user.prisma +43 -43
- package/dist/applicants/applicant-additional-income.model.d.ts +0 -1120
- package/dist/applicants/applicant-additional-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-additional-income.model.js +0 -33
- package/dist/applicants/applicant-commitment-creditCard.model.d.ts +0 -534
- package/dist/applicants/applicant-commitment-creditCard.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-creditCard.model.js +0 -34
- package/dist/applicants/applicant-commitment-loan.model.d.ts +0 -420
- package/dist/applicants/applicant-commitment-loan.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-loan.model.js +0 -38
- package/dist/applicants/applicant-commitment-mortgage.model.d.ts +0 -498
- package/dist/applicants/applicant-commitment-mortgage.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-mortgage.model.js +0 -69
- package/dist/applicants/applicant-commitment-residence.model.d.ts +0 -754
- package/dist/applicants/applicant-commitment-residence.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-residence.model.js +0 -50
- package/dist/applicants/applicant-commitment-secureLoan.model.d.ts +0 -394
- package/dist/applicants/applicant-commitment-secureLoan.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-secureLoan.model.js +0 -29
- package/dist/applicants/applicant-commitment-unsecuredLoan.model.d.ts +0 -388
- package/dist/applicants/applicant-commitment-unsecuredLoan.model.d.ts.map +0 -1
- package/dist/applicants/applicant-commitment-unsecuredLoan.model.js +0 -28
- package/dist/applicants/applicant-credit-data.model.d.ts +0 -59
- package/dist/applicants/applicant-credit-data.model.d.ts.map +0 -1
- package/dist/applicants/applicant-credit-data.model.js +0 -11
- package/dist/applicants/applicant-credit-profile.model.d.ts +0 -50
- package/dist/applicants/applicant-credit-profile.model.d.ts.map +0 -1
- package/dist/applicants/applicant-credit-profile.model.js +0 -20
- package/dist/applicants/applicant-direct-debit.model.d.ts +0 -88
- package/dist/applicants/applicant-direct-debit.model.d.ts.map +0 -1
- package/dist/applicants/applicant-direct-debit.model.js +0 -17
- package/dist/applicants/applicant-employment-income.model.d.ts +0 -201
- package/dist/applicants/applicant-employment-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-employment-income.model.js +0 -9
- package/dist/applicants/applicant-employment.model.d.ts +0 -162
- package/dist/applicants/applicant-employment.model.d.ts.map +0 -1
- package/dist/applicants/applicant-employment.model.js +0 -50
- package/dist/applicants/applicant-expenditure.model.d.ts +0 -113
- package/dist/applicants/applicant-expenditure.model.d.ts.map +0 -1
- package/dist/applicants/applicant-expenditure.model.js +0 -54
- package/dist/applicants/applicant-income-source.model.d.ts +0 -53
- package/dist/applicants/applicant-income-source.model.d.ts.map +0 -1
- package/dist/applicants/applicant-income-source.model.js +0 -9
- package/dist/applicants/applicant-income.model.d.ts +0 -246
- package/dist/applicants/applicant-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-income.model.js +0 -81
- package/dist/applicants/applicant-pension-income.model.d.ts +0 -483
- package/dist/applicants/applicant-pension-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-pension-income.model.js +0 -14
- package/dist/applicants/applicant-property-income.model.d.ts +0 -933
- package/dist/applicants/applicant-property-income.model.d.ts.map +0 -1
- package/dist/applicants/applicant-property-income.model.js +0 -23
- package/dist/applicants/applicant-risk-narrative.model.d.ts +0 -65
- package/dist/applicants/applicant-risk-narrative.model.d.ts.map +0 -1
- package/dist/applicants/applicant-risk-narrative.model.js +0 -13
- package/dist/applicants/applicant-uk-tax-credits.model.d.ts +0 -489
- package/dist/applicants/applicant-uk-tax-credits.model.d.ts.map +0 -1
- package/dist/applicants/applicant-uk-tax-credits.model.js +0 -11
- package/dist/applicants/applicant.model.d.ts +0 -161
- package/dist/applicants/applicant.model.d.ts.map +0 -1
- package/dist/applicants/applicant.model.js +0 -223
- package/dist/applicants/index.d.ts +0 -14
- package/dist/applicants/index.d.ts.map +0 -1
- package/dist/applicants/index.js +0 -13
- package/dist/applications/application-audit.model.d.ts +0 -119
- package/dist/applications/application-audit.model.d.ts.map +0 -1
- package/dist/applications/application-audit.model.js +0 -42
- package/dist/applications/application-checklist-Item.model.d.ts +0 -285
- package/dist/applications/application-checklist-Item.model.d.ts.map +0 -1
- package/dist/applications/application-checklist-Item.model.js +0 -45
- package/dist/applications/application-company-model.d.ts +0 -1510
- package/dist/applications/application-company-model.d.ts.map +0 -1
- package/dist/applications/application-company-model.js +0 -120
- package/dist/applications/application-credit-profile.model.d.ts +0 -62
- package/dist/applications/application-credit-profile.model.d.ts.map +0 -1
- package/dist/applications/application-credit-profile.model.js +0 -12
- package/dist/applications/application-direct-debit.model.d.ts +0 -571
- package/dist/applications/application-direct-debit.model.d.ts.map +0 -1
- package/dist/applications/application-direct-debit.model.js +0 -92
- package/dist/applications/application-document.model.d.ts +0 -185
- package/dist/applications/application-document.model.d.ts.map +0 -1
- package/dist/applications/application-document.model.js +0 -35
- package/dist/applications/application-fieldconfig.model.d.ts +0 -57
- package/dist/applications/application-fieldconfig.model.d.ts.map +0 -1
- package/dist/applications/application-fieldconfig.model.js +0 -7
- package/dist/applications/application-illustration-model.d.ts +0 -51
- package/dist/applications/application-illustration-model.d.ts.map +0 -1
- package/dist/applications/application-illustration-model.js +0 -6
- package/dist/applications/application-legal.model.d.ts +0 -57
- package/dist/applications/application-legal.model.d.ts.map +0 -1
- package/dist/applications/application-legal.model.js +0 -7
- package/dist/applications/application-mortgage.model.d.ts +0 -1229
- package/dist/applications/application-mortgage.model.d.ts.map +0 -1
- package/dist/applications/application-mortgage.model.js +0 -271
- package/dist/applications/application-note.model.d.ts +0 -171
- package/dist/applications/application-note.model.d.ts.map +0 -1
- package/dist/applications/application-note.model.js +0 -78
- package/dist/applications/application-offer.model.d.ts +0 -51
- package/dist/applications/application-offer.model.d.ts.map +0 -1
- package/dist/applications/application-offer.model.js +0 -6
- package/dist/applications/application-onboarding.model.d.ts +0 -69
- package/dist/applications/application-onboarding.model.d.ts.map +0 -1
- package/dist/applications/application-onboarding.model.js +0 -9
- package/dist/applications/application-product.model.d.ts +0 -147
- package/dist/applications/application-product.model.d.ts.map +0 -1
- package/dist/applications/application-product.model.js +0 -67
- package/dist/applications/application-productfeatures.model.d.ts +0 -765
- package/dist/applications/application-productfeatures.model.d.ts.map +0 -1
- package/dist/applications/application-productfeatures.model.js +0 -96
- package/dist/applications/application-rationale.model.d.ts +0 -243
- package/dist/applications/application-rationale.model.d.ts.map +0 -1
- package/dist/applications/application-rationale.model.js +0 -38
- package/dist/applications/application-risk-narrative.model.d.ts +0 -87
- package/dist/applications/application-risk-narrative.model.d.ts.map +0 -1
- package/dist/applications/application-risk-narrative.model.js +0 -12
- package/dist/applications/application-valuation.model.d.ts +0 -71
- package/dist/applications/application-valuation.model.d.ts.map +0 -1
- package/dist/applications/application-valuation.model.js +0 -15
- package/dist/applications/application.model.d.ts +0 -455
- package/dist/applications/application.model.d.ts.map +0 -1
- package/dist/applications/application.model.js +0 -153
- package/dist/applications/broker.model.d.ts +0 -161
- package/dist/applications/broker.model.d.ts.map +0 -1
- package/dist/applications/broker.model.js +0 -21
- package/dist/applications/document.model.d.ts +0 -185
- package/dist/applications/document.model.d.ts.map +0 -1
- package/dist/applications/document.model.js +0 -35
- package/dist/applications/index.d.ts +0 -21
- package/dist/applications/index.d.ts.map +0 -1
- package/dist/applications/index.js +0 -20
- package/dist/applications/solicitor.model.d.ts +0 -203
- package/dist/applications/solicitor.model.d.ts.map +0 -1
- package/dist/applications/solicitor.model.js +0 -114
- package/dist/entities/applicants/applicant-credit-data.entity.d.ts +0 -19
- package/dist/entities/applicants/applicant-credit-data.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-credit-data.entity.js +0 -5
- package/dist/entities/applicants/applicant-credit-profile.entity.d.ts +0 -14
- package/dist/entities/applicants/applicant-credit-profile.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-credit-profile.entity.js +0 -5
- package/dist/entities/applicants/applicant-employment-income.entity.d.ts +0 -14
- package/dist/entities/applicants/applicant-employment-income.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-employment-income.entity.js +0 -5
- package/dist/entities/applicants/applicant-employment.entity.d.ts +0 -54
- package/dist/entities/applicants/applicant-employment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-employment.entity.js +0 -5
- package/dist/entities/applicants/applicant-expenditure.entity.d.ts +0 -14
- package/dist/entities/applicants/applicant-expenditure.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-expenditure.entity.js +0 -5
- package/dist/entities/applicants/applicant-income-source.entity.d.ts +0 -17
- package/dist/entities/applicants/applicant-income-source.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-income-source.entity.js +0 -5
- package/dist/entities/applicants/applicant-income.entity.d.ts +0 -59
- package/dist/entities/applicants/applicant-income.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant-income.entity.js +0 -2
- package/dist/entities/applicants/applicant.entity.d.ts +0 -143
- package/dist/entities/applicants/applicant.entity.d.ts.map +0 -1
- package/dist/entities/applicants/applicant.entity.js +0 -48
- package/dist/entities/applicants/credit-card-commitment.entity.d.ts +0 -16
- package/dist/entities/applicants/credit-card-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/credit-card-commitment.entity.js +0 -5
- package/dist/entities/applicants/index.d.ts +0 -19
- package/dist/entities/applicants/index.d.ts.map +0 -1
- package/dist/entities/applicants/index.js +0 -17
- package/dist/entities/applicants/loan-commitment.entity.d.ts +0 -20
- package/dist/entities/applicants/loan-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/loan-commitment.entity.js +0 -5
- package/dist/entities/applicants/mortgage-commitment.entity.d.ts +0 -37
- package/dist/entities/applicants/mortgage-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/mortgage-commitment.entity.js +0 -19
- package/dist/entities/applicants/other-income.entity.d.ts +0 -41
- package/dist/entities/applicants/other-income.entity.d.ts.map +0 -1
- package/dist/entities/applicants/other-income.entity.js +0 -19
- package/dist/entities/applicants/property-income.entity.d.ts +0 -17
- package/dist/entities/applicants/property-income.entity.d.ts.map +0 -1
- package/dist/entities/applicants/property-income.entity.js +0 -5
- package/dist/entities/applicants/residence-commitment.entity.d.ts +0 -44
- package/dist/entities/applicants/residence-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/residence-commitment.entity.js +0 -19
- package/dist/entities/applicants/secure-loan-commitment.entity.d.ts +0 -21
- package/dist/entities/applicants/secure-loan-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/secure-loan-commitment.entity.js +0 -9
- package/dist/entities/applicants/unsecured-loan-commitment.entity.d.ts +0 -20
- package/dist/entities/applicants/unsecured-loan-commitment.entity.d.ts.map +0 -1
- package/dist/entities/applicants/unsecured-loan-commitment.entity.js +0 -10
- package/dist/entities/applications/application-audit.entity.d.ts +0 -18
- package/dist/entities/applications/application-audit.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-audit.entity.js +0 -5
- package/dist/entities/applications/application-company.entity.d.ts +0 -12
- package/dist/entities/applications/application-company.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-company.entity.js +0 -5
- package/dist/entities/applications/application-credit-profile.entity.d.ts +0 -11
- package/dist/entities/applications/application-credit-profile.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-credit-profile.entity.js +0 -5
- package/dist/entities/applications/application-direct-debit.entity.d.ts +0 -24
- package/dist/entities/applications/application-direct-debit.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-direct-debit.entity.js +0 -5
- package/dist/entities/applications/application-document.entity.d.ts +0 -28
- package/dist/entities/applications/application-document.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-document.entity.js +0 -5
- package/dist/entities/applications/application-fieldconfig.entity.d.ts +0 -9
- package/dist/entities/applications/application-fieldconfig.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-fieldconfig.entity.js +0 -5
- package/dist/entities/applications/application-illustration.entity.d.ts +0 -8
- package/dist/entities/applications/application-illustration.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-illustration.entity.js +0 -5
- package/dist/entities/applications/application-legal.entity.d.ts +0 -9
- package/dist/entities/applications/application-legal.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-legal.entity.js +0 -5
- package/dist/entities/applications/application-mortgage.entity.d.ts +0 -54
- package/dist/entities/applications/application-mortgage.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-mortgage.entity.js +0 -27
- package/dist/entities/applications/application-note.entity.d.ts +0 -37
- package/dist/entities/applications/application-note.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-note.entity.js +0 -5
- package/dist/entities/applications/application-offer.entity.d.ts +0 -8
- package/dist/entities/applications/application-offer.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-offer.entity.js +0 -5
- package/dist/entities/applications/application-onboarding.entity.d.ts +0 -11
- package/dist/entities/applications/application-onboarding.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-onboarding.entity.js +0 -5
- package/dist/entities/applications/application-product.entity.d.ts +0 -33
- package/dist/entities/applications/application-product.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-product.entity.js +0 -5
- package/dist/entities/applications/application-rationale.entity.d.ts +0 -51
- package/dist/entities/applications/application-rationale.entity.d.ts.map +0 -1
- package/dist/entities/applications/application-rationale.entity.js +0 -5
- package/dist/entities/applications/application.entity.d.ts +0 -103
- package/dist/entities/applications/application.entity.d.ts.map +0 -1
- package/dist/entities/applications/application.entity.js +0 -66
- package/dist/entities/applications/broker.entity.d.ts +0 -23
- package/dist/entities/applications/broker.entity.d.ts.map +0 -1
- package/dist/entities/applications/broker.entity.js +0 -5
- package/dist/entities/applications/checklist-item.entity.d.ts +0 -47
- package/dist/entities/applications/checklist-item.entity.d.ts.map +0 -1
- package/dist/entities/applications/checklist-item.entity.js +0 -5
- package/dist/entities/applications/company.entity.d.ts +0 -77
- package/dist/entities/applications/company.entity.d.ts.map +0 -1
- package/dist/entities/applications/company.entity.js +0 -23
- package/dist/entities/applications/index.d.ts +0 -23
- package/dist/entities/applications/index.d.ts.map +0 -1
- package/dist/entities/applications/index.js +0 -21
- package/dist/entities/applications/product-features.entity.d.ts +0 -54
- package/dist/entities/applications/product-features.entity.d.ts.map +0 -1
- package/dist/entities/applications/product-features.entity.js +0 -5
- package/dist/entities/applications/solicitor.entity.d.ts +0 -33
- package/dist/entities/applications/solicitor.entity.d.ts.map +0 -1
- package/dist/entities/applications/solicitor.entity.js +0 -5
- package/dist/entities/index.d.ts +0 -10
- package/dist/entities/index.d.ts.map +0 -1
- package/dist/entities/index.js +0 -10
- package/dist/entities/prisma.d.ts +0 -3
- package/dist/entities/prisma.d.ts.map +0 -1
- package/dist/entities/prisma.js +0 -10
- package/dist/entities/product-catalogues/index.d.ts +0 -8
- package/dist/entities/product-catalogues/index.d.ts.map +0 -1
- package/dist/entities/product-catalogues/index.js +0 -6
- package/dist/entities/product-catalogues/product-catalogue.entity.d.ts +0 -22
- package/dist/entities/product-catalogues/product-catalogue.entity.d.ts.map +0 -1
- package/dist/entities/product-catalogues/product-catalogue.entity.js +0 -5
- package/dist/entities/product-catalogues/product-definition.entity.d.ts +0 -16
- package/dist/entities/product-catalogues/product-definition.entity.d.ts.map +0 -1
- package/dist/entities/product-catalogues/product-definition.entity.js +0 -5
- package/dist/entities/product-catalogues/product-variant.entity.d.ts +0 -14
- package/dist/entities/product-catalogues/product-variant.entity.d.ts.map +0 -1
- package/dist/entities/product-catalogues/product-variant.entity.js +0 -5
- package/dist/entities/product-catalogues/product.entity.d.ts +0 -11
- package/dist/entities/product-catalogues/product.entity.d.ts.map +0 -1
- package/dist/entities/product-catalogues/product.entity.js +0 -5
- package/dist/entities/product-catalogues/rule.entity.d.ts +0 -21
- package/dist/entities/product-catalogues/rule.entity.d.ts.map +0 -1
- package/dist/entities/product-catalogues/rule.entity.js +0 -5
- package/dist/entities/properties/data-street.entity.d.ts +0 -22
- package/dist/entities/properties/data-street.entity.d.ts.map +0 -1
- package/dist/entities/properties/data-street.entity.js +0 -5
- package/dist/entities/properties/index.d.ts +0 -6
- package/dist/entities/properties/index.d.ts.map +0 -1
- package/dist/entities/properties/index.js +0 -4
- package/dist/entities/properties/property.entity.d.ts +0 -30
- package/dist/entities/properties/property.entity.d.ts.map +0 -1
- package/dist/entities/properties/property.entity.js +0 -5
- package/dist/entities/properties/security.entity.d.ts +0 -57
- package/dist/entities/properties/security.entity.d.ts.map +0 -1
- package/dist/entities/properties/security.entity.js +0 -5
- package/dist/entities/shared/alert.entity.d.ts +0 -14
- package/dist/entities/shared/alert.entity.d.ts.map +0 -1
- package/dist/entities/shared/alert.entity.js +0 -5
- package/dist/entities/shared/apprivo-sync-journey.entity.d.ts +0 -19
- package/dist/entities/shared/apprivo-sync-journey.entity.d.ts.map +0 -1
- package/dist/entities/shared/apprivo-sync-journey.entity.js +0 -5
- package/dist/entities/shared/checklist.entity.d.ts +0 -15
- package/dist/entities/shared/checklist.entity.d.ts.map +0 -1
- package/dist/entities/shared/checklist.entity.js +0 -5
- package/dist/entities/shared/document-type.entity.d.ts +0 -9
- package/dist/entities/shared/document-type.entity.d.ts.map +0 -1
- package/dist/entities/shared/document-type.entity.js +0 -5
- package/dist/entities/shared/index.d.ts +0 -12
- package/dist/entities/shared/index.d.ts.map +0 -1
- package/dist/entities/shared/index.js +0 -10
- package/dist/entities/shared/job-run.entity.d.ts +0 -15
- package/dist/entities/shared/job-run.entity.d.ts.map +0 -1
- package/dist/entities/shared/job-run.entity.js +0 -5
- package/dist/entities/shared/job-run.model.d.ts +0 -11
- package/dist/entities/shared/job-run.model.d.ts.map +0 -1
- package/dist/entities/shared/job-run.model.js +0 -1
- package/dist/entities/shared/job-setting.entity.d.ts +0 -11
- package/dist/entities/shared/job-setting.entity.d.ts.map +0 -1
- package/dist/entities/shared/job-setting.entity.js +0 -5
- package/dist/entities/shared/lookup-group.entity.d.ts +0 -11
- package/dist/entities/shared/lookup-group.entity.d.ts.map +0 -1
- package/dist/entities/shared/lookup-group.entity.js +0 -5
- package/dist/entities/shared/lookup.entity.d.ts +0 -14
- package/dist/entities/shared/lookup.entity.d.ts.map +0 -1
- package/dist/entities/shared/lookup.entity.js +0 -5
- package/dist/entities/shared/system-parameter.entity.d.ts +0 -10
- package/dist/entities/shared/system-parameter.entity.d.ts.map +0 -1
- package/dist/entities/shared/system-parameter.entity.js +0 -5
- package/dist/entities/underwriter/index.d.ts +0 -4
- package/dist/entities/underwriter/index.d.ts.map +0 -1
- package/dist/entities/underwriter/index.js +0 -2
- package/dist/entities/underwriter/underwriter.entity.d.ts +0 -16
- package/dist/entities/underwriter/underwriter.entity.d.ts.map +0 -1
- package/dist/entities/underwriter/underwriter.entity.js +0 -5
- package/dist/entities/users/auth-log.entity.d.ts +0 -11
- package/dist/entities/users/auth-log.entity.d.ts.map +0 -1
- package/dist/entities/users/auth-log.entity.js +0 -5
- package/dist/entities/users/index.d.ts +0 -8
- package/dist/entities/users/index.d.ts.map +0 -1
- package/dist/entities/users/index.js +0 -6
- package/dist/entities/users/permission.entity.d.ts +0 -12
- package/dist/entities/users/permission.entity.d.ts.map +0 -1
- package/dist/entities/users/permission.entity.js +0 -5
- package/dist/entities/users/role-group.entity.d.ts +0 -12
- package/dist/entities/users/role-group.entity.d.ts.map +0 -1
- package/dist/entities/users/role-group.entity.js +0 -5
- package/dist/entities/users/role.entity.d.ts +0 -14
- package/dist/entities/users/role.entity.d.ts.map +0 -1
- package/dist/entities/users/role.entity.js +0 -5
- package/dist/entities/users/user.entity.d.ts +0 -35
- package/dist/entities/users/user.entity.d.ts.map +0 -1
- package/dist/entities/users/user.entity.js +0 -10
- package/dist/index.d.ts +0 -9
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -9
- package/dist/product-catalogues/index.d.ts +0 -4
- package/dist/product-catalogues/index.d.ts.map +0 -1
- package/dist/product-catalogues/index.js +0 -3
- package/dist/product-catalogues/product-catalogue.model.d.ts +0 -131
- package/dist/product-catalogues/product-catalogue.model.d.ts.map +0 -1
- package/dist/product-catalogues/product-catalogue.model.js +0 -18
- package/dist/product-catalogues/product-definitions.model.d.ts +0 -317
- package/dist/product-catalogues/product-definitions.model.d.ts.map +0 -1
- package/dist/product-catalogues/product-definitions.model.js +0 -26
- package/dist/product-catalogues/product-variant.model.d.ts +0 -95
- package/dist/product-catalogues/product-variant.model.d.ts.map +0 -1
- package/dist/product-catalogues/product-variant.model.js +0 -12
- package/dist/properties/index.d.ts +0 -3
- package/dist/properties/index.d.ts.map +0 -1
- package/dist/properties/index.js +0 -2
- package/dist/properties/property.model.d.ts +0 -1157
- package/dist/properties/property.model.d.ts.map +0 -1
- package/dist/properties/property.model.js +0 -144
- package/dist/properties/security.model.d.ts +0 -312
- package/dist/properties/security.model.d.ts.map +0 -1
- package/dist/properties/security.model.js +0 -143
- package/dist/shared/alert.model.d.ts +0 -101
- package/dist/shared/alert.model.d.ts.map +0 -1
- package/dist/shared/alert.model.js +0 -24
- package/dist/shared/apprivo-sync-journey.model.d.ts +0 -113
- package/dist/shared/apprivo-sync-journey.model.d.ts.map +0 -1
- package/dist/shared/apprivo-sync-journey.model.js +0 -17
- package/dist/shared/checklist.model.d.ts +0 -101
- package/dist/shared/checklist.model.d.ts.map +0 -1
- package/dist/shared/checklist.model.js +0 -30
- package/dist/shared/document-type-model.d.ts +0 -75
- package/dist/shared/document-type-model.d.ts.map +0 -1
- package/dist/shared/document-type-model.js +0 -10
- package/dist/shared/index.d.ts +0 -13
- package/dist/shared/index.d.ts.map +0 -1
- package/dist/shared/index.js +0 -12
- package/dist/shared/job-run.model.d.ts +0 -75
- package/dist/shared/job-run.model.d.ts.map +0 -1
- package/dist/shared/job-run.model.js +0 -14
- package/dist/shared/job-setting.model.d.ts +0 -69
- package/dist/shared/job-setting.model.d.ts.map +0 -1
- package/dist/shared/job-setting.model.js +0 -11
- package/dist/shared/lookup-group.model.d.ts +0 -57
- package/dist/shared/lookup-group.model.d.ts.map +0 -1
- package/dist/shared/lookup-group.model.js +0 -16
- package/dist/shared/lookup.model.d.ts +0 -69
- package/dist/shared/lookup.model.d.ts.map +0 -1
- package/dist/shared/lookup.model.js +0 -20
- package/dist/shared/schema-doc.model.d.ts +0 -75
- package/dist/shared/schema-doc.model.d.ts.map +0 -1
- package/dist/shared/schema-doc.model.js +0 -11
- package/dist/shared/system-parameter.model.d.ts +0 -87
- package/dist/shared/system-parameter.model.d.ts.map +0 -1
- package/dist/shared/system-parameter.model.js +0 -32
- package/dist/shared/task-document.model.d.ts +0 -69
- package/dist/shared/task-document.model.d.ts.map +0 -1
- package/dist/shared/task-document.model.js +0 -23
- package/dist/shared/task.model.d.ts +0 -233
- package/dist/shared/task.model.d.ts.map +0 -1
- package/dist/shared/task.model.js +0 -15
- package/dist/underwriter/index.d.ts +0 -2
- package/dist/underwriter/index.d.ts.map +0 -1
- package/dist/underwriter/index.js +0 -1
- package/dist/underwriter/underwriter.model.d.ts +0 -125
- package/dist/underwriter/underwriter.model.d.ts.map +0 -1
- package/dist/underwriter/underwriter.model.js +0 -17
- package/dist/users/auth-log.model.d.ts +0 -69
- package/dist/users/auth-log.model.d.ts.map +0 -1
- package/dist/users/auth-log.model.js +0 -21
- package/dist/users/index.d.ts +0 -7
- package/dist/users/index.d.ts.map +0 -1
- package/dist/users/index.js +0 -6
- package/dist/users/permission.model.d.ts +0 -83
- package/dist/users/permission.model.d.ts.map +0 -1
- package/dist/users/permission.model.js +0 -10
- package/dist/users/role-group.model.d.ts +0 -89
- package/dist/users/role-group.model.d.ts.map +0 -1
- package/dist/users/role-group.model.js +0 -14
- package/dist/users/role.model.d.ts +0 -89
- package/dist/users/role.model.d.ts.map +0 -1
- package/dist/users/role.model.js +0 -13
- package/dist/users/tasks.model.d.ts +0 -113
- package/dist/users/tasks.model.d.ts.map +0 -1
- package/dist/users/tasks.model.js +0 -15
- package/dist/users/user.model.d.ts +0 -215
- package/dist/users/user.model.d.ts.map +0 -1
- package/dist/users/user.model.js +0 -30
- package/dist/value-objects/pound.d.ts +0 -41
- package/dist/value-objects/pound.d.ts.map +0 -1
- package/dist/value-objects/pound.js +0 -26
- package/dist/value-objects/sort-code.d.ts +0 -41
- package/dist/value-objects/sort-code.d.ts.map +0 -1
- package/dist/value-objects/sort-code.js +0 -25
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
/// <reference path="../value-objects/pound.d.ts" />
|
|
2
|
-
/// <reference path="../value-objects/sort-code.d.ts" />
|
|
3
|
-
/// <reference types="mongoose/types/aggregate" />
|
|
4
|
-
/// <reference types="mongoose/types/callback" />
|
|
5
|
-
/// <reference types="mongoose/types/collection" />
|
|
6
|
-
/// <reference types="mongoose/types/connection" />
|
|
7
|
-
/// <reference types="mongoose/types/cursor" />
|
|
8
|
-
/// <reference types="mongoose/types/document" />
|
|
9
|
-
/// <reference types="mongoose/types/error" />
|
|
10
|
-
/// <reference types="mongoose/types/expressions" />
|
|
11
|
-
/// <reference types="mongoose/types/helpers" />
|
|
12
|
-
/// <reference types="mongoose/types/middlewares" />
|
|
13
|
-
/// <reference types="mongoose/types/indexes" />
|
|
14
|
-
/// <reference types="mongoose/types/models" />
|
|
15
|
-
/// <reference types="mongoose/types/mongooseoptions" />
|
|
16
|
-
/// <reference types="mongoose/types/pipelinestage" />
|
|
17
|
-
/// <reference types="mongoose/types/populate" />
|
|
18
|
-
/// <reference types="mongoose/types/query" />
|
|
19
|
-
/// <reference types="mongoose/types/schemaoptions" />
|
|
20
|
-
/// <reference types="mongoose/types/schematypes" />
|
|
21
|
-
/// <reference types="mongoose/types/session" />
|
|
22
|
-
/// <reference types="mongoose/types/types" />
|
|
23
|
-
/// <reference types="mongoose/types/utility" />
|
|
24
|
-
/// <reference types="mongoose/types/validation" />
|
|
25
|
-
/// <reference types="mongoose/types/virtuals" />
|
|
26
|
-
/// <reference types="mongoose/types/inferschematype" />
|
|
27
|
-
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
28
|
-
import mongoose from "mongoose";
|
|
29
|
-
declare const BrokerModel: mongoose.Model<{
|
|
30
|
-
createdAt: NativeDate;
|
|
31
|
-
updatedAt: NativeDate;
|
|
32
|
-
} & {
|
|
33
|
-
addressPostCode?: string | null | undefined;
|
|
34
|
-
addressLine1?: string | null | undefined;
|
|
35
|
-
addressLine2?: string | null | undefined;
|
|
36
|
-
addressLine3?: string | null | undefined;
|
|
37
|
-
addressCity?: string | null | undefined;
|
|
38
|
-
addressCountry?: string | null | undefined;
|
|
39
|
-
brokerId?: string | null | undefined;
|
|
40
|
-
landlinePhone?: string | null | undefined;
|
|
41
|
-
mobileTelephone?: string | null | undefined;
|
|
42
|
-
tradingName?: string | null | undefined;
|
|
43
|
-
fcaNumber?: string | null | undefined;
|
|
44
|
-
brokerType?: string | null | undefined;
|
|
45
|
-
email?: string | null | undefined;
|
|
46
|
-
network?: string | null | undefined;
|
|
47
|
-
firstName?: string | null | undefined;
|
|
48
|
-
lastName?: string | null | undefined;
|
|
49
|
-
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
50
|
-
createdAt: NativeDate;
|
|
51
|
-
updatedAt: NativeDate;
|
|
52
|
-
} & {
|
|
53
|
-
addressPostCode?: string | null | undefined;
|
|
54
|
-
addressLine1?: string | null | undefined;
|
|
55
|
-
addressLine2?: string | null | undefined;
|
|
56
|
-
addressLine3?: string | null | undefined;
|
|
57
|
-
addressCity?: string | null | undefined;
|
|
58
|
-
addressCountry?: string | null | undefined;
|
|
59
|
-
brokerId?: string | null | undefined;
|
|
60
|
-
landlinePhone?: string | null | undefined;
|
|
61
|
-
mobileTelephone?: string | null | undefined;
|
|
62
|
-
tradingName?: string | null | undefined;
|
|
63
|
-
fcaNumber?: string | null | undefined;
|
|
64
|
-
brokerType?: string | null | undefined;
|
|
65
|
-
email?: string | null | undefined;
|
|
66
|
-
network?: string | null | undefined;
|
|
67
|
-
firstName?: string | null | undefined;
|
|
68
|
-
lastName?: string | null | undefined;
|
|
69
|
-
}> & {
|
|
70
|
-
createdAt: NativeDate;
|
|
71
|
-
updatedAt: NativeDate;
|
|
72
|
-
} & {
|
|
73
|
-
addressPostCode?: string | null | undefined;
|
|
74
|
-
addressLine1?: string | null | undefined;
|
|
75
|
-
addressLine2?: string | null | undefined;
|
|
76
|
-
addressLine3?: string | null | undefined;
|
|
77
|
-
addressCity?: string | null | undefined;
|
|
78
|
-
addressCountry?: string | null | undefined;
|
|
79
|
-
brokerId?: string | null | undefined;
|
|
80
|
-
landlinePhone?: string | null | undefined;
|
|
81
|
-
mobileTelephone?: string | null | undefined;
|
|
82
|
-
tradingName?: string | null | undefined;
|
|
83
|
-
fcaNumber?: string | null | undefined;
|
|
84
|
-
brokerType?: string | null | undefined;
|
|
85
|
-
email?: string | null | undefined;
|
|
86
|
-
network?: string | null | undefined;
|
|
87
|
-
firstName?: string | null | undefined;
|
|
88
|
-
lastName?: string | null | undefined;
|
|
89
|
-
} & {
|
|
90
|
-
_id: mongoose.Types.ObjectId;
|
|
91
|
-
} & {
|
|
92
|
-
__v: number;
|
|
93
|
-
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
94
|
-
timestamps: true;
|
|
95
|
-
}, {
|
|
96
|
-
createdAt: NativeDate;
|
|
97
|
-
updatedAt: NativeDate;
|
|
98
|
-
} & {
|
|
99
|
-
addressPostCode?: string | null | undefined;
|
|
100
|
-
addressLine1?: string | null | undefined;
|
|
101
|
-
addressLine2?: string | null | undefined;
|
|
102
|
-
addressLine3?: string | null | undefined;
|
|
103
|
-
addressCity?: string | null | undefined;
|
|
104
|
-
addressCountry?: string | null | undefined;
|
|
105
|
-
brokerId?: string | null | undefined;
|
|
106
|
-
landlinePhone?: string | null | undefined;
|
|
107
|
-
mobileTelephone?: string | null | undefined;
|
|
108
|
-
tradingName?: string | null | undefined;
|
|
109
|
-
fcaNumber?: string | null | undefined;
|
|
110
|
-
brokerType?: string | null | undefined;
|
|
111
|
-
email?: string | null | undefined;
|
|
112
|
-
network?: string | null | undefined;
|
|
113
|
-
firstName?: string | null | undefined;
|
|
114
|
-
lastName?: string | null | undefined;
|
|
115
|
-
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
116
|
-
createdAt: NativeDate;
|
|
117
|
-
updatedAt: NativeDate;
|
|
118
|
-
} & {
|
|
119
|
-
addressPostCode?: string | null | undefined;
|
|
120
|
-
addressLine1?: string | null | undefined;
|
|
121
|
-
addressLine2?: string | null | undefined;
|
|
122
|
-
addressLine3?: string | null | undefined;
|
|
123
|
-
addressCity?: string | null | undefined;
|
|
124
|
-
addressCountry?: string | null | undefined;
|
|
125
|
-
brokerId?: string | null | undefined;
|
|
126
|
-
landlinePhone?: string | null | undefined;
|
|
127
|
-
mobileTelephone?: string | null | undefined;
|
|
128
|
-
tradingName?: string | null | undefined;
|
|
129
|
-
fcaNumber?: string | null | undefined;
|
|
130
|
-
brokerType?: string | null | undefined;
|
|
131
|
-
email?: string | null | undefined;
|
|
132
|
-
network?: string | null | undefined;
|
|
133
|
-
firstName?: string | null | undefined;
|
|
134
|
-
lastName?: string | null | undefined;
|
|
135
|
-
}>> & mongoose.FlatRecord<{
|
|
136
|
-
createdAt: NativeDate;
|
|
137
|
-
updatedAt: NativeDate;
|
|
138
|
-
} & {
|
|
139
|
-
addressPostCode?: string | null | undefined;
|
|
140
|
-
addressLine1?: string | null | undefined;
|
|
141
|
-
addressLine2?: string | null | undefined;
|
|
142
|
-
addressLine3?: string | null | undefined;
|
|
143
|
-
addressCity?: string | null | undefined;
|
|
144
|
-
addressCountry?: string | null | undefined;
|
|
145
|
-
brokerId?: string | null | undefined;
|
|
146
|
-
landlinePhone?: string | null | undefined;
|
|
147
|
-
mobileTelephone?: string | null | undefined;
|
|
148
|
-
tradingName?: string | null | undefined;
|
|
149
|
-
fcaNumber?: string | null | undefined;
|
|
150
|
-
brokerType?: string | null | undefined;
|
|
151
|
-
email?: string | null | undefined;
|
|
152
|
-
network?: string | null | undefined;
|
|
153
|
-
firstName?: string | null | undefined;
|
|
154
|
-
lastName?: string | null | undefined;
|
|
155
|
-
}> & {
|
|
156
|
-
_id: mongoose.Types.ObjectId;
|
|
157
|
-
} & {
|
|
158
|
-
__v: number;
|
|
159
|
-
}>>;
|
|
160
|
-
export default BrokerModel;
|
|
161
|
-
//# sourceMappingURL=broker.model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"broker.model.d.ts","sourceRoot":"","sources":["../../applications/broker.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAwBhC,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAyC,CAAC;AAC3D,eAAe,WAAW,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import mongoose from "mongoose";
|
|
2
|
-
const brokerSchema = new mongoose.Schema({
|
|
3
|
-
brokerId: { type: String },
|
|
4
|
-
landlinePhone: { type: String },
|
|
5
|
-
mobileTelephone: { type: String },
|
|
6
|
-
addressPostCode: { type: String },
|
|
7
|
-
addressLine1: { type: String },
|
|
8
|
-
addressLine2: { type: String },
|
|
9
|
-
addressLine3: { type: String },
|
|
10
|
-
addressCity: { type: String },
|
|
11
|
-
addressCountry: { type: String },
|
|
12
|
-
tradingName: { type: String },
|
|
13
|
-
fcaNumber: { type: String },
|
|
14
|
-
brokerType: { type: String },
|
|
15
|
-
email: { type: String },
|
|
16
|
-
network: { type: String },
|
|
17
|
-
firstName: { type: String },
|
|
18
|
-
lastName: { type: String }
|
|
19
|
-
}, { timestamps: true });
|
|
20
|
-
const BrokerModel = mongoose.model("Broker", brokerSchema);
|
|
21
|
-
export default BrokerModel;
|
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
/// <reference path="../value-objects/pound.d.ts" />
|
|
2
|
-
/// <reference path="../value-objects/sort-code.d.ts" />
|
|
3
|
-
/// <reference types="mongoose/types/aggregate" />
|
|
4
|
-
/// <reference types="mongoose/types/callback" />
|
|
5
|
-
/// <reference types="mongoose/types/collection" />
|
|
6
|
-
/// <reference types="mongoose/types/connection" />
|
|
7
|
-
/// <reference types="mongoose/types/cursor" />
|
|
8
|
-
/// <reference types="mongoose/types/document" />
|
|
9
|
-
/// <reference types="mongoose/types/error" />
|
|
10
|
-
/// <reference types="mongoose/types/expressions" />
|
|
11
|
-
/// <reference types="mongoose/types/helpers" />
|
|
12
|
-
/// <reference types="mongoose/types/middlewares" />
|
|
13
|
-
/// <reference types="mongoose/types/indexes" />
|
|
14
|
-
/// <reference types="mongoose/types/models" />
|
|
15
|
-
/// <reference types="mongoose/types/mongooseoptions" />
|
|
16
|
-
/// <reference types="mongoose/types/pipelinestage" />
|
|
17
|
-
/// <reference types="mongoose/types/populate" />
|
|
18
|
-
/// <reference types="mongoose/types/query" />
|
|
19
|
-
/// <reference types="mongoose/types/schemaoptions" />
|
|
20
|
-
/// <reference types="mongoose/types/schematypes" />
|
|
21
|
-
/// <reference types="mongoose/types/session" />
|
|
22
|
-
/// <reference types="mongoose/types/types" />
|
|
23
|
-
/// <reference types="mongoose/types/utility" />
|
|
24
|
-
/// <reference types="mongoose/types/validation" />
|
|
25
|
-
/// <reference types="mongoose/types/virtuals" />
|
|
26
|
-
/// <reference types="mongoose/types/inferschematype" />
|
|
27
|
-
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
28
|
-
import mongoose from "mongoose";
|
|
29
|
-
declare const DocumentModel: mongoose.Model<{
|
|
30
|
-
createdAt: NativeDate;
|
|
31
|
-
updatedAt: NativeDate;
|
|
32
|
-
} & {
|
|
33
|
-
documentId: string;
|
|
34
|
-
signers: any[];
|
|
35
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
36
|
-
data?: string | null | undefined;
|
|
37
|
-
owningEntityId?: string | null | undefined;
|
|
38
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
39
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
40
|
-
fileName?: string | null | undefined;
|
|
41
|
-
contentType?: string | null | undefined;
|
|
42
|
-
created?: string | null | undefined;
|
|
43
|
-
createdBy?: string | null | undefined;
|
|
44
|
-
isGenerated?: string | null | undefined;
|
|
45
|
-
envelopeId?: string | null | undefined;
|
|
46
|
-
documentType?: {
|
|
47
|
-
data?: any;
|
|
48
|
-
value?: string | null | undefined;
|
|
49
|
-
documentTypeId?: string | null | undefined;
|
|
50
|
-
displayName?: string | null | undefined;
|
|
51
|
-
} | null | undefined;
|
|
52
|
-
documentUrl?: string | null | undefined;
|
|
53
|
-
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
54
|
-
createdAt: NativeDate;
|
|
55
|
-
updatedAt: NativeDate;
|
|
56
|
-
} & {
|
|
57
|
-
documentId: string;
|
|
58
|
-
signers: any[];
|
|
59
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
60
|
-
data?: string | null | undefined;
|
|
61
|
-
owningEntityId?: string | null | undefined;
|
|
62
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
63
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
64
|
-
fileName?: string | null | undefined;
|
|
65
|
-
contentType?: string | null | undefined;
|
|
66
|
-
created?: string | null | undefined;
|
|
67
|
-
createdBy?: string | null | undefined;
|
|
68
|
-
isGenerated?: string | null | undefined;
|
|
69
|
-
envelopeId?: string | null | undefined;
|
|
70
|
-
documentType?: {
|
|
71
|
-
data?: any;
|
|
72
|
-
value?: string | null | undefined;
|
|
73
|
-
documentTypeId?: string | null | undefined;
|
|
74
|
-
displayName?: string | null | undefined;
|
|
75
|
-
} | null | undefined;
|
|
76
|
-
documentUrl?: string | null | undefined;
|
|
77
|
-
}> & {
|
|
78
|
-
createdAt: NativeDate;
|
|
79
|
-
updatedAt: NativeDate;
|
|
80
|
-
} & {
|
|
81
|
-
documentId: string;
|
|
82
|
-
signers: any[];
|
|
83
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
84
|
-
data?: string | null | undefined;
|
|
85
|
-
owningEntityId?: string | null | undefined;
|
|
86
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
87
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
88
|
-
fileName?: string | null | undefined;
|
|
89
|
-
contentType?: string | null | undefined;
|
|
90
|
-
created?: string | null | undefined;
|
|
91
|
-
createdBy?: string | null | undefined;
|
|
92
|
-
isGenerated?: string | null | undefined;
|
|
93
|
-
envelopeId?: string | null | undefined;
|
|
94
|
-
documentType?: {
|
|
95
|
-
data?: any;
|
|
96
|
-
value?: string | null | undefined;
|
|
97
|
-
documentTypeId?: string | null | undefined;
|
|
98
|
-
displayName?: string | null | undefined;
|
|
99
|
-
} | null | undefined;
|
|
100
|
-
documentUrl?: string | null | undefined;
|
|
101
|
-
} & {
|
|
102
|
-
_id: mongoose.Types.ObjectId;
|
|
103
|
-
} & {
|
|
104
|
-
__v: number;
|
|
105
|
-
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
106
|
-
timestamps: true;
|
|
107
|
-
}, {
|
|
108
|
-
createdAt: NativeDate;
|
|
109
|
-
updatedAt: NativeDate;
|
|
110
|
-
} & {
|
|
111
|
-
documentId: string;
|
|
112
|
-
signers: any[];
|
|
113
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
114
|
-
data?: string | null | undefined;
|
|
115
|
-
owningEntityId?: string | null | undefined;
|
|
116
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
117
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
118
|
-
fileName?: string | null | undefined;
|
|
119
|
-
contentType?: string | null | undefined;
|
|
120
|
-
created?: string | null | undefined;
|
|
121
|
-
createdBy?: string | null | undefined;
|
|
122
|
-
isGenerated?: string | null | undefined;
|
|
123
|
-
envelopeId?: string | null | undefined;
|
|
124
|
-
documentType?: {
|
|
125
|
-
data?: any;
|
|
126
|
-
value?: string | null | undefined;
|
|
127
|
-
documentTypeId?: string | null | undefined;
|
|
128
|
-
displayName?: string | null | undefined;
|
|
129
|
-
} | null | undefined;
|
|
130
|
-
documentUrl?: string | null | undefined;
|
|
131
|
-
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
132
|
-
createdAt: NativeDate;
|
|
133
|
-
updatedAt: NativeDate;
|
|
134
|
-
} & {
|
|
135
|
-
documentId: string;
|
|
136
|
-
signers: any[];
|
|
137
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
138
|
-
data?: string | null | undefined;
|
|
139
|
-
owningEntityId?: string | null | undefined;
|
|
140
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
141
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
142
|
-
fileName?: string | null | undefined;
|
|
143
|
-
contentType?: string | null | undefined;
|
|
144
|
-
created?: string | null | undefined;
|
|
145
|
-
createdBy?: string | null | undefined;
|
|
146
|
-
isGenerated?: string | null | undefined;
|
|
147
|
-
envelopeId?: string | null | undefined;
|
|
148
|
-
documentType?: {
|
|
149
|
-
data?: any;
|
|
150
|
-
value?: string | null | undefined;
|
|
151
|
-
documentTypeId?: string | null | undefined;
|
|
152
|
-
displayName?: string | null | undefined;
|
|
153
|
-
} | null | undefined;
|
|
154
|
-
documentUrl?: string | null | undefined;
|
|
155
|
-
}>> & mongoose.FlatRecord<{
|
|
156
|
-
createdAt: NativeDate;
|
|
157
|
-
updatedAt: NativeDate;
|
|
158
|
-
} & {
|
|
159
|
-
documentId: string;
|
|
160
|
-
signers: any[];
|
|
161
|
-
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
162
|
-
data?: string | null | undefined;
|
|
163
|
-
owningEntityId?: string | null | undefined;
|
|
164
|
-
documentTypeLid?: mongoose.Types.ObjectId | null | undefined;
|
|
165
|
-
documentTypeId?: mongoose.Types.ObjectId | null | undefined;
|
|
166
|
-
fileName?: string | null | undefined;
|
|
167
|
-
contentType?: string | null | undefined;
|
|
168
|
-
created?: string | null | undefined;
|
|
169
|
-
createdBy?: string | null | undefined;
|
|
170
|
-
isGenerated?: string | null | undefined;
|
|
171
|
-
envelopeId?: string | null | undefined;
|
|
172
|
-
documentType?: {
|
|
173
|
-
data?: any;
|
|
174
|
-
value?: string | null | undefined;
|
|
175
|
-
documentTypeId?: string | null | undefined;
|
|
176
|
-
displayName?: string | null | undefined;
|
|
177
|
-
} | null | undefined;
|
|
178
|
-
documentUrl?: string | null | undefined;
|
|
179
|
-
}> & {
|
|
180
|
-
_id: mongoose.Types.ObjectId;
|
|
181
|
-
} & {
|
|
182
|
-
__v: number;
|
|
183
|
-
}>>;
|
|
184
|
-
export default DocumentModel;
|
|
185
|
-
//# sourceMappingURL=document.model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"document.model.d.ts","sourceRoot":"","sources":["../../applications/document.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAoChC,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA6C,CAAC;AACjE,eAAe,aAAa,CAAC"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import mongoose from "mongoose";
|
|
2
|
-
const documentSchema = new mongoose.Schema({
|
|
3
|
-
applicationId: {
|
|
4
|
-
type: mongoose.Schema.Types.ObjectId,
|
|
5
|
-
ref: "Application",
|
|
6
|
-
required: false,
|
|
7
|
-
},
|
|
8
|
-
documentId: { type: String, required: true },
|
|
9
|
-
owningEntityId: { type: String, required: false },
|
|
10
|
-
documentTypeLid: {
|
|
11
|
-
type: mongoose.Schema.Types.ObjectId,
|
|
12
|
-
ref: "Lookup",
|
|
13
|
-
required: false,
|
|
14
|
-
},
|
|
15
|
-
documentTypeId: { type: mongoose.Schema.Types.ObjectId, ref: "DocumentType", required: false },
|
|
16
|
-
fileName: { type: String, required: false },
|
|
17
|
-
contentType: { type: String, required: false },
|
|
18
|
-
created: { type: String, required: false },
|
|
19
|
-
createdBy: { type: String, required: false },
|
|
20
|
-
isGenerated: { type: String, required: false },
|
|
21
|
-
data: { type: String, required: false },
|
|
22
|
-
envelopeId: { type: String, required: false },
|
|
23
|
-
signers: { type: Array, default: [] },
|
|
24
|
-
documentType: {
|
|
25
|
-
documentTypeId: { type: String, required: false },
|
|
26
|
-
displayName: { type: String, required: false },
|
|
27
|
-
value: { type: String, required: false },
|
|
28
|
-
data: { type: Object, required: false },
|
|
29
|
-
},
|
|
30
|
-
documentUrl: { type: String, required: false },
|
|
31
|
-
}, {
|
|
32
|
-
timestamps: true
|
|
33
|
-
});
|
|
34
|
-
const DocumentModel = mongoose.model("Document", documentSchema);
|
|
35
|
-
export default DocumentModel;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export { default as ApplicationModel } from './application.model';
|
|
2
|
-
export { default as ApplicationAuditModel } from './application-audit.model';
|
|
3
|
-
export { default as ApplicationCheckListModel } from './application-checklist-Item.model';
|
|
4
|
-
export { default as ApplicationCompanyModel } from './application-company-model.js';
|
|
5
|
-
export { default as ApplicationNoteModel } from './application-note.model';
|
|
6
|
-
export { default as ApplicationCreditProfileModel } from './application-credit-profile.model';
|
|
7
|
-
export { default as ApplicationDirectDebitModel } from './application-direct-debit.model';
|
|
8
|
-
export { default as ApplicationMortgageModel } from './application-mortgage.model';
|
|
9
|
-
export { default as ApplicationOnboardingModel } from './application-onboarding.model';
|
|
10
|
-
export { default as ApplicationRationaleModel } from './application-rationale.model';
|
|
11
|
-
export { default as ApplicationValuationModel } from './application-valuation.model';
|
|
12
|
-
export { default as BrokerModel } from './broker.model';
|
|
13
|
-
export { default as ProductModel } from './application-product.model';
|
|
14
|
-
export { default as SolicitorModel } from './solicitor.model';
|
|
15
|
-
export { default as ApplicationDocumentModel } from './application-document.model';
|
|
16
|
-
export { default as ApplicationRiskNarrativeModel } from './application-risk-narrative.model';
|
|
17
|
-
export { default as ApplicationFieldConfigModel } from './application-fieldconfig.model';
|
|
18
|
-
export { default as DocumentModel } from './document.model';
|
|
19
|
-
export { default as MortgageModel } from './application-mortgage.model';
|
|
20
|
-
export { default as ApplicationProductFeaturesModel } from './application-productfeatures.model';
|
|
21
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../applications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAC,MAAM,kCAAkC,CAAA;AACxF,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AACvF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AACzF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,+BAA+B,EAAE,MAAM,qCAAqC,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export { default as ApplicationModel } from './application.model';
|
|
2
|
-
export { default as ApplicationAuditModel } from './application-audit.model';
|
|
3
|
-
export { default as ApplicationCheckListModel } from './application-checklist-Item.model';
|
|
4
|
-
export { default as ApplicationCompanyModel } from './application-company-model.js';
|
|
5
|
-
export { default as ApplicationNoteModel } from './application-note.model';
|
|
6
|
-
export { default as ApplicationCreditProfileModel } from './application-credit-profile.model';
|
|
7
|
-
export { default as ApplicationDirectDebitModel } from './application-direct-debit.model';
|
|
8
|
-
export { default as ApplicationMortgageModel } from './application-mortgage.model';
|
|
9
|
-
export { default as ApplicationOnboardingModel } from './application-onboarding.model';
|
|
10
|
-
export { default as ApplicationRationaleModel } from './application-rationale.model';
|
|
11
|
-
export { default as ApplicationValuationModel } from './application-valuation.model';
|
|
12
|
-
export { default as BrokerModel } from './broker.model';
|
|
13
|
-
export { default as ProductModel } from './application-product.model';
|
|
14
|
-
export { default as SolicitorModel } from './solicitor.model';
|
|
15
|
-
export { default as ApplicationDocumentModel } from './application-document.model';
|
|
16
|
-
export { default as ApplicationRiskNarrativeModel } from './application-risk-narrative.model';
|
|
17
|
-
export { default as ApplicationFieldConfigModel } from './application-fieldconfig.model';
|
|
18
|
-
export { default as DocumentModel } from './document.model';
|
|
19
|
-
export { default as MortgageModel } from './application-mortgage.model';
|
|
20
|
-
export { default as ApplicationProductFeaturesModel } from './application-productfeatures.model';
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
/// <reference path="../value-objects/pound.d.ts" />
|
|
2
|
-
/// <reference types="mongoose/types/aggregate" />
|
|
3
|
-
/// <reference types="mongoose/types/callback" />
|
|
4
|
-
/// <reference types="mongoose/types/collection" />
|
|
5
|
-
/// <reference types="mongoose/types/connection" />
|
|
6
|
-
/// <reference types="mongoose/types/cursor" />
|
|
7
|
-
/// <reference types="mongoose/types/document" />
|
|
8
|
-
/// <reference types="mongoose/types/error" />
|
|
9
|
-
/// <reference types="mongoose/types/expressions" />
|
|
10
|
-
/// <reference types="mongoose/types/helpers" />
|
|
11
|
-
/// <reference types="mongoose/types/middlewares" />
|
|
12
|
-
/// <reference types="mongoose/types/indexes" />
|
|
13
|
-
/// <reference types="mongoose/types/models" />
|
|
14
|
-
/// <reference types="mongoose/types/mongooseoptions" />
|
|
15
|
-
/// <reference types="mongoose/types/pipelinestage" />
|
|
16
|
-
/// <reference types="mongoose/types/populate" />
|
|
17
|
-
/// <reference types="mongoose/types/query" />
|
|
18
|
-
/// <reference types="mongoose/types/schemaoptions" />
|
|
19
|
-
/// <reference types="mongoose/types/schematypes" />
|
|
20
|
-
/// <reference types="mongoose/types/session" />
|
|
21
|
-
/// <reference types="mongoose/types/types" />
|
|
22
|
-
/// <reference types="mongoose/types/utility" />
|
|
23
|
-
/// <reference types="mongoose/types/validation" />
|
|
24
|
-
/// <reference types="mongoose/types/virtuals" />
|
|
25
|
-
/// <reference types="mongoose/types/inferschematype" />
|
|
26
|
-
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
27
|
-
import mongoose from "mongoose";
|
|
28
|
-
import { SortCode } from "../value-objects/sort-code";
|
|
29
|
-
declare const SolicitorModel: mongoose.Model<{
|
|
30
|
-
createdAt: NativeDate;
|
|
31
|
-
updatedAt: NativeDate;
|
|
32
|
-
} & {
|
|
33
|
-
applicationId: mongoose.Types.ObjectId;
|
|
34
|
-
pageValidFlag: boolean;
|
|
35
|
-
addressPostCode?: string | null | undefined;
|
|
36
|
-
addressLine1?: string | null | undefined;
|
|
37
|
-
addressLine2?: string | null | undefined;
|
|
38
|
-
addressLine3?: string | null | undefined;
|
|
39
|
-
addressCity?: string | null | undefined;
|
|
40
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
41
|
-
accountNumber?: number | null | undefined;
|
|
42
|
-
contactPostcode?: string | null | undefined;
|
|
43
|
-
institution?: string | null | undefined;
|
|
44
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
45
|
-
sortCode?: SortCode | null | undefined;
|
|
46
|
-
email?: string | null | undefined;
|
|
47
|
-
bankAddressLine1?: string | null | undefined;
|
|
48
|
-
bankAddressLine2?: string | null | undefined;
|
|
49
|
-
bankBranch?: string | null | undefined;
|
|
50
|
-
bankCity?: string | null | undefined;
|
|
51
|
-
nameOfFirm?: string | null | undefined;
|
|
52
|
-
signatory?: string | null | undefined;
|
|
53
|
-
solicitorActing?: string | null | undefined;
|
|
54
|
-
telephone?: string | null | undefined;
|
|
55
|
-
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
56
|
-
createdAt: NativeDate;
|
|
57
|
-
updatedAt: NativeDate;
|
|
58
|
-
} & {
|
|
59
|
-
applicationId: mongoose.Types.ObjectId;
|
|
60
|
-
pageValidFlag: boolean;
|
|
61
|
-
addressPostCode?: string | null | undefined;
|
|
62
|
-
addressLine1?: string | null | undefined;
|
|
63
|
-
addressLine2?: string | null | undefined;
|
|
64
|
-
addressLine3?: string | null | undefined;
|
|
65
|
-
addressCity?: string | null | undefined;
|
|
66
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
67
|
-
accountNumber?: number | null | undefined;
|
|
68
|
-
contactPostcode?: string | null | undefined;
|
|
69
|
-
institution?: string | null | undefined;
|
|
70
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
71
|
-
sortCode?: SortCode | null | undefined;
|
|
72
|
-
email?: string | null | undefined;
|
|
73
|
-
bankAddressLine1?: string | null | undefined;
|
|
74
|
-
bankAddressLine2?: string | null | undefined;
|
|
75
|
-
bankBranch?: string | null | undefined;
|
|
76
|
-
bankCity?: string | null | undefined;
|
|
77
|
-
nameOfFirm?: string | null | undefined;
|
|
78
|
-
signatory?: string | null | undefined;
|
|
79
|
-
solicitorActing?: string | null | undefined;
|
|
80
|
-
telephone?: string | null | undefined;
|
|
81
|
-
}> & {
|
|
82
|
-
createdAt: NativeDate;
|
|
83
|
-
updatedAt: NativeDate;
|
|
84
|
-
} & {
|
|
85
|
-
applicationId: mongoose.Types.ObjectId;
|
|
86
|
-
pageValidFlag: boolean;
|
|
87
|
-
addressPostCode?: string | null | undefined;
|
|
88
|
-
addressLine1?: string | null | undefined;
|
|
89
|
-
addressLine2?: string | null | undefined;
|
|
90
|
-
addressLine3?: string | null | undefined;
|
|
91
|
-
addressCity?: string | null | undefined;
|
|
92
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
93
|
-
accountNumber?: number | null | undefined;
|
|
94
|
-
contactPostcode?: string | null | undefined;
|
|
95
|
-
institution?: string | null | undefined;
|
|
96
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
97
|
-
sortCode?: SortCode | null | undefined;
|
|
98
|
-
email?: string | null | undefined;
|
|
99
|
-
bankAddressLine1?: string | null | undefined;
|
|
100
|
-
bankAddressLine2?: string | null | undefined;
|
|
101
|
-
bankBranch?: string | null | undefined;
|
|
102
|
-
bankCity?: string | null | undefined;
|
|
103
|
-
nameOfFirm?: string | null | undefined;
|
|
104
|
-
signatory?: string | null | undefined;
|
|
105
|
-
solicitorActing?: string | null | undefined;
|
|
106
|
-
telephone?: string | null | undefined;
|
|
107
|
-
} & {
|
|
108
|
-
_id: mongoose.Types.ObjectId;
|
|
109
|
-
} & {
|
|
110
|
-
__v: number;
|
|
111
|
-
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
112
|
-
timestamps: true;
|
|
113
|
-
toJSON: {
|
|
114
|
-
virtuals: true;
|
|
115
|
-
};
|
|
116
|
-
toObject: {
|
|
117
|
-
virtuals: true;
|
|
118
|
-
};
|
|
119
|
-
}, {
|
|
120
|
-
createdAt: NativeDate;
|
|
121
|
-
updatedAt: NativeDate;
|
|
122
|
-
} & {
|
|
123
|
-
applicationId: mongoose.Types.ObjectId;
|
|
124
|
-
pageValidFlag: boolean;
|
|
125
|
-
addressPostCode?: string | null | undefined;
|
|
126
|
-
addressLine1?: string | null | undefined;
|
|
127
|
-
addressLine2?: string | null | undefined;
|
|
128
|
-
addressLine3?: string | null | undefined;
|
|
129
|
-
addressCity?: string | null | undefined;
|
|
130
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
131
|
-
accountNumber?: number | null | undefined;
|
|
132
|
-
contactPostcode?: string | null | undefined;
|
|
133
|
-
institution?: string | null | undefined;
|
|
134
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
135
|
-
sortCode?: SortCode | null | undefined;
|
|
136
|
-
email?: string | null | undefined;
|
|
137
|
-
bankAddressLine1?: string | null | undefined;
|
|
138
|
-
bankAddressLine2?: string | null | undefined;
|
|
139
|
-
bankBranch?: string | null | undefined;
|
|
140
|
-
bankCity?: string | null | undefined;
|
|
141
|
-
nameOfFirm?: string | null | undefined;
|
|
142
|
-
signatory?: string | null | undefined;
|
|
143
|
-
solicitorActing?: string | null | undefined;
|
|
144
|
-
telephone?: string | null | undefined;
|
|
145
|
-
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
146
|
-
createdAt: NativeDate;
|
|
147
|
-
updatedAt: NativeDate;
|
|
148
|
-
} & {
|
|
149
|
-
applicationId: mongoose.Types.ObjectId;
|
|
150
|
-
pageValidFlag: boolean;
|
|
151
|
-
addressPostCode?: string | null | undefined;
|
|
152
|
-
addressLine1?: string | null | undefined;
|
|
153
|
-
addressLine2?: string | null | undefined;
|
|
154
|
-
addressLine3?: string | null | undefined;
|
|
155
|
-
addressCity?: string | null | undefined;
|
|
156
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
157
|
-
accountNumber?: number | null | undefined;
|
|
158
|
-
contactPostcode?: string | null | undefined;
|
|
159
|
-
institution?: string | null | undefined;
|
|
160
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
161
|
-
sortCode?: SortCode | null | undefined;
|
|
162
|
-
email?: string | null | undefined;
|
|
163
|
-
bankAddressLine1?: string | null | undefined;
|
|
164
|
-
bankAddressLine2?: string | null | undefined;
|
|
165
|
-
bankBranch?: string | null | undefined;
|
|
166
|
-
bankCity?: string | null | undefined;
|
|
167
|
-
nameOfFirm?: string | null | undefined;
|
|
168
|
-
signatory?: string | null | undefined;
|
|
169
|
-
solicitorActing?: string | null | undefined;
|
|
170
|
-
telephone?: string | null | undefined;
|
|
171
|
-
}>> & mongoose.FlatRecord<{
|
|
172
|
-
createdAt: NativeDate;
|
|
173
|
-
updatedAt: NativeDate;
|
|
174
|
-
} & {
|
|
175
|
-
applicationId: mongoose.Types.ObjectId;
|
|
176
|
-
pageValidFlag: boolean;
|
|
177
|
-
addressPostCode?: string | null | undefined;
|
|
178
|
-
addressLine1?: string | null | undefined;
|
|
179
|
-
addressLine2?: string | null | undefined;
|
|
180
|
-
addressLine3?: string | null | undefined;
|
|
181
|
-
addressCity?: string | null | undefined;
|
|
182
|
-
addressCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
183
|
-
accountNumber?: number | null | undefined;
|
|
184
|
-
contactPostcode?: string | null | undefined;
|
|
185
|
-
institution?: string | null | undefined;
|
|
186
|
-
nameOfAccountHolder?: string | null | undefined;
|
|
187
|
-
sortCode?: SortCode | null | undefined;
|
|
188
|
-
email?: string | null | undefined;
|
|
189
|
-
bankAddressLine1?: string | null | undefined;
|
|
190
|
-
bankAddressLine2?: string | null | undefined;
|
|
191
|
-
bankBranch?: string | null | undefined;
|
|
192
|
-
bankCity?: string | null | undefined;
|
|
193
|
-
nameOfFirm?: string | null | undefined;
|
|
194
|
-
signatory?: string | null | undefined;
|
|
195
|
-
solicitorActing?: string | null | undefined;
|
|
196
|
-
telephone?: string | null | undefined;
|
|
197
|
-
}> & {
|
|
198
|
-
_id: mongoose.Types.ObjectId;
|
|
199
|
-
} & {
|
|
200
|
-
__v: number;
|
|
201
|
-
}>>;
|
|
202
|
-
export default SolicitorModel;
|
|
203
|
-
//# sourceMappingURL=solicitor.model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"solicitor.model.d.ts","sourceRoot":"","sources":["../../applications/solicitor.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAsHtD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA+C,CAAC;AACpE,eAAe,cAAc,CAAC"}
|