├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature.md │ ├── feature_request.md │ └── task-or-ops.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── business-api-cd.yml │ ├── business-api-ci.yml │ ├── business-bn-cd.yml │ ├── business-bn-ci.yml │ ├── business-digital-credentials-cd.yml │ ├── business-digital-credentials-ci.yml │ ├── business-email-reminder-cd.yml │ ├── business-email-reminder-ci.yml │ ├── business-emailer-cd.yml │ ├── business-emailer-ci.yml │ ├── business-entity-bn-cd.yml │ ├── business-entity-bn-ci.yml │ ├── business-expired-limited-restoration-cd.yml │ ├── business-expired-limited-restoration-ci.yml │ ├── business-filer-cd.yml │ ├── business-filer-ci.yml │ ├── business-filings-notebook-report-cd.yml │ ├── business-filings-notebook-report-ci.yml │ ├── business-furnishings-cd.yml │ ├── business-furnishings-ci.yml │ ├── business-future-effective-filings-cd.yml │ ├── business-future-effective-filings-ci.yml │ ├── business-involuntary-dissolution-cd.yml │ ├── business-involuntary-dissolution-ci.yml │ ├── business-pay-cd.yml │ ├── business-pay-ci.yml │ ├── business-update-colin-filings-cd.yml │ ├── business-update-colin-filings-ci.yml │ ├── business-update-legal-filings-cd.yml │ ├── business-update-legal-filings-ci.yml │ ├── colin-api-cd.yml │ ├── colin-api-ci.yml │ ├── common-business-model-ci.yml │ ├── data-reset-tool-cd.yml │ ├── data-reset-tool-ci.yml │ ├── legal-oas-ci.yml │ ├── sftp-icbc-report-cd.yml │ ├── sftp-icbc-report-ci.yml │ ├── sftp-nuans-report-cd.yml │ └── sftp-nuans-report-ci.yml ├── .gitignore ├── .sonarcloud.properties ├── COMPLIANCE.yaml ├── LICENSE ├── README.md ├── codecov.yaml ├── colin-api ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json ├── .envrc ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── devops │ └── vaults.ocp.env ├── flags.json ├── gunicorn_config.py ├── manage.py ├── requirements.txt ├── requirements │ ├── bcregistry-libraries.txt │ ├── dev.txt │ └── prod.txt ├── scripts │ ├── list_lint_exemptions.sh │ └── verify_license_headers.sh ├── setup.cfg ├── setup.py ├── src │ └── colin_api │ │ ├── __init__.py │ │ ├── config.py │ │ ├── errorhandlers.py │ │ ├── exceptions │ │ └── __init__.py │ │ ├── logging.conf │ │ ├── models │ │ ├── __init__.py │ │ ├── address.py │ │ ├── business.py │ │ ├── cont_out.py │ │ ├── corp_involved.py │ │ ├── corp_name.py │ │ ├── corp_party.py │ │ ├── filing.py │ │ ├── filing_type.py │ │ ├── jurisdiction.py │ │ ├── office.py │ │ ├── program_account.py │ │ ├── reset.py │ │ └── shares.py │ │ ├── resources │ │ ├── __init__.py │ │ ├── business.py │ │ ├── db.py │ │ ├── event.py │ │ ├── filing.py │ │ ├── meta.py │ │ ├── office.py │ │ ├── ops.py │ │ ├── parties.py │ │ ├── program_account.py │ │ ├── reset.py │ │ └── share_struct.py │ │ ├── services │ │ ├── __init__.py │ │ ├── account.py │ │ └── flags.py │ │ ├── utils │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── logging.py │ │ ├── run_version.py │ │ └── util.py │ │ └── version.py ├── tests │ ├── README.md │ ├── __init__.py │ ├── conftest.py │ ├── postman │ │ ├── colin-api-local.postman_environment.json │ │ └── colin-api.postman_collection.json │ ├── unit │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── test_alteration.py │ │ │ ├── test_ar.py │ │ │ ├── test_business.py │ │ │ ├── test_change_of_name.py │ │ │ ├── test_directors.py │ │ │ ├── test_future_effective_filings.py │ │ │ ├── test_historic_filings.py │ │ │ ├── test_incorporation_application.py │ │ │ ├── test_meta.py │ │ │ ├── test_ops.py │ │ │ ├── test_program_account.py │ │ │ ├── test_registered_office.py │ │ │ ├── test_share_structure.py │ │ │ ├── test_special_resolution.py │ │ │ └── test_voluntary_dissolution.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── test_configuration.py │ │ │ └── test_version.py │ │ ├── conftest.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── logging.conf │ │ │ ├── test_logging.py │ │ │ └── test_util_cors.py │ └── utilities │ │ └── decorators.py └── wsgi.py ├── data-tool ├── .corps.env.sample ├── .prefectignore ├── Makefile ├── README.md ├── README_POC.md ├── backup_extract_tables.sh ├── docker-compose.yaml ├── find-columns │ ├── .env.example │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── find_null_columns.py │ ├── requirements.txt │ ├── screenshots │ │ ├── image-1.png │ │ └── image.png │ └── sql_scripts │ │ ├── README.md │ │ ├── script_1.sql │ │ └── script_2.sql ├── find-tables │ ├── .env.sample │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── config.py │ ├── find_tables.py │ ├── models.py │ ├── requirements.txt │ └── screenshots │ │ ├── Screenshot 1.png │ │ ├── Screenshot 2.png │ │ └── Screenshot 3.png ├── flows │ ├── __init__.py │ ├── batch_delete_flow.py │ ├── colin_freeze_flow.py │ ├── common │ │ ├── __init__.py │ │ ├── affiliation_processing_status_service.py │ │ ├── affiliation_queries.py │ │ ├── auth_service.py │ │ ├── custom_exceptions.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ └── firms_data.py │ │ ├── event_filing_service.py │ │ ├── extract_tracking_service.py │ │ ├── filing_base_json.py │ │ ├── filing_data_cleaning_utils.py │ │ ├── filing_data_utils.py │ │ ├── filing_json_factory_service.py │ │ ├── firm_queries.py │ │ ├── init_utils.py │ │ ├── lear_data_utils.py │ │ ├── processing_status_service.py │ │ ├── query_utils.py │ │ ├── shared_queries.py │ │ ├── transform_utils.py │ │ └── validation_utils.py │ ├── config.py │ ├── corps │ │ ├── corp_queries.py │ │ ├── event_filing_service.py │ │ ├── filing_data_cleaning_utils.py │ │ ├── filing_data_utils.py │ │ ├── filing_json_factory_service.py │ │ └── lear_data_utils.py │ ├── corps_tombstone_flow.py │ ├── corps_verify_flow.py │ ├── custom_filer │ │ ├── __init__.py │ │ ├── corps_filer.py │ │ ├── filer.py │ │ ├── filing_meta.py │ │ └── filing_processors │ │ │ ├── __init__.py │ │ │ ├── annual_report.py │ │ │ ├── change_of_registration.py │ │ │ ├── conversion.py │ │ │ ├── correction.py │ │ │ ├── dissolution.py │ │ │ ├── filing_components │ │ │ ├── __init__.py │ │ │ ├── aliases.py │ │ │ ├── business_info.py │ │ │ ├── business_profile.py │ │ │ ├── correction.py │ │ │ ├── filings.py │ │ │ ├── name_request.py │ │ │ ├── offices.py │ │ │ ├── parties.py │ │ │ └── shares.py │ │ │ ├── incorporation_filing.py │ │ │ ├── put_back_on.py │ │ │ └── registration.py │ ├── migrate_corps_flow.py │ ├── migrate_sp_gp_flow.py │ ├── sp_gp_affiliation_flow.py │ ├── tasks │ │ ├── __init__.py │ │ └── task_utils.py │ ├── test_flow.py │ └── tombstone │ │ ├── tombstone_base_data.py │ │ ├── tombstone_mappings.py │ │ ├── tombstone_queries.py │ │ └── tombstone_utils.py ├── install_oracle_client.sh ├── notebooks │ ├── corps_onboarding_process_flow │ │ ├── .env.sample │ │ └── migration_status_tracking.ipynb │ └── fix_submitter_roles │ │ ├── .env.sample │ │ └── fix_submitter_roles.ipynb ├── requirements.txt ├── requirements │ ├── bcregistry-libraries.txt │ ├── dev.txt │ ├── prefect.txt │ └── prod.txt ├── restore_extract.sh └── scripts │ ├── README_COLIN_Corps_Extract.md │ ├── colin-migration-backfill │ ├── colin_business_officers.sql │ ├── colin_lear_create_functions.sql │ ├── colin_lear_drop_functions.sql │ └── corps-backfill-README.md │ ├── colin_corps_extract_postgres_ddl │ ├── colin_corps_extract_postgres_views_ddl │ ├── data-fixes │ └── backfill_cutoff_filing_id.sql │ ├── misc_extract_corps_queries.sql │ └── transfer_cprd_corps.sql ├── docs ├── business-api │ └── postman │ │ └── business-api-sandbox.zip └── business.yaml ├── gcp-jobs ├── email-reminder │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── flags.json │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── run_reminders.py │ ├── schedules │ │ ├── run.cron │ │ └── run.dev.cron │ ├── src │ │ └── email_reminder │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── flags.py │ │ │ └── worker.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_worker.py ├── entity-bn │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── schedules │ │ ├── run.cron │ │ └── run.dev.cron │ ├── src │ │ └── entity-bn │ │ │ ├── entity-bn.py │ │ │ └── tracker-errors.ipynb │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ └── test_create_app.py ├── expired-limited-restoration │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.py │ ├── run.sh │ ├── schedules │ │ ├── run.cron │ │ └── run.dev.cron │ ├── src │ │ └── expired_limited_restoration │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── worker.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_create_app.py │ │ └── test_worker.py ├── filings-notebook-report │ ├── .env.sample │ ├── Dockerfile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── schedules │ │ └── run.cron │ ├── src │ │ └── notebookreport │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ └── config.py │ │ │ ├── daily │ │ │ └── incorpfilings.ipynb │ │ │ ├── devops │ │ │ └── vaults.json │ │ │ ├── monthly │ │ │ ├── cooperative.ipynb │ │ │ ├── coopfilings.ipynb │ │ │ └── firm-registration-filings.ipynb │ │ │ └── notebookreport.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_job.py ├── furnishings │ ├── .dockerignore │ ├── .env.sample │ ├── .gcloudignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ └── vaults.ocp.env │ ├── flags.json │ ├── furnish.py │ ├── furnishings-templates │ │ └── gazette-notice.xml │ ├── poetry.lock │ ├── pyproject.toml │ ├── report-templates │ │ ├── dissolutionCover.html │ │ ├── noticeOfDissolutionCommencement.html │ │ ├── registrar_signatures │ │ │ ├── registrar_signature_1.png │ │ │ ├── registrar_signature_2.png │ │ │ ├── registrar_signature_3.png │ │ │ ├── registrar_signature_4.png │ │ │ ├── registrar_signature_5.png │ │ │ ├── registrar_signature_6.png │ │ │ ├── registrar_signature_and_text_3.png │ │ │ ├── registrar_signature_and_text_4.png │ │ │ ├── registrar_signature_and_text_5.png │ │ │ └── registrar_signature_and_text_6.png │ │ └── template-parts │ │ │ └── common │ │ │ ├── certificateRegistrarSignature.html │ │ │ └── v2 │ │ │ ├── footerMail.html │ │ │ ├── headerMail.html │ │ │ ├── style.html │ │ │ └── styleMail.html │ ├── src │ │ └── furnishings │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── flags.py │ │ │ ├── furnishing_documents_service.py │ │ │ ├── iap_db_connection.py │ │ │ ├── mras_service.py │ │ │ ├── reports │ │ │ │ ├── __init__.py │ │ │ │ ├── registrar_meta.py │ │ │ │ └── report_v2.py │ │ │ └── stage_processors │ │ │ │ ├── __init__.py │ │ │ │ ├── post_processor.py │ │ │ │ ├── stage_one.py │ │ │ │ ├── stage_three.py │ │ │ │ └── stage_two.py │ │ │ ├── sftp.py │ │ │ └── worker.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── stage_processors │ │ ├── __init__.py │ │ ├── test_post_processor.py │ │ ├── test_stage_one.py │ │ ├── test_stage_three.py │ │ └── test_stage_two.py │ │ ├── test_data │ │ └── gotenburg_response.py │ │ ├── test_sftp.py │ │ └── test_worker.py ├── future-effective-filings │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── schedules │ │ ├── run.cron │ │ ├── run.dev.cron │ │ └── run.test.cron │ ├── src │ │ └── future_effective_filings │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── file_future_effective.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ └── test_create_app.py ├── involuntary-dissolutions │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── flags.json │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── schedules │ │ └── run.cron │ ├── src │ │ └── involuntary_dissolutions │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ └── config.py │ │ │ ├── involuntary_dissolutions.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── flags.py │ │ │ └── involuntary_dissolution_types.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_involuntary_dissolutions.py │ │ └── test_job.py ├── update-colin-filings │ ├── .dockerignore │ ├── .env.sample │ ├── .gcloudignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.sh │ ├── run_job.py │ ├── schedules │ │ ├── run.cron │ │ ├── run.dev.cron │ │ └── run.test.cron │ ├── src │ │ └── update_colin_filings │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── worker.py │ └── tests │ │ └── unit │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_update_colin_filings.py └── update-legal-filings │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── devops │ ├── gcp │ │ └── clouddeploy.yaml │ └── vaults.gcp.env │ ├── poetry.lock │ ├── pyproject.toml │ ├── run.py │ ├── run.sh │ ├── schedules │ └── run.cron │ ├── src │ └── update_legal_filings │ │ ├── __init__.py │ │ ├── colin_helper.py │ │ ├── config.py │ │ └── worker.py │ └── tests │ └── unit │ ├── __init__.py │ ├── conftest.py │ ├── test_create_app.py │ └── test_worker.py ├── jobs ├── correction-ben-statement │ ├── add_corrections.ipynb │ ├── add_corrections_alterations.ipynb │ ├── add_corrections_ia.ipynb │ ├── add_registrars_notation_alteration.ipynb │ ├── add_registrars_notation_historical.ipynb │ ├── add_registrars_notation_ia.ipynb │ ├── convert_corrections_data.py │ ├── convert_registrar_notation_data.py │ ├── corrections_output_alteration.py │ ├── corrections_output_ia.py │ ├── corrections_results.csv │ ├── queries.sql │ ├── registrar_notation_result.csv │ └── rn_output.py ├── dbc-message-sender │ ├── DBC-TOU-UPDATE.md │ ├── README.md │ ├── connection-check.py │ ├── connections.txt │ ├── message-sender.py │ └── requirements.txt ├── sftp-gazette │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config.py │ ├── devops │ │ └── vaults.json │ ├── logging.conf │ ├── notebook │ │ ├── generate_files.ipynb │ │ └── update_database.ipynb │ ├── openshift │ │ ├── Readme.md │ │ └── templates │ │ │ ├── bc.yaml │ │ │ └── cronjob.yaml │ ├── requirements.txt │ ├── requirements │ │ ├── dev.txt │ │ └── prod.txt │ ├── run.sh │ ├── services │ │ └── sftp.py │ ├── setup.cfg │ ├── setup.py │ ├── sftpgazette.py │ ├── tasks │ │ ├── __init__.py │ │ └── ftp_processor.py │ ├── tests │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_job.py │ └── util │ │ ├── __init__.py │ │ └── logging.py ├── sftp-icbc-report │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config.py │ ├── devops │ │ └── vaults.json │ ├── logging.conf │ ├── notebook │ │ └── generate_files.ipynb │ ├── openshift │ │ ├── Readme.md │ │ └── templates │ │ │ ├── bc.yaml │ │ │ └── cronjob.yaml │ ├── requirements.txt │ ├── requirements │ │ ├── dev.txt │ │ └── prod.txt │ ├── services │ │ └── sftp.py │ ├── setup.cfg │ ├── setup.py │ ├── sftpicbc.py │ ├── tasks │ │ ├── __init__.py │ │ └── ftp_processor.py │ └── util │ │ ├── __init__.py │ │ └── logging.py └── sftp-nuans-report │ ├── .env.sample │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config.py │ ├── devops │ └── vaults.json │ ├── logging.conf │ ├── notebook │ └── generate_files.ipynb │ ├── openshift │ ├── Readme.md │ └── templates │ │ ├── bc.yaml │ │ └── cronjob.yaml │ ├── requirements.txt │ ├── requirements │ ├── dev.txt │ └── prod.txt │ ├── services │ └── sftp.py │ ├── setup.cfg │ ├── setup.py │ ├── sftpnuans.py │ ├── tasks │ ├── __init__.py │ └── ftp_processor.py │ └── util │ ├── __init__.py │ └── logging.py ├── legal-api ├── .devcontainer │ ├── Dockerfile │ ├── commands │ │ └── post-create-command.sh │ └── devcontainer.json ├── .dockerignore ├── .env.sample ├── .envrc ├── .vscode │ └── launch.json ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── babel.cfg ├── devops │ ├── gcp │ │ └── clouddeploy.yaml │ └── vaults.gcp.env ├── flags.json ├── fonts │ └── BCSans-Regular.ttf ├── gunicorn_config.py ├── gunicorn_server.py ├── manage.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 01b28a2bb730_furnishings.py │ │ ├── 01dc3337e726_add_batch_processing_status.py │ │ ├── 026f42f4f654_add_custodialoffice_to_office_types.py │ │ ├── 08da65c4a94a_consent_continuation_out_expiry_date.py │ │ ├── 0b2af7f762bb_request_tracker_admin.py │ │ ├── 0c3eb026efa0_alter_business_state_enum.py │ │ ├── 0c792224fe11_change_field_type.py │ │ ├── 0dc8127c32d9_update_dc_issued_business_user_.py │ │ ├── 0fb2ae5711ed_.py │ │ ├── 11a256335c79_add_last_ar_year.py │ │ ├── 1215735c3563_.py │ │ ├── 12f725915617_add_max_size_to_batches.py │ │ ├── 1400cc212014_request_tracker_change.py │ │ ├── 146e135484b2_amalgamation_version.py │ │ ├── 176f983485c8_.py │ │ ├── 1a8c89b722e2_.py │ │ ├── 1ba027b074a5_add_idp_userid_to_users.py │ │ ├── 1dd76abf128a_add_party_class_model.py │ │ ├── 1ec937c2466e_add_liquidation_office_to_office_types.py │ │ ├── 1f01b9303b81_.py │ │ ├── 1fcdb213657d_add_order_details_column.py │ │ ├── 201e34168903_update_dc_connections_table.py │ │ ├── 20250825_173617_b42a474558f0_backfill_cutoff_filing_id.py │ │ ├── 20250911_134323_9883916ba68f_add_officer_change_filing_permission.py │ │ ├── 246e135484b3_cben_corp_type.py │ │ ├── 24b59f535ec3_add_currency_additional_to_share_classes.py │ │ ├── 285e11a8f0c4_update_business_naics_description_length.py │ │ ├── 2afccb4603ec_restoration.py │ │ ├── 2dedf50a17ef_added_court_order_columns_to_filings_.py │ │ ├── 2e29ebe9a830_removing_party_tax_id.py │ │ ├── 2e986c1d4de6_.py │ │ ├── 3083d361616e_add_trigger_date_to_batch_processing.py │ │ ├── 33501a263f32_sp_gp.py │ │ ├── 361b51b824c0_.py │ │ ├── 37acd517fe98_.py │ │ ├── 38730edc1543_accession_number.py │ │ ├── 3d8eb786f4c2_add_coop_sequence.py │ │ ├── 40015e4aa4f5_add_2022_v1_naics_data.py │ │ ├── 441a5e6cf682_.py │ │ ├── 442829649a2a_.py │ │ ├── 4ee6f0abb797_.py │ │ ├── 508c7466b2af_misc_configurations_table_updates.py │ │ ├── 5238dd8fb805_.py │ │ ├── 52553d4d6309_.py │ │ ├── 54a3fc54a2cf_.py │ │ ├── 5ad3243edc3e_.py │ │ ├── 5e1faa8636c0_.py │ │ ├── 5ee13998918d_add_columns_to_user_version.py │ │ ├── 698885b80fc0_review_update.py │ │ ├── 6b65b40a5164_add_revocation_to_dc_credentials.py │ │ ├── 6e28f267db2a_create_issued_business_user_credentials_.py │ │ ├── 738437025c05_add_payment_account.py │ │ ├── 7575af513efb_.py │ │ ├── 78ddb7f6f8b5_add_locked_flag_to_filings.py │ │ ├── 7c86cc916b5c_.py │ │ ├── 7d486343384b_add_batch_custom_sequence.py │ │ ├── 7e02a91ac3c6_last_ar_reminder_year.py │ │ ├── 7efd0c42babd_business_account_settings.py │ │ ├── 8148a25d695e_change_field_type.py │ │ ├── 83a110e10979_add_batch_processing_id_to_colin_event_.py │ │ ├── 860bb6075dde_.py │ │ ├── 86d8aca36208_request_tracker.py │ │ ├── 89fe33f436c1_add_restoration_approval_type_registrar_.py │ │ ├── 8bd6dc383c96_add_no_dissolution_to_businesses.py │ │ ├── 8c74427a6c0e_document_table.py │ │ ├── 8fef256bf5d7_add_middle_name_to_users.py │ │ ├── 9147d4bc9939_.py │ │ ├── 92c4974ce96f_.py │ │ ├── 94586877d4bc.py │ │ ├── 94c2a694d51f_.py │ │ ├── 957a67bde783_add_in_liquidation_column_to_businesses.py │ │ ├── 9741616ab6d7_.py │ │ ├── 98ccc973c01d_.py │ │ ├── 99575010ed4b_create_authorized_role_permissions_table.py │ │ ├── 9a9ac165365e_cco.py │ │ ├── 9b5c719f32ef_.py │ │ ├── 9c95a9b28eb3_adding_filing_meta_data.py │ │ ├── 9fc8fcdc0a22_batches.py │ │ ├── a31cb1eb4b6b_add_filing_id_to_batch_processing.py │ │ ├── a6e3fdc238dd_postal_code_length.py │ │ ├── a8f42b830d86_.py │ │ ├── ac0065d92893_add_furnishings_id_to_address.py │ │ ├── ad21c1ed551e_.py │ │ ├── ad3ef106696c_.py │ │ ├── ae43b5cc0d2d_continuation_out.py │ │ ├── b0937b915e6b_add_offices_held_table.py │ │ ├── b14f77400786_xml_payloads.py │ │ ├── b18741f7c4d3_technical_filing_corrections.py │ │ ├── b6997f07700a_add_last_coa_cod_filing_dates.py │ │ ├── b7c4b2533f84_add_corp_type_table.py │ │ ├── b826412a6a65_.py │ │ ├── b9165c3187fc_.py │ │ ├── b9f84f7a7c44_add_login_source_to_users.py │ │ ├── ba862cfda9e5_foreign_corp_num_to_foreign_identifier.py │ │ ├── bb9f4ab856b1_remove_group_identifier_from_furnishings.py │ │ ├── bddd732a9269_index_by_idp_guid.py │ │ ├── bf8d4391745e_cleanup_document_table.py │ │ ├── bf94a1b46804_.py │ │ ├── c17d77b30bdb_.py │ │ ├── c212a141600c_request_tracker_change_party.py │ │ ├── c4732cd8abfd_jurisdiction.py │ │ ├── d087a6ee9230_add_send_ar_ind_to_businesses.py │ │ ├── d0b10576924c_alter_amalgamation_type_enum.py │ │ ├── d21f6be7bd21_submitter_roles.py │ │ ├── d55dfc5c1358_dissolution_config_cleanup.py │ │ ├── d9254d3cbbf4_add_now_properties_to_filing_table.py │ │ ├── d9e21a1b82ca_add_sent_to_gazette.py │ │ ├── da43f7bef692_.py │ │ ├── dbe1cfc78599_add_naics_tables.py │ │ ├── e10f724fad6d_add_indexes_for_business_and_task_.py │ │ ├── e6ed22dc70ca_.py │ │ ├── e6ff12b18bef_.py │ │ ├── e85053684b3c_.py │ │ ├── ec9652171563_review.py │ │ ├── ecfeee53451a_digital_credentials.py │ │ ├── ed12492e70f8_.py │ │ ├── ed6645cc1530_add_alternate_name_field_to_party.py │ │ ├── edb19fafc835_update_dc_credentials_table.py │ │ ├── ee956cbf198a_.py │ │ ├── ef8f033d317b_add_meta_data_to_batch_processing.py │ │ ├── f1d010259785_modify_data_type_for_max_shares.py │ │ ├── f3b30f43aa86_undo_colin_event_ids_changes.py │ │ ├── f3fb008e7b83_.py │ │ ├── f4f654026f42_businessoffice_office_types.py │ │ ├── f4f93ea8887e_add_configurations_table.py │ │ ├── f978e34aa8bb_add_foreign_jurisdiction_region_.py │ │ ├── f99e7bda56bb_hide_in_ledger.py │ │ ├── fe158a53151f_amalgamation_out.py │ │ └── feb206b2ce65_add_columns_to_furnishings.py ├── poetry.lock ├── poetry.toml ├── pre-hook-update-db.sh ├── pre_hook_create_database.py ├── prism.sh ├── pyproject.toml ├── report-templates │ ├── alterationNotice.html │ ├── amalgamationApplication.html │ ├── amendedRegistrationStatement.html │ ├── annualReport.html │ ├── appointReceiver.html │ ├── bcAddressChange.html │ ├── bcAnnualReport.html │ ├── bcDirectorChange.html │ ├── businessSummary.html │ ├── ceaseReceiver.html │ ├── certificateOfAmalgamation.html │ ├── certificateOfContinuation.html │ ├── certificateOfDissolution.html │ ├── certificateOfGoodStanding.html │ ├── certificateOfIncorporation.html │ ├── certificateOfNameChange.html │ ├── certificateOfRestoration.html │ ├── certificateOfStatus.html │ ├── changeOfAddress.html │ ├── changeOfDirectors.html │ ├── changeOfName.html │ ├── changeOfRegistration.html │ ├── continuationApplication.html │ ├── correction.html │ ├── dissolution.html │ ├── dissolutionCover.html │ ├── firmCorrection.html │ ├── incorporationApplication.html │ ├── intentToLiquidate.html │ ├── letterOfAgmExtension.html │ ├── letterOfAgmLocationChange.html │ ├── letterOfConsent.html │ ├── letterOfConsentAmalgamationOut.html │ ├── letterUnderSeal.html │ ├── noticeOfArticles.html │ ├── noticeOfDissolutionCommencement.html │ ├── noticeOfWithdrawal.html │ ├── registrar_signatures │ │ ├── registrar_signature_1.png │ │ ├── registrar_signature_2.png │ │ ├── registrar_signature_3.png │ │ ├── registrar_signature_4.png │ │ ├── registrar_signature_5.png │ │ ├── registrar_signature_6.png │ │ ├── registrar_signature_and_text_3.png │ │ ├── registrar_signature_and_text_4.png │ │ ├── registrar_signature_and_text_5.png │ │ └── registrar_signature_and_text_6.png │ ├── registration.html │ ├── restoration.html │ ├── specialResolution.html │ ├── specialResolutionApplication.html │ ├── template-parts │ │ ├── addresses.html │ │ ├── alteration-notice │ │ │ ├── businessTypeChange.html │ │ │ ├── companyProvisions.html │ │ │ ├── legalNameChange.html │ │ │ └── statement.html │ │ ├── amalgamation │ │ │ ├── amalgamatingCorp.html │ │ │ ├── amalgamationName.html │ │ │ ├── amalgamationStmt.html │ │ │ ├── approvalType.html │ │ │ └── effectiveDate.html │ │ ├── bc-address-change │ │ │ └── addresses.html │ │ ├── bc-annual-report │ │ │ └── legalObligations.html │ │ ├── bc-director-change │ │ │ └── directors.html │ │ ├── business-summary │ │ │ ├── alterations.html │ │ │ ├── amalgamationOut.html │ │ │ ├── amalgamations.html │ │ │ ├── businessDetails.html │ │ │ ├── foreignJurisdiction.html │ │ │ ├── liquidation.html │ │ │ ├── nameChanges.html │ │ │ ├── parties.html │ │ │ ├── receiverInformation.html │ │ │ ├── recordKeeper.html │ │ │ └── stateTransition.html │ │ ├── certification.html │ │ ├── change-of-registration │ │ │ ├── addresses.html │ │ │ ├── legal-name.html │ │ │ ├── nature-of-business.html │ │ │ ├── partner.html │ │ │ └── proprietor.html │ │ ├── common │ │ │ ├── addresses.html │ │ │ ├── benefitCompanyStmt.html │ │ │ ├── businessDetails.html │ │ │ ├── certificateFooter.html │ │ │ ├── certificateLogo.html │ │ │ ├── certificateRegistrarSignature.html │ │ │ ├── certificateSeal.html │ │ │ ├── certificateStyle.html │ │ │ ├── certificateWatermark.html │ │ │ ├── correctedOnCertificate.html │ │ │ ├── courtOrder.html │ │ │ ├── directors.html │ │ │ ├── effectiveDate.html │ │ │ ├── footerMOCS.html │ │ │ ├── nameTranslation.html │ │ │ ├── resolutionDates.html │ │ │ ├── shareStructure.html │ │ │ ├── statement.html │ │ │ ├── style.html │ │ │ ├── styleLetterOverride.html │ │ │ ├── v2 │ │ │ │ ├── footer.html │ │ │ │ ├── footerMail.html │ │ │ │ ├── header.html │ │ │ │ ├── headerMail.html │ │ │ │ ├── style.html │ │ │ │ └── styleMail.html │ │ │ ├── warning-bar.html │ │ │ └── watermark.html │ │ ├── continuation │ │ │ ├── authorization.html │ │ │ ├── effectiveDate.html │ │ │ ├── exproRegistrationInBc.html │ │ │ ├── foreignJurisdiction.html │ │ │ └── nameRequest.html │ │ ├── correction │ │ │ ├── addresses.html │ │ │ ├── associateType.html │ │ │ ├── businessDetails.html │ │ │ ├── directors.html │ │ │ ├── legalNameChange.html │ │ │ ├── resolution.html │ │ │ └── rulesMemorandum.html │ │ ├── directors.html │ │ ├── dissolution.html │ │ ├── dissolution │ │ │ ├── custodianOfRecords.html │ │ │ ├── dissolutionStatement.html │ │ │ └── firmsDissolutionDate.html │ │ ├── footer.html │ │ ├── incorporation-application │ │ │ ├── benefitCompanyStmt.html │ │ │ ├── completingParty.html │ │ │ ├── cooperativeAssociationType.html │ │ │ ├── effectiveDate.html │ │ │ ├── incorporator.html │ │ │ └── nameRequest.html │ │ ├── legalNameChange.html │ │ ├── logo.html │ │ ├── macros.html │ │ ├── notice-of-articles │ │ │ ├── directors.html │ │ │ ├── officers.html │ │ │ └── restrictions.html │ │ ├── notice-of-withdrawal │ │ │ └── recordToBeWithdrawn.html │ │ ├── receivers │ │ │ └── receivers.html │ │ ├── registration-statement │ │ │ ├── business-info.html │ │ │ ├── completingParty.html │ │ │ └── party.html │ │ ├── registration │ │ │ ├── addresses.html │ │ │ ├── nameRequest.html │ │ │ └── party.html │ │ ├── restoration-application │ │ │ ├── applicant.html │ │ │ ├── approvalType.html │ │ │ ├── expiry.html │ │ │ ├── legalName.html │ │ │ ├── legalNameDissolution.html │ │ │ └── nameRequest.html │ │ ├── special-resolution │ │ │ ├── resolution.html │ │ │ └── resolutionApplication.html │ │ └── style.html │ ├── transitionApplication.html │ └── voluntaryDissolution.html ├── scripts │ ├── manual_db_scripts │ │ ├── 2022_jan_31_add_ar_filing_year_to_meta_data.sql │ │ └── 2022_jan_6_business_state_update.sql │ ├── test_ratio.sh │ └── verify_license_headers.sh ├── src │ ├── __init__.py │ └── legal_api │ │ ├── __init__.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── core │ │ ├── __init__.py │ │ ├── business.py │ │ ├── constants.py │ │ ├── filing.py │ │ ├── filing_helper.py │ │ ├── meta │ │ │ ├── __init__.py │ │ │ └── filing.py │ │ └── utils.py │ │ ├── decorators.py │ │ ├── errorhandlers.py │ │ ├── errors.py │ │ ├── exceptions │ │ ├── __init__.py │ │ ├── business_exception.py │ │ └── error_messages │ │ │ ├── __init__.py │ │ │ ├── codes.py │ │ │ ├── messages.py │ │ │ └── utils.py │ │ ├── logging.conf │ │ ├── models │ │ ├── __init__.py │ │ ├── address.py │ │ ├── alias.py │ │ ├── amalgamating_business.py │ │ ├── amalgamation.py │ │ ├── authorized_role.py │ │ ├── authorized_role_permission.py │ │ ├── batch.py │ │ ├── batch_processing.py │ │ ├── business.py │ │ ├── business_account_settings.py │ │ ├── colin_event_id.py │ │ ├── colin_update.py │ │ ├── comment.py │ │ ├── configuration.py │ │ ├── consent_continuation_out.py │ │ ├── corp_type.py │ │ ├── custom_db_types.py │ │ ├── db.py │ │ ├── dc_business_user.py │ │ ├── dc_connection.py │ │ ├── dc_credential.py │ │ ├── dc_definition.py │ │ ├── dc_revocation_reason.py │ │ ├── document.py │ │ ├── filing.py │ │ ├── furnishing.py │ │ ├── furnishing_group.py │ │ ├── jurisdiction.py │ │ ├── naics_element.py │ │ ├── naics_structure.py │ │ ├── office.py │ │ ├── party.py │ │ ├── party_class.py │ │ ├── party_role.py │ │ ├── permission.py │ │ ├── registration_bootstrap.py │ │ ├── request_tracker.py │ │ ├── resolution.py │ │ ├── review.py │ │ ├── review_result.py │ │ ├── share_class.py │ │ ├── share_series.py │ │ ├── user.py │ │ └── xml_payload.py │ │ ├── reports │ │ ├── __init__.py │ │ ├── business_document.py │ │ ├── document_service.py │ │ ├── registrar_meta.py │ │ ├── report.py │ │ └── report_v2.py │ │ ├── resources │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── endpoints.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── business │ │ │ │ ├── __init__.py │ │ │ │ ├── api_namespace.py │ │ │ │ ├── business.py │ │ │ │ ├── business_address.py │ │ │ │ ├── business_aliases.py │ │ │ │ ├── business_comments.py │ │ │ │ ├── business_directors.py │ │ │ │ ├── business_filings.py │ │ │ │ ├── business_resolutions.py │ │ │ │ ├── business_share_classes.py │ │ │ │ ├── business_tasks.py │ │ │ │ ├── filing_comments.py │ │ │ │ └── internal_services.py │ │ │ ├── document_signature.py │ │ │ ├── meta.py │ │ │ ├── namerequest.py │ │ │ ├── nr_type_map.py │ │ │ └── ops.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── administrative_bn.py │ │ │ ├── bp.py │ │ │ ├── configuration.py │ │ │ ├── dissolution.py │ │ │ └── reviews.py │ │ │ ├── business │ │ │ ├── __init__.py │ │ │ ├── bp.py │ │ │ ├── business.py │ │ │ ├── business_account_settings.py │ │ │ ├── business_address.py │ │ │ ├── business_aliases.py │ │ │ ├── business_comments.py │ │ │ ├── business_digital_credentials.py │ │ │ ├── business_directors.py │ │ │ ├── business_documents.py │ │ │ ├── business_filings │ │ │ │ ├── __init__.py │ │ │ │ ├── business_documents.py │ │ │ │ └── business_filings.py │ │ │ ├── business_furnishings │ │ │ │ ├── __init__.py │ │ │ │ └── furnishing_documents.py │ │ │ ├── business_parties.py │ │ │ ├── business_resolutions.py │ │ │ ├── business_share_classes.py │ │ │ ├── business_tasks.py │ │ │ ├── colin_sync.py │ │ │ └── filing_comments.py │ │ │ ├── document.py │ │ │ ├── internal_services.py │ │ │ ├── meta.py │ │ │ ├── mras.py │ │ │ ├── naics.py │ │ │ ├── namerequest.py │ │ │ ├── permissions.py │ │ │ └── request_tracker.py │ │ ├── schemas.py │ │ ├── scripts │ │ ├── __init__.py │ │ └── document_service_import.py │ │ ├── services │ │ ├── __init__.py │ │ ├── authz.py │ │ ├── bootstrap.py │ │ ├── business │ │ │ ├── __init__.py │ │ │ └── validations │ │ │ │ ├── __init__.py │ │ │ │ └── validator.py │ │ ├── business_details_version.py │ │ ├── cache.py │ │ ├── colin.py │ │ ├── comments │ │ │ ├── __init__.py │ │ │ └── validations │ │ │ │ ├── __init__.py │ │ │ │ ├── comment.py │ │ │ │ ├── schemas.py │ │ │ │ └── validation.py │ │ ├── digital_credentials.py │ │ ├── digital_credentials_auth.py │ │ ├── digital_credentials_helpers.py │ │ ├── digital_credentials_rules.py │ │ ├── digital_credentials_utils.py │ │ ├── document_meta.py │ │ ├── event_publisher.py │ │ ├── filings │ │ │ ├── __init__.py │ │ │ └── validations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin_freeze.py │ │ │ │ ├── agm_extension.py │ │ │ │ ├── agm_location_change.py │ │ │ │ ├── alteration.py │ │ │ │ ├── amalgamation_application.py │ │ │ │ ├── amalgamation_out.py │ │ │ │ ├── annual_report.py │ │ │ │ ├── appoint_receiver.py │ │ │ │ ├── cease_receiver.py │ │ │ │ ├── change_of_address.py │ │ │ │ ├── change_of_directors.py │ │ │ │ ├── change_of_name.py │ │ │ │ ├── change_of_officers.py │ │ │ │ ├── change_of_registration.py │ │ │ │ ├── common_validations.py │ │ │ │ ├── consent_amalgamation_out.py │ │ │ │ ├── consent_continuation_out.py │ │ │ │ ├── continuation_in.py │ │ │ │ ├── continuation_out.py │ │ │ │ ├── conversion.py │ │ │ │ ├── correction.py │ │ │ │ ├── court_order.py │ │ │ │ ├── dissolution.py │ │ │ │ ├── incorporation_application.py │ │ │ │ ├── intent_to_liquidate.py │ │ │ │ ├── notice_of_withdrawal.py │ │ │ │ ├── put_back_off.py │ │ │ │ ├── put_back_on.py │ │ │ │ ├── registrars_notation.py │ │ │ │ ├── registrars_order.py │ │ │ │ ├── registration.py │ │ │ │ ├── restoration.py │ │ │ │ ├── schemas.py │ │ │ │ ├── special_resolution.py │ │ │ │ ├── transparency_register.py │ │ │ │ └── validation.py │ │ ├── flags.py │ │ ├── furnishing_documents_service.py │ │ ├── involuntary_dissolution.py │ │ ├── minio.py │ │ ├── mras_service.py │ │ ├── naics.py │ │ ├── namex.py │ │ ├── pdf_service.py │ │ ├── permissions.py │ │ ├── request_context.py │ │ ├── search_service.py │ │ ├── utils.py │ │ └── warnings │ │ │ ├── __init__.py │ │ │ ├── business │ │ │ ├── __init__.py │ │ │ └── business_checks │ │ │ │ ├── __init__.py │ │ │ │ ├── business.py │ │ │ │ ├── corps.py │ │ │ │ ├── firms.py │ │ │ │ └── involuntary_dissolution.py │ │ │ └── warning.py │ │ ├── translations │ │ └── __init__.py │ │ ├── utils │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── base.py │ │ ├── datetime.py │ │ ├── formatting.py │ │ ├── legislation_datetime.py │ │ ├── logging.py │ │ ├── run_version.py │ │ └── util.py │ │ └── version.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── performance │ │ ├── README.md │ │ ├── libs │ │ │ ├── ajv.js │ │ │ ├── aws4.js │ │ │ ├── chai.js │ │ │ ├── cheerio.js │ │ │ ├── crypto-js.js │ │ │ ├── lodash.js │ │ │ ├── oauth-1.0a.js │ │ │ ├── papaparse.js │ │ │ ├── shim │ │ │ │ ├── cheerio.js │ │ │ │ ├── core.js │ │ │ │ ├── crypto-js.js │ │ │ │ ├── dynamic.js │ │ │ │ ├── expect.js │ │ │ │ ├── faker.js │ │ │ │ ├── full.js │ │ │ │ ├── jsonSchema.js │ │ │ │ ├── lodash.js │ │ │ │ ├── urijs.js │ │ │ │ └── xml2Json.js │ │ │ ├── spo-gpo.js │ │ │ ├── urijs.js │ │ │ └── xml2js.js │ │ ├── load_business_flow.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── postman │ │ │ ├── load_business_flow_test.postman_collection.json │ │ │ └── load_business_flow_test.postman_environment.json │ ├── postman │ │ ├── legal-api.postman_collection.json │ │ ├── legal-dev.postman_environment.json │ │ └── test_data │ │ │ └── dev │ │ │ ├── CP1000001.xls │ │ │ ├── CP1000002.xls │ │ │ ├── CP1000003.xls │ │ │ ├── CP1000004.xls │ │ │ ├── CP1000005.xls │ │ │ └── CP1000006.xls │ ├── pytest_marks.py │ └── unit │ │ ├── __init__.py │ │ ├── conf │ │ ├── __init__.py │ │ ├── test_alembic.py │ │ ├── test_configuration.py │ │ └── test_version.py │ │ ├── core │ │ ├── __init__.py │ │ ├── test_business.py │ │ ├── test_filing.py │ │ ├── test_filing_ledger.py │ │ └── test_utils.py │ │ ├── models │ │ ├── __init__.py │ │ ├── test_address.py │ │ ├── test_alias.py │ │ ├── test_amalgamating_business.py │ │ ├── test_amalgamation.py │ │ ├── test_authorized_role.py │ │ ├── test_authorized_role_permission.py │ │ ├── test_batch.py │ │ ├── test_batch_processing.py │ │ ├── test_business.py │ │ ├── test_business_account_settings.py │ │ ├── test_colin_update.py │ │ ├── test_comments.py │ │ ├── test_configuration.py │ │ ├── test_consent_continuation_out.py │ │ ├── test_corp_type.py │ │ ├── test_dc_business_user.py │ │ ├── test_dc_connection.py │ │ ├── test_dc_credential.py │ │ ├── test_dc_definition.py │ │ ├── test_document.py │ │ ├── test_filing.py │ │ ├── test_filing_lock.py │ │ ├── test_furnishing.py │ │ ├── test_furnishing_group.py │ │ ├── test_jurisdiction.py │ │ ├── test_naics_structure.py │ │ ├── test_party.py │ │ ├── test_party_class.py │ │ ├── test_party_role.py │ │ ├── test_permission.py │ │ ├── test_registration_bootstrap.py │ │ ├── test_request_tracker.py │ │ ├── test_resolution.py │ │ ├── test_review.py │ │ ├── test_review_result.py │ │ ├── test_share_class.py │ │ ├── test_share_series.py │ │ ├── test_user.py │ │ └── test_xml_payload.py │ │ ├── reports │ │ ├── templates │ │ │ ├── __init__.py │ │ │ ├── test_directors.py │ │ │ └── test_name_translations.py │ │ ├── test_business_document.py │ │ ├── test_business_document_officers_and_warning.py │ │ ├── test_document_service.py │ │ ├── test_registrar_meta.py │ │ ├── test_report.py │ │ └── test_report_v2.py │ │ ├── resources │ │ ├── __init__.py │ │ ├── test_endpoint_versioning.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── test_business.py │ │ │ ├── test_business_address.py │ │ │ ├── test_business_aliases.py │ │ │ ├── test_business_comments.py │ │ │ ├── test_business_director.py │ │ │ ├── test_business_filings │ │ │ │ ├── __init__.py │ │ │ │ ├── test_filing_alteration.py │ │ │ │ ├── test_filing_incorporation.py │ │ │ │ ├── test_filing_notations.py │ │ │ │ ├── test_filings.py │ │ │ │ └── test_internal.py │ │ │ ├── test_business_filings_reports │ │ │ │ ├── __init__.py │ │ │ │ ├── gold_files │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── annualReport.json │ │ │ │ │ ├── certificateOfIncorporation.json │ │ │ │ │ ├── changeOfAddress.json │ │ │ │ │ ├── changeOfDirectors.json │ │ │ │ │ ├── incorporationApplication.json │ │ │ │ │ └── noticeOfArticles.json │ │ │ │ └── test_business_filings_reports.py │ │ │ ├── test_business_resolutions.py │ │ │ ├── test_business_share_classes.py │ │ │ ├── test_business_tasks.py │ │ │ ├── test_documents_signatures.py │ │ │ ├── test_filing_comments.py │ │ │ ├── test_meta.py │ │ │ ├── test_name_requests.py │ │ │ ├── test_nr_type_map.py │ │ │ ├── test_oas.py │ │ │ └── test_ops.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── test_admin │ │ │ ├── test_administrative_bn.py │ │ │ ├── test_configuration.py │ │ │ ├── test_dissolution.py │ │ │ └── test_reviews.py │ │ │ ├── test_business.py │ │ │ ├── test_business_account_settings.py │ │ │ ├── test_business_address.py │ │ │ ├── test_business_aliases.py │ │ │ ├── test_business_comments.py │ │ │ ├── test_business_digital_credentials.py │ │ │ ├── test_business_director.py │ │ │ ├── test_business_documents.py │ │ │ ├── test_business_filings │ │ │ ├── __init__.py │ │ │ ├── test_filing_documents.py │ │ │ ├── test_filings.py │ │ │ └── test_filings_ledger.py │ │ │ ├── test_business_furnishings │ │ │ ├── __init__.py │ │ │ └── test_furnishing_documents.py │ │ │ ├── test_business_parties.py │ │ │ ├── test_business_resolutions.py │ │ │ ├── test_business_share_classes.py │ │ │ ├── test_business_tasks.py │ │ │ ├── test_colin_sync.py │ │ │ ├── test_document.py │ │ │ ├── test_filing_comments.py │ │ │ ├── test_internal_services.py │ │ │ ├── test_meta.py │ │ │ ├── test_mras.py │ │ │ ├── test_naics.py │ │ │ ├── test_name_requests.py │ │ │ ├── test_permissions.py │ │ │ └── test_request_tracker.py │ │ ├── services │ │ ├── __init__.py │ │ ├── business │ │ │ ├── __init__.py │ │ │ └── validations │ │ │ │ ├── __init__.py │ │ │ │ └── test_validator.py │ │ ├── filings │ │ │ ├── __init__.py │ │ │ ├── test_schemas.py │ │ │ ├── test_utils.py │ │ │ └── validations │ │ │ │ ├── __init__.py │ │ │ │ ├── alteration │ │ │ │ ├── __init__.py │ │ │ │ └── test_court_order.py │ │ │ │ ├── annual_report │ │ │ │ ├── __init__.py │ │ │ │ ├── test_valid_agm_date.py │ │ │ │ ├── test_validate_ar_year.py │ │ │ │ └── test_validation.py │ │ │ │ ├── change_of_director │ │ │ │ ├── __init__.py │ │ │ │ ├── test_validation_basic.py │ │ │ │ └── test_validation_effective_date.py │ │ │ │ ├── test_admin_freeze.py │ │ │ │ ├── test_agm_extension.py │ │ │ │ ├── test_agm_location_change.py │ │ │ │ ├── test_alteration.py │ │ │ │ ├── test_amalgamation_application.py │ │ │ │ ├── test_amalgamation_out.py │ │ │ │ ├── test_change_of_address.py │ │ │ │ ├── test_change_of_name.py │ │ │ │ ├── test_change_of_officer.py │ │ │ │ ├── test_change_of_registration.py │ │ │ │ ├── test_common_validations.py │ │ │ │ ├── test_consent_amalgamation_out.py │ │ │ │ ├── test_consent_continuation_out.py │ │ │ │ ├── test_continuation_in.py │ │ │ │ ├── test_continuation_out.py │ │ │ │ ├── test_conversion.py │ │ │ │ ├── test_correction.py │ │ │ │ ├── test_correction_firms.py │ │ │ │ ├── test_correction_ia.py │ │ │ │ ├── test_correction_special_resolution.py │ │ │ │ ├── test_court_order.py │ │ │ │ ├── test_dissolution.py │ │ │ │ ├── test_incorporation_application.py │ │ │ │ ├── test_intent_to_liquidate.py │ │ │ │ ├── test_notice_of_withdrawal.py │ │ │ │ ├── test_put_back_off.py │ │ │ │ ├── test_registration.py │ │ │ │ ├── test_restoration.py │ │ │ │ ├── test_special_resolution.py │ │ │ │ └── test_validation.py │ │ ├── test_authorization.py │ │ ├── test_digital_credentials.py │ │ ├── test_digital_credentials_auth.py │ │ ├── test_digital_credentials_helpers_and_utils.py │ │ ├── test_digital_credentials_rules.py │ │ ├── test_document_meta.py │ │ ├── test_event_publisher.py │ │ ├── test_flags.py │ │ ├── test_furnishing_documents_service.py │ │ ├── test_involuntary_dissolution.py │ │ ├── test_minio.py │ │ ├── test_mras_service.py │ │ ├── test_pdf_service.py │ │ ├── test_permissions.py │ │ ├── test_registraion_bootstrap_service.py │ │ ├── utils.py │ │ └── warnings │ │ │ ├── __init__.py │ │ │ ├── business │ │ │ ├── __init__.py │ │ │ └── business_checks │ │ │ │ ├── __init__.py │ │ │ │ ├── test_corps.py │ │ │ │ ├── test_firms.py │ │ │ │ └── test_involuntary_dissolution.py │ │ │ └── test_warnings.py │ │ ├── test_decorators.py │ │ ├── test_error_handlers.py │ │ └── utils │ │ ├── __init__.py │ │ ├── logging.conf │ │ ├── test_datetime.py │ │ ├── test_logging.py │ │ └── test_util_cors.py └── wsgi.py ├── oracle ├── ReadMe.md ├── dev │ ├── Dockerfile │ └── bin │ │ ├── configDB2.sh │ │ ├── configDBora2.sh │ │ ├── dockerInit2.sh │ │ ├── setupDB2.sh │ │ ├── shutDB2.sh │ │ ├── sleep │ │ ├── startupDB2.sh │ │ ├── uid_entrypoint │ │ └── untarDB2.sh ├── e2e │ ├── Dockerfile │ └── bin │ │ ├── configDB2.sh │ │ ├── configDBora2.sh │ │ ├── dockerInit2.sh │ │ ├── setupDB2.sh │ │ ├── shutDB2.sh │ │ ├── sleep │ │ ├── startupDB2.sh │ │ ├── uid_entrypoint │ │ └── untarDB2.sh ├── openshift │ ├── oracle-startup-pipeline.yaml │ └── oracleDeploymentConfig.yaml ├── prod │ ├── Dockerfile │ └── bin │ │ ├── configDB2.sh │ │ ├── configDBora2.sh │ │ ├── dockerInit2.sh │ │ ├── setupDB2.sh │ │ ├── shutDB2.sh │ │ ├── sleep │ │ ├── startupDB2.sh │ │ ├── uid_entrypoint │ │ └── untarDB2.sh ├── test │ ├── Dockerfile │ └── bin │ │ ├── configDB2.sh │ │ ├── configDBora2.sh │ │ ├── dockerInit2.sh │ │ ├── setupDB2.sh │ │ ├── shutDB2.sh │ │ ├── sleep │ │ ├── startupDB2.sh │ │ ├── uid_entrypoint │ │ └── untarDB2.sh └── tools │ ├── Dockerfile │ └── bin │ ├── configDB2.sh │ ├── configDBora2.sh │ ├── dockerInit2.sh │ ├── setupDB2.sh │ ├── shutDB2.sh │ ├── sleep │ ├── startupDB2.sh │ ├── uid_entrypoint │ └── untarDB2.sh ├── python └── common │ ├── business-registry-account │ ├── .env.sample │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── business_account │ │ │ ├── AccountService.py │ │ │ ├── __init__.py │ │ │ └── config.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ └── test_registraion_bootstrap_service.py │ ├── business-registry-common │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── business_common │ │ │ ├── __init__.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ └── filing.py │ │ │ ├── errors │ │ │ └── errors.py │ │ │ ├── exceptions │ │ │ ├── __init__.py │ │ │ └── business_exception.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── datetime.py │ │ │ └── legislation_datetime.py │ └── tests │ │ └── unit │ │ └── utils │ │ └── test_datetime.py │ ├── business-registry-digital-credentials │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── business_registry_digital_credentials │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── decorators.py │ │ │ ├── digital_credentials.py │ │ │ ├── digital_credentials_auth.py │ │ │ ├── digital_credentials_helpers.py │ │ │ ├── digital_credentials_rules.py │ │ │ └── digital_credentials_utils.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ ├── __init__.py │ │ ├── test_digital_credentials_auth.py │ │ └── test_digital_credentials_helpers_and_utils.py │ ├── business-registry-dissolution │ ├── .env.sample │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── dissolution_service │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── involuntary_dissolution.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ └── test_involuntary_dissolution.py │ ├── business-registry-model │ ├── .devcontainer │ │ ├── Dockerfile │ │ ├── commands │ │ │ └── post-create-command.sh │ │ └── devcontainer.json │ ├── README.md │ ├── app.py │ ├── config.py │ ├── dev.txt │ ├── poetry.lock │ ├── poetry.toml │ ├── pyproject.toml │ ├── requirements.txt │ ├── src │ │ ├── business_model │ │ │ ├── __init__.py │ │ │ ├── exceptions │ │ │ │ ├── __init__.py │ │ │ │ ├── business_exception.py │ │ │ │ └── error_messages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── codes.py │ │ │ │ │ ├── messages.py │ │ │ │ │ └── utils.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── address.py │ │ │ │ ├── alias.py │ │ │ │ ├── amalgamating_business.py │ │ │ │ ├── amalgamation.py │ │ │ │ ├── authorized_role.py │ │ │ │ ├── authorized_role_permission.py │ │ │ │ ├── batch.py │ │ │ │ ├── batch_processing.py │ │ │ │ ├── business.py │ │ │ │ ├── business_account_settings.py │ │ │ │ ├── colin_event_id.py │ │ │ │ ├── colin_update.py │ │ │ │ ├── comment.py │ │ │ │ ├── configuration.py │ │ │ │ ├── consent_continuation_out.py │ │ │ │ ├── corp_type.py │ │ │ │ ├── custom_db_types.py │ │ │ │ ├── db.py │ │ │ │ ├── dc_business_user.py │ │ │ │ ├── dc_connection.py │ │ │ │ ├── dc_credential.py │ │ │ │ ├── dc_definition.py │ │ │ │ ├── dc_revocation_reason.py │ │ │ │ ├── document.py │ │ │ │ ├── filing.py │ │ │ │ ├── furnishing.py │ │ │ │ ├── furnishing_group.py │ │ │ │ ├── jurisdiction.py │ │ │ │ ├── naics_element.py │ │ │ │ ├── naics_structure.py │ │ │ │ ├── office.py │ │ │ │ ├── party.py │ │ │ │ ├── party_class.py │ │ │ │ ├── party_role.py │ │ │ │ ├── permission.py │ │ │ │ ├── registration_bootstrap.py │ │ │ │ ├── request_tracker.py │ │ │ │ ├── resolution.py │ │ │ │ ├── review.py │ │ │ │ ├── review_result.py │ │ │ │ ├── share_class.py │ │ │ │ ├── share_series.py │ │ │ │ ├── types │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filings.py │ │ │ │ │ └── party_class_type.py │ │ │ │ ├── user.py │ │ │ │ └── xml_payload.py │ │ │ ├── schemas │ │ │ │ ├── __init__.py │ │ │ │ └── schemas.py │ │ │ └── utils │ │ │ │ ├── base.py │ │ │ │ ├── datetime.py │ │ │ │ └── legislation_datetime.py │ │ └── business_model_migrations │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── alembic.ini │ │ │ ├── env.py │ │ │ ├── script.py.mako │ │ │ └── versions │ │ │ ├── 1a45bff11567_full_model.py │ │ │ ├── 20250626_175036_dbf687803623_accession_number.py │ │ │ ├── 20250825_173617_b42a474558f0_backfill_cutoff_filing_id.py │ │ │ ├── 20250911_134323_9883916ba68f_add_officer_change_filing_permission.py │ │ │ ├── 20251008_102501_7efd0c42babd_business_account_settings.py │ │ │ ├── 2bc4b2533f84_add_corp_type_data.py │ │ │ ├── 3eed22dc70ca_business_sequences.py │ │ │ ├── 4eff12b18bef_add_business_lookup_data.py │ │ │ ├── 5de1cfc78599_add_naics_data.py │ │ │ ├── 7fb9cd3e81bf_create_party_class_table.py │ │ │ ├── 8f3a9c12de4b_create_authorized_role_permissions_table.py │ │ │ ├── 9fa0f4fde9755_add_alternate_name_field_to_party.py │ │ │ └── __init__.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── models │ │ ├── __init__.py │ │ ├── test_address.py │ │ ├── test_alias.py │ │ ├── test_amalgamating_business.py │ │ ├── test_amalgamation.py │ │ ├── test_authorized_role.py │ │ ├── test_authorized_role_permission.py │ │ ├── test_batch.py │ │ ├── test_batch_processing.py │ │ ├── test_business.py │ │ ├── test_business_account_settings.py │ │ ├── test_colin_update.py │ │ ├── test_comments.py │ │ ├── test_configuration.py │ │ ├── test_consent_continuation_out.py │ │ ├── test_corp_type.py │ │ ├── test_dc_business_user.py │ │ ├── test_dc_connection.py │ │ ├── test_dc_credential.py │ │ ├── test_dc_definition.py │ │ ├── test_document.py │ │ ├── test_filing.py │ │ ├── test_filing_lock.py │ │ ├── test_furnishing.py │ │ ├── test_furnishing_group.py │ │ ├── test_jurisdiction.py │ │ ├── test_naics_structure.py │ │ ├── test_party.py │ │ ├── test_party_class.py │ │ ├── test_party_role.py │ │ ├── test_permission.py │ │ ├── test_registration_bootstrap.py │ │ ├── test_request_tracker.py │ │ ├── test_resolution.py │ │ ├── test_review.py │ │ ├── test_review_result.py │ │ ├── test_share_class.py │ │ ├── test_share_series.py │ │ ├── test_user.py │ │ └── test_xml_payload.py │ ├── document-record-service │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── document_record_service │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── constants.py │ │ │ ├── document_service.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── request_info.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ └── test_document_service.py │ ├── sql-versioning-alt │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── sql_versioning │ │ │ ├── __init__.py │ │ │ ├── expression_reflector.py │ │ │ ├── relationship_builder.py │ │ │ ├── utils.py │ │ │ └── versioning.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_versioning.py │ └── sql-versioning │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── sql_versioning │ ├── __init__.py │ ├── expression_reflector.py │ ├── relationship_builder.py │ ├── utils.py │ └── versioning.py │ └── tests │ ├── __init__.py │ ├── conftest.py │ ├── docker-compose.yml │ └── test_versioning.py ├── queue_services ├── business-bn │ ├── .dockerignore │ ├── .env.sample │ ├── .gcloudignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── docker-compose.yml │ ├── gunicorn_config.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── scripts │ │ └── verify_license_headers.sh │ ├── src │ │ └── business_bn │ │ │ ├── __init__.py │ │ │ ├── bn_processors │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── change_of_registration.py │ │ │ ├── correction.py │ │ │ ├── dissolution_or_put_back_on.py │ │ │ └── registration.py │ │ │ ├── bn_templates │ │ │ ├── change_address.xml │ │ │ ├── change_name.xml │ │ │ ├── change_status.xml │ │ │ └── create_program_account_request.xml │ │ │ ├── config.py │ │ │ ├── exceptions.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── business_bn.py │ │ │ └── ops.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ └── gcp_auth.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── bn_processors │ │ │ ├── test_admin.py │ │ │ ├── test_change_of_registration.py │ │ │ ├── test_correction.py │ │ │ ├── test_dissolution_or_put_back_on.py │ │ │ └── test_registration.py │ └── wsgi.py ├── business-digital-credentials │ ├── .dockerignore │ ├── .env.sample │ ├── .gcloudignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── docker-compose.yml │ ├── flags.json │ ├── gunicorn_config.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── scripts │ │ └── verify_license_headers.sh │ ├── src │ │ └── business_digital_credentials │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── digital_credential_processors │ │ │ ├── __init__.py │ │ │ ├── admin_revoke.py │ │ │ ├── auth_unaffiliation.py │ │ │ ├── business_number.py │ │ │ ├── change_of_directors.py │ │ │ ├── change_of_registration.py │ │ │ ├── dissolution.py │ │ │ ├── helpers.py │ │ │ ├── put_back_on.py │ │ │ └── restoration.py │ │ │ ├── exceptions.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── business_digital_credentials.py │ │ │ └── ops.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── flags.py │ │ │ └── gcp_auth.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── digital_credential_processors │ │ │ ├── test_admin_revoke.py │ │ │ ├── test_auth_unaffiliation.py │ │ │ ├── test_business_number.py │ │ │ ├── test_change_of_directors.py │ │ │ ├── test_change_of_registration.py │ │ │ ├── test_dissolution.py │ │ │ ├── test_put_back_on.py │ │ │ └── test_restoration.py │ │ │ ├── helpers.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── test_business_digital_credentials.py │ │ │ ├── test_ops.py │ │ │ └── test_resources_init.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── test_gcp_auth.py │ │ │ ├── test_configuration.py │ │ │ └── test_helpers.py │ └── wsgi.py ├── business-emailer │ ├── .dockerignore │ ├── .env.sample │ ├── .gcloudignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── docker-compose.yml │ ├── flags.json │ ├── gunicorn_config.py │ ├── migrations │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ └── 786dac4b44ef_.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── scripts │ │ └── verify_license_headers.sh │ ├── src │ │ └── business_emailer │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── email_processors │ │ │ ├── __init__.py │ │ │ ├── affiliation_notification.py │ │ │ ├── agm_extension_notification.py │ │ │ ├── agm_location_change_notification.py │ │ │ ├── amalgamation_notification.py │ │ │ ├── amalgamation_out_notification.py │ │ │ ├── appoint_receiver_notification.py │ │ │ ├── ar_reminder_notification.py │ │ │ ├── bn_notification.py │ │ │ ├── cease_receiver_notification.py │ │ │ ├── change_of_registration_notification.py │ │ │ ├── consent_amalgamation_out_notification.py │ │ │ ├── consent_continuation_out_notification.py │ │ │ ├── continuation_in_notification.py │ │ │ ├── continuation_out_notification.py │ │ │ ├── correction_notification.py │ │ │ ├── dissolution_notification.py │ │ │ ├── filing_notification.py │ │ │ ├── intent_to_liquidate_notification.py │ │ │ ├── involuntary_dissolution_stage_1_notification.py │ │ │ ├── mras_notification.py │ │ │ ├── name_request.py │ │ │ ├── notice_of_withdrawal_notification.py │ │ │ ├── nr_notification.py │ │ │ ├── registration_notification.py │ │ │ ├── restoration_notification.py │ │ │ ├── special_resolution_helper.py │ │ │ └── special_resolution_notification.py │ │ │ ├── email_templates │ │ │ ├── AGM-EXT-COMPLETED.html │ │ │ ├── AGM-LOCCHG-COMPLETED.html │ │ │ ├── AMALGA-COMPLETED.html │ │ │ ├── AMALGA-PAID.html │ │ │ ├── AO-COMPLETED.html │ │ │ ├── APPOINT_RECVR.html │ │ │ ├── AR-REMINDER.html │ │ │ ├── BC-ALT-COMPLETED.html │ │ │ ├── BC-ALT-DRAFT.html │ │ │ ├── BC-ALT-PAID.html │ │ │ ├── BC-AR-PAID.html │ │ │ ├── BC-BN.html │ │ │ ├── BC-COA-COMPLETED.html │ │ │ ├── BC-COA-PAID.html │ │ │ ├── BC-COD-COMPLETED.html │ │ │ ├── BC-COD-PAID.html │ │ │ ├── BC-CRCTN-COMPLETED.html │ │ │ ├── BC-CRCTN-PAID.html │ │ │ ├── BC-IA-COMPLETED.html │ │ │ ├── BC-IA-PAID.html │ │ │ ├── BC-MRAS.html │ │ │ ├── BN-MOVE.html │ │ │ ├── CAO-COMPLETED.html │ │ │ ├── CCO-COMPLETED.html │ │ │ ├── CEASE_RECVR.html │ │ │ ├── CHGREG-COMPLETED.html │ │ │ ├── CHGREG-PAID.html │ │ │ ├── CO-COMPLETED.html │ │ │ ├── CONT-IN-APPROVED.html │ │ │ ├── CONT-IN-AWAITING_REVIEW.html │ │ │ ├── CONT-IN-CHANGE_REQUESTED.html │ │ │ ├── CONT-IN-COMPLETED.html │ │ │ ├── CONT-IN-PAID.html │ │ │ ├── CONT-IN-REJECTED.html │ │ │ ├── CONT-IN-RESUBMITTED.html │ │ │ ├── CP-SR-CRCTN-COMPLETED.html │ │ │ ├── CP-SR-CRCTN-PAID.html │ │ │ ├── DIS-COMPLETED.html │ │ │ ├── DIS-PAID.html │ │ │ ├── FIRM-CRCTN-COMPLETED.html │ │ │ ├── FIRM-CRCTN-PAID.html │ │ │ ├── INTENTTOLIQUIDATE-COMPLETED.html │ │ │ ├── INVOL-DIS-STAGE-1.html │ │ │ ├── NOW-COMPLETED.html │ │ │ ├── NR-BEFORE-EXPIRY-COLIN.html │ │ │ ├── NR-BEFORE-EXPIRY-MODERNIZED.html │ │ │ ├── NR-BEFORE-EXPIRY-SO.html │ │ │ ├── NR-BEFORE-EXPIRY.html │ │ │ ├── NR-EXPIRED.html │ │ │ ├── NR-PAID.html │ │ │ ├── NR-REFUND.html │ │ │ ├── NR-RENEWAL.html │ │ │ ├── NR-UPGRADE.html │ │ │ ├── REG-COMPLETED.html │ │ │ ├── REG-PAID.html │ │ │ ├── RES-COMPLETED.jinja2 │ │ │ ├── RES-PAID.jinja2 │ │ │ ├── RES-common.jinja2 │ │ │ ├── RES-fullRestoration-PAID.jinja2 │ │ │ ├── RES-limitedRestoration-PAID.jinja2 │ │ │ ├── RES-limitedRestorationExtension-COMPLETED.jinja2 │ │ │ ├── RES-limitedRestorationExtension-PAID.jinja2 │ │ │ ├── RES-limitedRestorationToFull-PAID.jinja2 │ │ │ ├── SR-CP-COMPLETED.html │ │ │ ├── SR-CP-PAID.html │ │ │ └── common │ │ │ │ ├── 16px.html │ │ │ │ ├── 20px.html │ │ │ │ ├── 24px.html │ │ │ │ ├── 8px.html │ │ │ │ ├── amalgamation-out-information.html │ │ │ │ ├── base_template.jinja2 │ │ │ │ ├── business-dashboard-link-alt.html │ │ │ │ ├── business-dashboard-link.html │ │ │ │ ├── business-info.html │ │ │ │ ├── business-information-block.jinja2 │ │ │ │ ├── business-information.html │ │ │ │ ├── consent-letter-information.html │ │ │ │ ├── continuation-application-details.html │ │ │ │ ├── cra-notice.html │ │ │ │ ├── divider.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── initiative-notice.html │ │ │ │ ├── logo.html │ │ │ │ ├── nr-footer.html │ │ │ │ ├── pdf-notice.html │ │ │ │ ├── reg-business-info.html │ │ │ │ ├── style.html │ │ │ │ ├── whitespace-16px.html │ │ │ │ └── whitespace-24px.html │ │ │ ├── exceptions.py │ │ │ ├── filing_helper.py │ │ │ ├── meta │ │ │ ├── __init__.py │ │ │ └── filing.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── business_emailer.py │ │ │ └── ops.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ ├── flags.py │ │ │ ├── gcp_auth.py │ │ │ ├── namex.py │ │ │ └── versioned_business_details.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── pytest_marks.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── email_processors │ │ │ ├── __init__.py │ │ │ ├── test_affiliation_notification.py │ │ │ ├── test_agm_extension_notification.py │ │ │ ├── test_agm_location_change_notification.py │ │ │ ├── test_amalgamation_notification.py │ │ │ ├── test_amalgamation_out_notification.py │ │ │ ├── test_ar_reminder_notification.py │ │ │ ├── test_bn_notification.py │ │ │ ├── test_change_of_registration_notification.py │ │ │ ├── test_consent_amalgamation_out_notification.py │ │ │ ├── test_consent_continuation_out_notification.py │ │ │ ├── test_continuation_in_notification.py │ │ │ ├── test_continuation_out_notification.py │ │ │ ├── test_correction_notification.py │ │ │ ├── test_cp_special_resolution_notification.py │ │ │ ├── test_dissolution_notification.py │ │ │ ├── test_filing_notification.py │ │ │ ├── test_intent_to_liquidate_notification.py │ │ │ ├── test_involuntary_dissolution_stage_1_notification.py │ │ │ ├── test_mras_notification.py │ │ │ ├── test_notice_of_withdrawal_notification.py │ │ │ ├── test_nr_notification.py │ │ │ ├── test_registration_notification.py │ │ │ └── test_restoration_notification.py │ │ │ ├── helpers.py │ │ │ ├── test_configuration.py │ │ │ └── test_worker.py │ └── wsgi.py ├── business-filer │ ├── .dockerignore │ ├── .envrc │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── flags.json │ ├── gunicorn_config.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── report-templates │ │ └── registrar_signatures │ │ │ ├── registrar_signature_3.png │ │ │ ├── registrar_signature_4.png │ │ │ ├── registrar_signature_and_text_3.png │ │ │ └── registrar_signature_and_text_4.png │ ├── src │ │ └── business_filer │ │ │ ├── __init__.py │ │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── datetime.py │ │ │ ├── filing.py │ │ │ ├── filing_message.py │ │ │ ├── legislation_datetime.py │ │ │ └── services │ │ │ │ ├── __init__.py │ │ │ │ ├── account_service.py │ │ │ │ ├── flag_manager.py │ │ │ │ ├── involuntary_dissolution.py │ │ │ │ └── naics.py │ │ │ ├── config.py │ │ │ ├── exceptions │ │ │ ├── __init__.py │ │ │ ├── business_exception.py │ │ │ ├── default_error.py │ │ │ └── error_messages │ │ │ │ ├── __init__.py │ │ │ │ ├── codes.py │ │ │ │ ├── messages.py │ │ │ │ └── utils.py │ │ │ ├── filing_meta.py │ │ │ ├── filing_processors │ │ │ ├── __init__.py │ │ │ ├── admin_freeze.py │ │ │ ├── agm_extension.py │ │ │ ├── agm_location_change.py │ │ │ ├── alteration.py │ │ │ ├── amalgamation_application.py │ │ │ ├── amalgamation_out.py │ │ │ ├── annual_report.py │ │ │ ├── appoint_receiver.py │ │ │ ├── cease_receiver.py │ │ │ ├── change_of_address.py │ │ │ ├── change_of_directors.py │ │ │ ├── change_of_name.py │ │ │ ├── change_of_officers.py │ │ │ ├── change_of_registration.py │ │ │ ├── consent_amalgamation_out.py │ │ │ ├── consent_continuation_out.py │ │ │ ├── continuation_in.py │ │ │ ├── continuation_out.py │ │ │ ├── conversion.py │ │ │ ├── correction.py │ │ │ ├── court_order.py │ │ │ ├── dissolution.py │ │ │ ├── filing_components │ │ │ │ ├── __init__.py │ │ │ │ ├── aliases.py │ │ │ │ ├── business_info.py │ │ │ │ ├── business_profile.py │ │ │ │ ├── correction.py │ │ │ │ ├── filings.py │ │ │ │ ├── name_request.py │ │ │ │ ├── offices.py │ │ │ │ ├── parties.py │ │ │ │ ├── resolutions.py │ │ │ │ ├── rules_and_memorandum.py │ │ │ │ └── shares.py │ │ │ ├── incorporation_filing.py │ │ │ ├── intent_to_liquidate.py │ │ │ ├── notice_of_withdrawal.py │ │ │ ├── put_back_off.py │ │ │ ├── put_back_on.py │ │ │ ├── registrars_notation.py │ │ │ ├── registrars_order.py │ │ │ ├── registration.py │ │ │ ├── restoration.py │ │ │ ├── special_resolution.py │ │ │ ├── transition.py │ │ │ └── transparency_register.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── meta.py │ │ │ ├── ops.py │ │ │ └── worker.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── filer.py │ │ │ ├── gcp_auth.py │ │ │ ├── publish_event.py │ │ │ └── utils.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── version.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── pytest_marks.py │ │ ├── unit │ │ │ ├── __init__.py │ │ │ ├── filing_processors │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── filing_components │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_business_info.py │ │ │ │ │ ├── test_business_profile.py │ │ │ │ │ ├── test_filing.py │ │ │ │ │ ├── test_offices.py │ │ │ │ │ ├── test_parties.py │ │ │ │ │ └── test_shares.py │ │ │ │ ├── test_aliases.py │ │ │ │ ├── test_alteration.py │ │ │ │ ├── test_annual_report.py │ │ │ │ ├── test_appoint_receiver.py │ │ │ │ ├── test_change_of_address.py │ │ │ │ ├── test_change_of_name.py │ │ │ │ ├── test_change_of_officers.py │ │ │ │ ├── test_conversion.py │ │ │ │ ├── test_dissolution.py │ │ │ │ ├── test_incorporation_filing.py │ │ │ │ ├── test_registration.py │ │ │ │ ├── test_special_resolution.py │ │ │ │ ├── test_transition.py │ │ │ │ └── test_transparency_register.py │ │ │ ├── test_container │ │ │ │ ├── __init__.py │ │ │ │ └── test_pubsub.py │ │ │ ├── test_filer │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_admin_freeze.py │ │ │ │ ├── test_agm_extension.py │ │ │ │ ├── test_agm_location_change.py │ │ │ │ ├── test_alteration.py │ │ │ │ ├── test_amalgamation_application.py │ │ │ │ ├── test_amalgamation_out.py │ │ │ │ ├── test_annual_report.py │ │ │ │ ├── test_cease_receiver.py │ │ │ │ ├── test_change_of_address.py │ │ │ │ ├── test_change_of_officers.py │ │ │ │ ├── test_change_of_registration.py │ │ │ │ ├── test_consent_amalgamation_out.py │ │ │ │ ├── test_consent_continuation_out.py │ │ │ │ ├── test_continuation_in.py │ │ │ │ ├── test_continuation_out.py │ │ │ │ ├── test_conversion.py │ │ │ │ ├── test_correction_bcia.py │ │ │ │ ├── test_correction_conversion.py │ │ │ │ ├── test_correction_firms.py │ │ │ │ ├── test_correction_special_resolution.py │ │ │ │ ├── test_court_order.py │ │ │ │ ├── test_incorporation.py │ │ │ │ ├── test_intent_to_liquidate.py │ │ │ │ ├── test_notice_of_withdrawal.py │ │ │ │ ├── test_put_back_off.py │ │ │ │ ├── test_put_back_on.py │ │ │ │ ├── test_registrars_notation.py │ │ │ │ ├── test_registrars_order.py │ │ │ │ ├── test_restoration.py │ │ │ │ ├── test_seq.py │ │ │ │ ├── test_skip_filings.py │ │ │ │ ├── test_special_resolution.py │ │ │ │ ├── test_technical_correction.py │ │ │ │ └── test_transition.py │ │ │ ├── test_filing_meta.py │ │ │ ├── test_publish │ │ │ │ ├── __init__.py │ │ │ │ └── test_publish_event.py │ │ │ ├── test_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_meta.py │ │ │ │ ├── test_ops.py │ │ │ │ ├── test_pubsub.py │ │ │ │ ├── test_push.py │ │ │ │ └── test_worker_direct.py │ │ │ └── test_version.py │ │ └── utils.py │ └── wsgi.py ├── business-pay │ ├── .dockerignore │ ├── .gcloudignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ │ ├── gcp │ │ │ └── clouddeploy.yaml │ │ └── vaults.gcp.env │ ├── flags.json │ ├── gunicorn_config.py │ ├── k8s │ │ ├── Readme.md │ │ └── templates │ │ │ ├── bc.yaml │ │ │ └── dc.yaml │ ├── logging.conf │ ├── poetry.lock │ ├── pyproject.toml │ ├── src │ │ └── business_pay │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── database │ │ │ ├── __init__.py │ │ │ ├── db.py │ │ │ ├── filings.py │ │ │ └── review.py │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── ops.py │ │ │ └── pay_filer.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── flags.py │ │ │ ├── gcp_auth.py │ │ │ └── queue.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── version.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ │ └── create_database.sql │ │ ├── docker-compose.yml │ │ ├── integration │ │ │ ├── __init__.py │ │ │ ├── test_nats_stan.py │ │ │ ├── test_queue_publish.py │ │ │ ├── test_worker_queue.py │ │ │ └── utils.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_version.py │ └── wsgi.py ├── common │ ├── .envrc │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── example_service_runner.py │ ├── requirements.txt │ ├── requirements │ │ ├── dev.txt │ │ ├── prod.txt │ │ └── repo-libraries.txt │ ├── scripts │ │ └── verify_license_headers.sh │ ├── setup.cfg │ ├── setup.py │ ├── src │ │ └── entity_queue_common │ │ │ ├── __init__.py │ │ │ ├── messages.py │ │ │ ├── probes.py │ │ │ ├── service.py │ │ │ ├── service_utils │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── handlers.py │ │ │ ├── run_version.py │ │ │ └── service_logger.py │ │ │ └── version.py │ └── tests │ │ ├── __init__.py │ │ ├── config.py │ │ ├── conftest.py │ │ ├── docker-compose.yml │ │ ├── integration │ │ ├── __init__.py │ │ ├── test_queue_connections.py │ │ ├── test_queue_messaging.py │ │ ├── test_queue_payment_token.py │ │ └── utils.py │ │ └── unit │ │ ├── __init__.py │ │ ├── service_utils │ │ ├── __init__.py │ │ └── test_handlers.py │ │ ├── test_messages.py │ │ ├── test_probes.py │ │ ├── test_service.py │ │ └── test_version.py └── entity-digital-credentials │ ├── .env.sample │ ├── .envrc │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── devops │ └── vaults.json │ ├── digital_credentials_service.py │ ├── flags.json │ ├── k8s │ ├── Readme.md │ └── templates │ │ └── dc.yaml │ ├── q_cli.py │ ├── requirements.txt │ ├── requirements │ ├── bcregistry-libraries.txt │ ├── dev.txt │ └── prod.txt │ ├── setup.cfg │ ├── setup.py │ ├── src │ └── entity_digital_credentials │ │ ├── __init__.py │ │ ├── config.py │ │ ├── digital_credentials_processors │ │ ├── __init__.py │ │ ├── admin_revoke.py │ │ ├── business_number.py │ │ ├── change_of_registration.py │ │ ├── dissolution.py │ │ └── put_back_on.py │ │ ├── helpers.py │ │ ├── version.py │ │ └── worker.py │ └── tests │ ├── __init__.py │ ├── conftest.py │ └── unit │ ├── __init__.py │ ├── digital_credentials_processors │ ├── test_admin_revoke.py │ ├── test_business_number.py │ ├── test_change_of_registration.py │ ├── test_dissolution.py │ └── test_put_back_on.py │ ├── test_helpers.py │ └── test_worker.py ├── scripts ├── 1pass.sh ├── install_tools.sh └── sandbox.sql ├── support └── notebooks │ └── business-ops │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── bcr-bcomp-alteration-template.ipynb │ ├── bcr-business-ops-template.ipynb │ ├── bcr-business-ops-template.md │ ├── bcr-business-setup.ipynb │ ├── creds.local.json.nogit │ ├── img │ └── legal.png │ ├── requirements.txt │ ├── run.sh │ └── save_to_markdown.sh └── tests ├── data ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json ├── Alterations_update_metadata │ └── fix_alteration_filing_metadata.ipynb ├── Filing_Issues.ipynb ├── README.md ├── XXXX_load_COOP-CPXXXXX.ipynb ├── common │ ├── auth_api_utils.ipynb │ ├── colin_api_utils.ipynb │ ├── legal_api_utils.ipynb │ ├── legal_api_utils_test_data.ipynb │ ├── legal_api_utils_test_payload_data.ipynb │ ├── naics_utils.ipynb │ ├── namex_api_utils.ipynb │ ├── namex_api_utils_test_payload_data.ipynb │ └── utility.ipynb ├── data │ ├── naics │ │ ├── naics-scian-2017-element-v3-eng.csv │ │ ├── naics-scian-2017-structure-v3-eng.csv │ │ ├── naics-scian-2022-element-v1-eng.csv │ │ └── naics-scian-2022-structure-v1-eng.csv │ └── pdfs │ │ └── valid.pdf ├── default-bcr-business-setup-TEST.ipynb ├── ledger │ ├── Ledger_Load_COOP_Test_Data-ONLY_IA-PENDING.ipynb │ ├── Ledger_Load_COOP_Test_Data-ONLY_IA.ipynb │ └── Ledger_Load_COOP_Test_Data.ipynb ├── misc │ └── backfill_user_data.ipynb ├── naics │ └── create_alembic_import_data_from_naics_csvs.ipynb ├── nr │ └── XXXX_create_nr_XXXXX.ipynb ├── requirements.txt ├── run.sh ├── special_resolution │ └── XXXX_create_coop_change_of_name_sr_XXXXX.ipynb └── voluntary_dissolution │ ├── XXXX_create_ben_voluntary_dissolution_XXXXX.ipynb │ └── XXXX_create_coop_voluntary_dissolution_XXXXX.ipynb └── postman └── lear-integration.postman_collection.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task-or-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/ISSUE_TEMPLATE/task-or-ops.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/business-api-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-api-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-api-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-api-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-bn-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-bn-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-bn-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-bn-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-email-reminder-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-email-reminder-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-email-reminder-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-email-reminder-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-emailer-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-emailer-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-emailer-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-emailer-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-entity-bn-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-entity-bn-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-entity-bn-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-entity-bn-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-filer-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-filer-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-filer-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-filer-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-furnishings-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-furnishings-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-furnishings-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-furnishings-ci.yml -------------------------------------------------------------------------------- /.github/workflows/business-pay-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-pay-cd.yml -------------------------------------------------------------------------------- /.github/workflows/business-pay-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/business-pay-ci.yml -------------------------------------------------------------------------------- /.github/workflows/colin-api-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/colin-api-cd.yml -------------------------------------------------------------------------------- /.github/workflows/colin-api-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/colin-api-ci.yml -------------------------------------------------------------------------------- /.github/workflows/common-business-model-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/common-business-model-ci.yml -------------------------------------------------------------------------------- /.github/workflows/data-reset-tool-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/data-reset-tool-cd.yml -------------------------------------------------------------------------------- /.github/workflows/data-reset-tool-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/data-reset-tool-ci.yml -------------------------------------------------------------------------------- /.github/workflows/legal-oas-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/legal-oas-ci.yml -------------------------------------------------------------------------------- /.github/workflows/sftp-icbc-report-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/sftp-icbc-report-cd.yml -------------------------------------------------------------------------------- /.github/workflows/sftp-icbc-report-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/sftp-icbc-report-ci.yml -------------------------------------------------------------------------------- /.github/workflows/sftp-nuans-report-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/sftp-nuans-report-cd.yml -------------------------------------------------------------------------------- /.github/workflows/sftp-nuans-report-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.github/workflows/sftp-nuans-report-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/codecov.yaml -------------------------------------------------------------------------------- /colin-api/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /colin-api/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /colin-api/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/.envrc -------------------------------------------------------------------------------- /colin-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/Dockerfile -------------------------------------------------------------------------------- /colin-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/LICENSE -------------------------------------------------------------------------------- /colin-api/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/MANIFEST.in -------------------------------------------------------------------------------- /colin-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/Makefile -------------------------------------------------------------------------------- /colin-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/README.md -------------------------------------------------------------------------------- /colin-api/devops/vaults.ocp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/devops/vaults.ocp.env -------------------------------------------------------------------------------- /colin-api/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/flags.json -------------------------------------------------------------------------------- /colin-api/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/gunicorn_config.py -------------------------------------------------------------------------------- /colin-api/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/manage.py -------------------------------------------------------------------------------- /colin-api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/requirements.txt -------------------------------------------------------------------------------- /colin-api/requirements/bcregistry-libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/requirements/bcregistry-libraries.txt -------------------------------------------------------------------------------- /colin-api/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/requirements/dev.txt -------------------------------------------------------------------------------- /colin-api/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/requirements/prod.txt -------------------------------------------------------------------------------- /colin-api/scripts/list_lint_exemptions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/scripts/list_lint_exemptions.sh -------------------------------------------------------------------------------- /colin-api/scripts/verify_license_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/scripts/verify_license_headers.sh -------------------------------------------------------------------------------- /colin-api/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/setup.cfg -------------------------------------------------------------------------------- /colin-api/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/setup.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/config.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/errorhandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/errorhandlers.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/exceptions/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/logging.conf -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/address.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/business.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/cont_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/cont_out.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/corp_involved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/corp_involved.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/corp_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/corp_name.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/corp_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/corp_party.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/filing.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/filing_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/filing_type.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/jurisdiction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/jurisdiction.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/office.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/program_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/program_account.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/reset.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/models/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/models/shares.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/business.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/db.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/event.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/filing.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/meta.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/office.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/ops.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/parties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/parties.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/reset.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/resources/share_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/resources/share_struct.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/services/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/services/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/services/account.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/services/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/services/flags.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/utils/__init__.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/utils/auth.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/utils/logging.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/utils/run_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/utils/run_version.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/utils/util.py -------------------------------------------------------------------------------- /colin-api/src/colin_api/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/src/colin_api/version.py -------------------------------------------------------------------------------- /colin-api/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/README.md -------------------------------------------------------------------------------- /colin-api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/__init__.py -------------------------------------------------------------------------------- /colin-api/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/conftest.py -------------------------------------------------------------------------------- /colin-api/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/__init__.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/__init__.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_alteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_alteration.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_ar.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_business.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_change_of_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_change_of_name.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_directors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_directors.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_historic_filings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_historic_filings.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_meta.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_ops.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_program_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_program_account.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_registered_office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_registered_office.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_share_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_share_structure.py -------------------------------------------------------------------------------- /colin-api/tests/unit/api/test_special_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/api/test_special_resolution.py -------------------------------------------------------------------------------- /colin-api/tests/unit/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/conf/__init__.py -------------------------------------------------------------------------------- /colin-api/tests/unit/conf/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/conf/test_configuration.py -------------------------------------------------------------------------------- /colin-api/tests/unit/conf/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/conf/test_version.py -------------------------------------------------------------------------------- /colin-api/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/conftest.py -------------------------------------------------------------------------------- /colin-api/tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/utils/__init__.py -------------------------------------------------------------------------------- /colin-api/tests/unit/utils/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/utils/logging.conf -------------------------------------------------------------------------------- /colin-api/tests/unit/utils/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/utils/test_logging.py -------------------------------------------------------------------------------- /colin-api/tests/unit/utils/test_util_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/unit/utils/test_util_cors.py -------------------------------------------------------------------------------- /colin-api/tests/utilities/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/tests/utilities/decorators.py -------------------------------------------------------------------------------- /colin-api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/colin-api/wsgi.py -------------------------------------------------------------------------------- /data-tool/.corps.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/.corps.env.sample -------------------------------------------------------------------------------- /data-tool/.prefectignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/.prefectignore -------------------------------------------------------------------------------- /data-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/Makefile -------------------------------------------------------------------------------- /data-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/README.md -------------------------------------------------------------------------------- /data-tool/README_POC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/README_POC.md -------------------------------------------------------------------------------- /data-tool/backup_extract_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/backup_extract_tables.sh -------------------------------------------------------------------------------- /data-tool/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/docker-compose.yaml -------------------------------------------------------------------------------- /data-tool/find-columns/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/.env.example -------------------------------------------------------------------------------- /data-tool/find-columns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/.gitignore -------------------------------------------------------------------------------- /data-tool/find-columns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/Makefile -------------------------------------------------------------------------------- /data-tool/find-columns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/README.md -------------------------------------------------------------------------------- /data-tool/find-columns/find_null_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/find_null_columns.py -------------------------------------------------------------------------------- /data-tool/find-columns/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/requirements.txt -------------------------------------------------------------------------------- /data-tool/find-columns/screenshots/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/screenshots/image-1.png -------------------------------------------------------------------------------- /data-tool/find-columns/screenshots/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/screenshots/image.png -------------------------------------------------------------------------------- /data-tool/find-columns/sql_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/sql_scripts/README.md -------------------------------------------------------------------------------- /data-tool/find-columns/sql_scripts/script_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/sql_scripts/script_1.sql -------------------------------------------------------------------------------- /data-tool/find-columns/sql_scripts/script_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-columns/sql_scripts/script_2.sql -------------------------------------------------------------------------------- /data-tool/find-tables/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/.env.sample -------------------------------------------------------------------------------- /data-tool/find-tables/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .DS_Store 3 | venv/ 4 | __pycache__/ -------------------------------------------------------------------------------- /data-tool/find-tables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/Makefile -------------------------------------------------------------------------------- /data-tool/find-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/README.md -------------------------------------------------------------------------------- /data-tool/find-tables/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/config.py -------------------------------------------------------------------------------- /data-tool/find-tables/find_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/find_tables.py -------------------------------------------------------------------------------- /data-tool/find-tables/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/models.py -------------------------------------------------------------------------------- /data-tool/find-tables/requirements.txt: -------------------------------------------------------------------------------- 1 | cx_Oracle==8.3.0 2 | python-dotenv==1.0.1 3 | -------------------------------------------------------------------------------- /data-tool/find-tables/screenshots/Screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/screenshots/Screenshot 1.png -------------------------------------------------------------------------------- /data-tool/find-tables/screenshots/Screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/screenshots/Screenshot 2.png -------------------------------------------------------------------------------- /data-tool/find-tables/screenshots/Screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/find-tables/screenshots/Screenshot 3.png -------------------------------------------------------------------------------- /data-tool/flows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/__init__.py -------------------------------------------------------------------------------- /data-tool/flows/batch_delete_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/batch_delete_flow.py -------------------------------------------------------------------------------- /data-tool/flows/colin_freeze_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/colin_freeze_flow.py -------------------------------------------------------------------------------- /data-tool/flows/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/__init__.py -------------------------------------------------------------------------------- /data-tool/flows/common/affiliation_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/affiliation_queries.py -------------------------------------------------------------------------------- /data-tool/flows/common/auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/auth_service.py -------------------------------------------------------------------------------- /data-tool/flows/common/custom_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/custom_exceptions.py -------------------------------------------------------------------------------- /data-tool/flows/common/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/data/__init__.py -------------------------------------------------------------------------------- /data-tool/flows/common/data/firms_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/data/firms_data.py -------------------------------------------------------------------------------- /data-tool/flows/common/event_filing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/event_filing_service.py -------------------------------------------------------------------------------- /data-tool/flows/common/extract_tracking_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/extract_tracking_service.py -------------------------------------------------------------------------------- /data-tool/flows/common/filing_base_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/filing_base_json.py -------------------------------------------------------------------------------- /data-tool/flows/common/filing_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/filing_data_utils.py -------------------------------------------------------------------------------- /data-tool/flows/common/firm_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/firm_queries.py -------------------------------------------------------------------------------- /data-tool/flows/common/init_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/init_utils.py -------------------------------------------------------------------------------- /data-tool/flows/common/lear_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/lear_data_utils.py -------------------------------------------------------------------------------- /data-tool/flows/common/processing_status_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/processing_status_service.py -------------------------------------------------------------------------------- /data-tool/flows/common/query_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/query_utils.py -------------------------------------------------------------------------------- /data-tool/flows/common/shared_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/shared_queries.py -------------------------------------------------------------------------------- /data-tool/flows/common/transform_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/transform_utils.py -------------------------------------------------------------------------------- /data-tool/flows/common/validation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/common/validation_utils.py -------------------------------------------------------------------------------- /data-tool/flows/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/config.py -------------------------------------------------------------------------------- /data-tool/flows/corps/corp_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps/corp_queries.py -------------------------------------------------------------------------------- /data-tool/flows/corps/event_filing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps/event_filing_service.py -------------------------------------------------------------------------------- /data-tool/flows/corps/filing_data_cleaning_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps/filing_data_cleaning_utils.py -------------------------------------------------------------------------------- /data-tool/flows/corps/filing_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps/filing_data_utils.py -------------------------------------------------------------------------------- /data-tool/flows/corps/lear_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps/lear_data_utils.py -------------------------------------------------------------------------------- /data-tool/flows/corps_tombstone_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps_tombstone_flow.py -------------------------------------------------------------------------------- /data-tool/flows/corps_verify_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/corps_verify_flow.py -------------------------------------------------------------------------------- /data-tool/flows/custom_filer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/custom_filer/__init__.py -------------------------------------------------------------------------------- /data-tool/flows/custom_filer/corps_filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/custom_filer/corps_filer.py -------------------------------------------------------------------------------- /data-tool/flows/custom_filer/filer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/custom_filer/filer.py -------------------------------------------------------------------------------- /data-tool/flows/custom_filer/filing_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/custom_filer/filing_meta.py -------------------------------------------------------------------------------- /data-tool/flows/migrate_corps_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/migrate_corps_flow.py -------------------------------------------------------------------------------- /data-tool/flows/migrate_sp_gp_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/migrate_sp_gp_flow.py -------------------------------------------------------------------------------- /data-tool/flows/sp_gp_affiliation_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/sp_gp_affiliation_flow.py -------------------------------------------------------------------------------- /data-tool/flows/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tasks/__init__.py -------------------------------------------------------------------------------- /data-tool/flows/tasks/task_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tasks/task_utils.py -------------------------------------------------------------------------------- /data-tool/flows/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/test_flow.py -------------------------------------------------------------------------------- /data-tool/flows/tombstone/tombstone_base_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tombstone/tombstone_base_data.py -------------------------------------------------------------------------------- /data-tool/flows/tombstone/tombstone_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tombstone/tombstone_mappings.py -------------------------------------------------------------------------------- /data-tool/flows/tombstone/tombstone_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tombstone/tombstone_queries.py -------------------------------------------------------------------------------- /data-tool/flows/tombstone/tombstone_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/flows/tombstone/tombstone_utils.py -------------------------------------------------------------------------------- /data-tool/install_oracle_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/install_oracle_client.sh -------------------------------------------------------------------------------- /data-tool/notebooks/fix_submitter_roles/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/notebooks/fix_submitter_roles/.env.sample -------------------------------------------------------------------------------- /data-tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/requirements.txt -------------------------------------------------------------------------------- /data-tool/requirements/bcregistry-libraries.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-tool/requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-tool/requirements/prefect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/requirements/prefect.txt -------------------------------------------------------------------------------- /data-tool/requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-tool/restore_extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/restore_extract.sh -------------------------------------------------------------------------------- /data-tool/scripts/README_COLIN_Corps_Extract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/scripts/README_COLIN_Corps_Extract.md -------------------------------------------------------------------------------- /data-tool/scripts/colin_corps_extract_postgres_ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/scripts/colin_corps_extract_postgres_ddl -------------------------------------------------------------------------------- /data-tool/scripts/misc_extract_corps_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/scripts/misc_extract_corps_queries.sql -------------------------------------------------------------------------------- /data-tool/scripts/transfer_cprd_corps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/data-tool/scripts/transfer_cprd_corps.sql -------------------------------------------------------------------------------- /docs/business-api/postman/business-api-sandbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/docs/business-api/postman/business-api-sandbox.zip -------------------------------------------------------------------------------- /docs/business.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/docs/business.yaml -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/Makefile -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/README.md: -------------------------------------------------------------------------------- 1 | # Email Reminder Job 2 | -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/devops/gcp/clouddeploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/devops/gcp/clouddeploy.yaml -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/devops/vaults.gcp.env -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/flags.json -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/run.sh -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/run_reminders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/run_reminders.py -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/schedules/run.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/schedules/run.cron -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/schedules/run.dev.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/schedules/run.dev.cron -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/tests/unit/__init__.py -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/tests/unit/conftest.py -------------------------------------------------------------------------------- /gcp-jobs/email-reminder/tests/unit/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/email-reminder/tests/unit/test_worker.py -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/Makefile -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/README.md -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/devops/gcp/clouddeploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/devops/gcp/clouddeploy.yaml -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/devops/vaults.gcp.env -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/run.sh -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/schedules/run.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/schedules/run.cron -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/schedules/run.dev.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/schedules/run.dev.cron -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/src/entity-bn/entity-bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/src/entity-bn/entity-bn.py -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/entity-bn/tests/unit/test_create_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/entity-bn/tests/unit/test_create_app.py -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/Makefile -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/README.md -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/run.py -------------------------------------------------------------------------------- /gcp-jobs/expired-limited-restoration/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/expired-limited-restoration/run.sh -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/README.md -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/run.sh -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/schedules/run.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/filings-notebook-report/schedules/run.cron -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/src/notebookreport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/src/notebookreport/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/src/notebookreport/devops/vaults.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /gcp-jobs/filings-notebook-report/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/furnishings/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/.dockerignore -------------------------------------------------------------------------------- /gcp-jobs/furnishings/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/furnishings/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/.gcloudignore -------------------------------------------------------------------------------- /gcp-jobs/furnishings/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/furnishings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/Makefile -------------------------------------------------------------------------------- /gcp-jobs/furnishings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/README.md -------------------------------------------------------------------------------- /gcp-jobs/furnishings/devops/vaults.ocp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/devops/vaults.ocp.env -------------------------------------------------------------------------------- /gcp-jobs/furnishings/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/flags.json -------------------------------------------------------------------------------- /gcp-jobs/furnishings/furnish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/furnish.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/furnishings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/furnishings/src/furnishings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/src/furnishings/__init__.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/src/furnishings/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/src/furnishings/config.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/src/furnishings/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/src/furnishings/sftp.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/src/furnishings/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/src/furnishings/worker.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/tests/unit/__init__.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/tests/unit/conftest.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/tests/unit/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/tests/unit/test_sftp.py -------------------------------------------------------------------------------- /gcp-jobs/furnishings/tests/unit/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/furnishings/tests/unit/test_worker.py -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/Makefile -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/README.md -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/future-effective-filings/run.sh -------------------------------------------------------------------------------- /gcp-jobs/future-effective-filings/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/Makefile -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/README.md -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/flags.json -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/involuntary-dissolutions/run.sh -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/src/involuntary_dissolutions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/involuntary-dissolutions/src/involuntary_dissolutions/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/.dockerignore -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/.gcloudignore -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/Makefile -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/README.md -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/devops/vaults.gcp.env -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/run.sh -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/run_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/run_job.py -------------------------------------------------------------------------------- /gcp-jobs/update-colin-filings/schedules/run.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-colin-filings/schedules/run.cron -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/.env.sample -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/Dockerfile -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/Makefile -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/README.md -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/devops/vaults.gcp.env -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/poetry.lock -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/pyproject.toml -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/run.py -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/run.sh -------------------------------------------------------------------------------- /gcp-jobs/update-legal-filings/schedules/run.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/gcp-jobs/update-legal-filings/schedules/run.cron -------------------------------------------------------------------------------- /jobs/correction-ben-statement/add_corrections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/correction-ben-statement/add_corrections.ipynb -------------------------------------------------------------------------------- /jobs/correction-ben-statement/corrections_results.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/correction-ben-statement/queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/correction-ben-statement/queries.sql -------------------------------------------------------------------------------- /jobs/correction-ben-statement/rn_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/correction-ben-statement/rn_output.py -------------------------------------------------------------------------------- /jobs/dbc-message-sender/DBC-TOU-UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/dbc-message-sender/DBC-TOU-UPDATE.md -------------------------------------------------------------------------------- /jobs/dbc-message-sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/dbc-message-sender/README.md -------------------------------------------------------------------------------- /jobs/dbc-message-sender/connection-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/dbc-message-sender/connection-check.py -------------------------------------------------------------------------------- /jobs/dbc-message-sender/connections.txt: -------------------------------------------------------------------------------- 1 | add-connection-ids-here-one-per-line -------------------------------------------------------------------------------- /jobs/dbc-message-sender/message-sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/dbc-message-sender/message-sender.py -------------------------------------------------------------------------------- /jobs/dbc-message-sender/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /jobs/sftp-gazette/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/.env.sample -------------------------------------------------------------------------------- /jobs/sftp-gazette/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/Dockerfile -------------------------------------------------------------------------------- /jobs/sftp-gazette/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/Makefile -------------------------------------------------------------------------------- /jobs/sftp-gazette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/README.md -------------------------------------------------------------------------------- /jobs/sftp-gazette/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/config.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/devops/vaults.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /jobs/sftp-gazette/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/logging.conf -------------------------------------------------------------------------------- /jobs/sftp-gazette/notebook/generate_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/notebook/generate_files.ipynb -------------------------------------------------------------------------------- /jobs/sftp-gazette/notebook/update_database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/notebook/update_database.ipynb -------------------------------------------------------------------------------- /jobs/sftp-gazette/openshift/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/openshift/Readme.md -------------------------------------------------------------------------------- /jobs/sftp-gazette/openshift/templates/bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/openshift/templates/bc.yaml -------------------------------------------------------------------------------- /jobs/sftp-gazette/openshift/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/openshift/templates/cronjob.yaml -------------------------------------------------------------------------------- /jobs/sftp-gazette/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/requirements.txt -------------------------------------------------------------------------------- /jobs/sftp-gazette/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/requirements/dev.txt -------------------------------------------------------------------------------- /jobs/sftp-gazette/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/requirements/prod.txt -------------------------------------------------------------------------------- /jobs/sftp-gazette/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/run.sh -------------------------------------------------------------------------------- /jobs/sftp-gazette/services/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/services/sftp.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/setup.cfg -------------------------------------------------------------------------------- /jobs/sftp-gazette/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/setup.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/sftpgazette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/sftpgazette.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/tasks/__init__.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/tasks/ftp_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/tasks/ftp_processor.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/sftp-gazette/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/tests/unit/conftest.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/tests/unit/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/tests/unit/test_job.py -------------------------------------------------------------------------------- /jobs/sftp-gazette/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/sftp-gazette/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-gazette/util/logging.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/.env.sample -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/Dockerfile -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/Makefile -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/README.md -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/config.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/devops/vaults.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/logging.conf -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/notebook/generate_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/notebook/generate_files.ipynb -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/openshift/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/openshift/Readme.md -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/openshift/templates/bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/openshift/templates/bc.yaml -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/requirements.txt -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/requirements/dev.txt -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/requirements/prod.txt -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/services/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/services/sftp.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/setup.cfg -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/setup.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/sftpicbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/sftpicbc.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/tasks/__init__.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/tasks/ftp_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/tasks/ftp_processor.py -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/sftp-icbc-report/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-icbc-report/util/logging.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/.env.sample -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/Dockerfile -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/Makefile -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/README.md -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/config.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/devops/vaults.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/logging.conf -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/openshift/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/openshift/Readme.md -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/openshift/templates/bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/openshift/templates/bc.yaml -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/requirements.txt -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/requirements/dev.txt -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/requirements/prod.txt -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/services/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/services/sftp.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/setup.cfg -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/setup.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/sftpnuans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/sftpnuans.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/tasks/__init__.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/tasks/ftp_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/tasks/ftp_processor.py -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/sftp-nuans-report/util/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/jobs/sftp-nuans-report/util/logging.py -------------------------------------------------------------------------------- /legal-api/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /legal-api/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /legal-api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.dockerignore -------------------------------------------------------------------------------- /legal-api/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.env.sample -------------------------------------------------------------------------------- /legal-api/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.envrc -------------------------------------------------------------------------------- /legal-api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/.vscode/launch.json -------------------------------------------------------------------------------- /legal-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/Dockerfile -------------------------------------------------------------------------------- /legal-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/LICENSE -------------------------------------------------------------------------------- /legal-api/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/MANIFEST.in -------------------------------------------------------------------------------- /legal-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/Makefile -------------------------------------------------------------------------------- /legal-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/README.md -------------------------------------------------------------------------------- /legal-api/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/**.py] 2 | -------------------------------------------------------------------------------- /legal-api/devops/gcp/clouddeploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/devops/gcp/clouddeploy.yaml -------------------------------------------------------------------------------- /legal-api/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/devops/vaults.gcp.env -------------------------------------------------------------------------------- /legal-api/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/flags.json -------------------------------------------------------------------------------- /legal-api/fonts/BCSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/fonts/BCSans-Regular.ttf -------------------------------------------------------------------------------- /legal-api/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/gunicorn_config.py -------------------------------------------------------------------------------- /legal-api/gunicorn_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/gunicorn_server.py -------------------------------------------------------------------------------- /legal-api/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/manage.py -------------------------------------------------------------------------------- /legal-api/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /legal-api/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/alembic.ini -------------------------------------------------------------------------------- /legal-api/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/env.py -------------------------------------------------------------------------------- /legal-api/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/script.py.mako -------------------------------------------------------------------------------- /legal-api/migrations/versions/0fb2ae5711ed_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/0fb2ae5711ed_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/1215735c3563_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/1215735c3563_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/176f983485c8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/176f983485c8_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/1a8c89b722e2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/1a8c89b722e2_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/1f01b9303b81_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/1f01b9303b81_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/2e986c1d4de6_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/2e986c1d4de6_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/33501a263f32_sp_gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/33501a263f32_sp_gp.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/361b51b824c0_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/361b51b824c0_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/37acd517fe98_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/37acd517fe98_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/441a5e6cf682_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/441a5e6cf682_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/442829649a2a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/442829649a2a_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/4ee6f0abb797_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/4ee6f0abb797_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/5238dd8fb805_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/5238dd8fb805_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/52553d4d6309_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/52553d4d6309_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/54a3fc54a2cf_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/54a3fc54a2cf_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/5ad3243edc3e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/5ad3243edc3e_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/5e1faa8636c0_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/5e1faa8636c0_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/7575af513efb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/7575af513efb_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/7c86cc916b5c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/7c86cc916b5c_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/860bb6075dde_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/860bb6075dde_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/9147d4bc9939_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/9147d4bc9939_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/92c4974ce96f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/92c4974ce96f_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/94586877d4bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/94586877d4bc.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/94c2a694d51f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/94c2a694d51f_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/9741616ab6d7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/9741616ab6d7_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/98ccc973c01d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/98ccc973c01d_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/9a9ac165365e_cco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/9a9ac165365e_cco.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/9b5c719f32ef_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/9b5c719f32ef_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/a8f42b830d86_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/a8f42b830d86_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/ad21c1ed551e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/ad21c1ed551e_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/ad3ef106696c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/ad3ef106696c_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/b826412a6a65_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/b826412a6a65_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/b9165c3187fc_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/b9165c3187fc_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/bf94a1b46804_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/bf94a1b46804_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/c17d77b30bdb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/c17d77b30bdb_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/da43f7bef692_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/da43f7bef692_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/e6ed22dc70ca_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/e6ed22dc70ca_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/e6ff12b18bef_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/e6ff12b18bef_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/e85053684b3c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/e85053684b3c_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/ed12492e70f8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/ed12492e70f8_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/ee956cbf198a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/ee956cbf198a_.py -------------------------------------------------------------------------------- /legal-api/migrations/versions/f3fb008e7b83_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/migrations/versions/f3fb008e7b83_.py -------------------------------------------------------------------------------- /legal-api/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/poetry.lock -------------------------------------------------------------------------------- /legal-api/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /legal-api/pre-hook-update-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/pre-hook-update-db.sh -------------------------------------------------------------------------------- /legal-api/pre_hook_create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/pre_hook_create_database.py -------------------------------------------------------------------------------- /legal-api/prism.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/prism.sh -------------------------------------------------------------------------------- /legal-api/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/pyproject.toml -------------------------------------------------------------------------------- /legal-api/report-templates/alterationNotice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/alterationNotice.html -------------------------------------------------------------------------------- /legal-api/report-templates/annualReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/annualReport.html -------------------------------------------------------------------------------- /legal-api/report-templates/appointReceiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/appointReceiver.html -------------------------------------------------------------------------------- /legal-api/report-templates/bcAddressChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/bcAddressChange.html -------------------------------------------------------------------------------- /legal-api/report-templates/bcAnnualReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/bcAnnualReport.html -------------------------------------------------------------------------------- /legal-api/report-templates/bcDirectorChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/bcDirectorChange.html -------------------------------------------------------------------------------- /legal-api/report-templates/businessSummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/businessSummary.html -------------------------------------------------------------------------------- /legal-api/report-templates/ceaseReceiver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/ceaseReceiver.html -------------------------------------------------------------------------------- /legal-api/report-templates/certificateOfStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/certificateOfStatus.html -------------------------------------------------------------------------------- /legal-api/report-templates/changeOfAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/changeOfAddress.html -------------------------------------------------------------------------------- /legal-api/report-templates/changeOfDirectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/changeOfDirectors.html -------------------------------------------------------------------------------- /legal-api/report-templates/changeOfName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/changeOfName.html -------------------------------------------------------------------------------- /legal-api/report-templates/correction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/correction.html -------------------------------------------------------------------------------- /legal-api/report-templates/dissolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/dissolution.html -------------------------------------------------------------------------------- /legal-api/report-templates/dissolutionCover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/dissolutionCover.html -------------------------------------------------------------------------------- /legal-api/report-templates/firmCorrection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/firmCorrection.html -------------------------------------------------------------------------------- /legal-api/report-templates/intentToLiquidate.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legal-api/report-templates/letterOfConsent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/letterOfConsent.html -------------------------------------------------------------------------------- /legal-api/report-templates/letterUnderSeal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/letterUnderSeal.html -------------------------------------------------------------------------------- /legal-api/report-templates/noticeOfArticles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/noticeOfArticles.html -------------------------------------------------------------------------------- /legal-api/report-templates/noticeOfWithdrawal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/noticeOfWithdrawal.html -------------------------------------------------------------------------------- /legal-api/report-templates/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/registration.html -------------------------------------------------------------------------------- /legal-api/report-templates/restoration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/restoration.html -------------------------------------------------------------------------------- /legal-api/report-templates/specialResolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/specialResolution.html -------------------------------------------------------------------------------- /legal-api/report-templates/template-parts/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/report-templates/template-parts/logo.html -------------------------------------------------------------------------------- /legal-api/scripts/test_ratio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/scripts/test_ratio.sh -------------------------------------------------------------------------------- /legal-api/scripts/verify_license_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/scripts/verify_license_headers.sh -------------------------------------------------------------------------------- /legal-api/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legal-api/src/legal_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/config.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/constants.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/business.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/constants.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/filing.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/filing_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/filing_helper.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/meta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/meta/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/meta/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/meta/filing.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/core/utils.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/decorators.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/errorhandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/errorhandlers.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/errors.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/exceptions/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/logging.conf -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/address.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/alias.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/amalgamation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/amalgamation.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/authorized_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/authorized_role.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/batch.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/batch_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/batch_processing.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/business.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/colin_event_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/colin_event_id.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/colin_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/colin_update.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/comment.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/configuration.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/corp_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/corp_type.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/custom_db_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/custom_db_types.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/db.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/dc_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/dc_connection.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/dc_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/dc_credential.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/dc_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/dc_definition.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/document.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/filing.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/furnishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/furnishing.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/jurisdiction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/jurisdiction.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/naics_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/naics_element.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/office.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/office.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/party.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/party_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/party_class.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/party_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/party_role.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/permission.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/resolution.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/review.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/review_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/review_result.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/share_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/share_class.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/share_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/share_series.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/user.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/models/xml_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/models/xml_payload.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/reports/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/reports/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/reports/report.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/reports/report_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/reports/report_v2.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/constants.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/endpoints.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v1/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v1/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v1/meta.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v1/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v1/ops.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/admin/bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/admin/bp.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/document.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/meta.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/mras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/mras.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/resources/v2/naics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/resources/v2/naics.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/schemas.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/scripts/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/authz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/authz.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/bootstrap.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/cache.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/colin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/colin.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/flags.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/minio.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/mras_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/mras_service.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/naics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/naics.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/namex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/namex.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/pdf_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/pdf_service.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/permissions.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/services/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/services/utils.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/translations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/translations/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/__init__.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/auth.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/base.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/datetime.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/formatting.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/logging.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/run_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/run_version.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/utils/util.py -------------------------------------------------------------------------------- /legal-api/src/legal_api/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/src/legal_api/version.py -------------------------------------------------------------------------------- /legal-api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/conftest.py -------------------------------------------------------------------------------- /legal-api/tests/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/README.md -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/ajv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/ajv.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/aws4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/aws4.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/chai.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/cheerio.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/crypto-js.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/lodash.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/oauth-1.0a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/oauth-1.0a.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/papaparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/papaparse.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/cheerio.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/core.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/dynamic.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/expect.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/faker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/faker.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/full.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/lodash.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/shim/urijs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/shim/urijs.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/spo-gpo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/spo-gpo.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/urijs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/urijs.js -------------------------------------------------------------------------------- /legal-api/tests/performance/libs/xml2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/libs/xml2js.js -------------------------------------------------------------------------------- /legal-api/tests/performance/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/package-lock.json -------------------------------------------------------------------------------- /legal-api/tests/performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/performance/package.json -------------------------------------------------------------------------------- /legal-api/tests/pytest_marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/pytest_marks.py -------------------------------------------------------------------------------- /legal-api/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/conf/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/conf/test_alembic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/conf/test_alembic.py -------------------------------------------------------------------------------- /legal-api/tests/unit/conf/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/conf/test_configuration.py -------------------------------------------------------------------------------- /legal-api/tests/unit/conf/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/conf/test_version.py -------------------------------------------------------------------------------- /legal-api/tests/unit/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/core/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/core/test_business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/core/test_business.py -------------------------------------------------------------------------------- /legal-api/tests/unit/core/test_filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/core/test_filing.py -------------------------------------------------------------------------------- /legal-api/tests/unit/core/test_filing_ledger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/core/test_filing_ledger.py -------------------------------------------------------------------------------- /legal-api/tests/unit/core/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/core/test_utils.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_address.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_alias.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_amalgamation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_amalgamation.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_batch.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_business.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_colin_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_colin_update.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_comments.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_corp_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_corp_type.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_document.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_filing.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_filing_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_filing_lock.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_furnishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_furnishing.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_jurisdiction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_jurisdiction.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_party.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_party_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_party_class.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_party_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_party_role.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_permission.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_resolution.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_review.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_share_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_share_class.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_share_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_share_series.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_user.py -------------------------------------------------------------------------------- /legal-api/tests/unit/models/test_xml_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/models/test_xml_payload.py -------------------------------------------------------------------------------- /legal-api/tests/unit/reports/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/reports/test_report.py -------------------------------------------------------------------------------- /legal-api/tests/unit/reports/test_report_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/reports/test_report_v2.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v1/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v1/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v1/test_meta.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v1/test_oas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v1/test_oas.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v1/test_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v1/test_ops.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v2/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v2/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v2/test_meta.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v2/test_mras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v2/test_mras.py -------------------------------------------------------------------------------- /legal-api/tests/unit/resources/v2/test_naics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/resources/v2/test_naics.py -------------------------------------------------------------------------------- /legal-api/tests/unit/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/services/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/services/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/services/test_flags.py -------------------------------------------------------------------------------- /legal-api/tests/unit/services/test_minio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/services/test_minio.py -------------------------------------------------------------------------------- /legal-api/tests/unit/services/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/services/utils.py -------------------------------------------------------------------------------- /legal-api/tests/unit/services/warnings/business/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legal-api/tests/unit/services/warnings/business/business_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legal-api/tests/unit/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/test_decorators.py -------------------------------------------------------------------------------- /legal-api/tests/unit/test_error_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/test_error_handlers.py -------------------------------------------------------------------------------- /legal-api/tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/utils/__init__.py -------------------------------------------------------------------------------- /legal-api/tests/unit/utils/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/utils/logging.conf -------------------------------------------------------------------------------- /legal-api/tests/unit/utils/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/utils/test_datetime.py -------------------------------------------------------------------------------- /legal-api/tests/unit/utils/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/utils/test_logging.py -------------------------------------------------------------------------------- /legal-api/tests/unit/utils/test_util_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/tests/unit/utils/test_util_cors.py -------------------------------------------------------------------------------- /legal-api/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/legal-api/wsgi.py -------------------------------------------------------------------------------- /oracle/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/ReadMe.md -------------------------------------------------------------------------------- /oracle/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/Dockerfile -------------------------------------------------------------------------------- /oracle/dev/bin/configDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/configDB2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/configDBora2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/configDBora2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/dockerInit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/dockerInit2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/setupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/setupDB2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/shutDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/shutDB2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/sleep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 300 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /oracle/dev/bin/startupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/startupDB2.sh -------------------------------------------------------------------------------- /oracle/dev/bin/uid_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/uid_entrypoint -------------------------------------------------------------------------------- /oracle/dev/bin/untarDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/dev/bin/untarDB2.sh -------------------------------------------------------------------------------- /oracle/e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/Dockerfile -------------------------------------------------------------------------------- /oracle/e2e/bin/configDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/configDB2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/configDBora2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/configDBora2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/dockerInit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/dockerInit2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/setupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/setupDB2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/shutDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/shutDB2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/sleep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 300 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /oracle/e2e/bin/startupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/startupDB2.sh -------------------------------------------------------------------------------- /oracle/e2e/bin/uid_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/uid_entrypoint -------------------------------------------------------------------------------- /oracle/e2e/bin/untarDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/e2e/bin/untarDB2.sh -------------------------------------------------------------------------------- /oracle/openshift/oracle-startup-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/openshift/oracle-startup-pipeline.yaml -------------------------------------------------------------------------------- /oracle/openshift/oracleDeploymentConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/openshift/oracleDeploymentConfig.yaml -------------------------------------------------------------------------------- /oracle/prod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/Dockerfile -------------------------------------------------------------------------------- /oracle/prod/bin/configDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/configDB2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/configDBora2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/configDBora2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/dockerInit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/dockerInit2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/setupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/setupDB2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/shutDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/shutDB2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/sleep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 300 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /oracle/prod/bin/startupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/startupDB2.sh -------------------------------------------------------------------------------- /oracle/prod/bin/uid_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/uid_entrypoint -------------------------------------------------------------------------------- /oracle/prod/bin/untarDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/prod/bin/untarDB2.sh -------------------------------------------------------------------------------- /oracle/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/Dockerfile -------------------------------------------------------------------------------- /oracle/test/bin/configDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/configDB2.sh -------------------------------------------------------------------------------- /oracle/test/bin/configDBora2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/configDBora2.sh -------------------------------------------------------------------------------- /oracle/test/bin/dockerInit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/dockerInit2.sh -------------------------------------------------------------------------------- /oracle/test/bin/setupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/setupDB2.sh -------------------------------------------------------------------------------- /oracle/test/bin/shutDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/shutDB2.sh -------------------------------------------------------------------------------- /oracle/test/bin/sleep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 300 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /oracle/test/bin/startupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/startupDB2.sh -------------------------------------------------------------------------------- /oracle/test/bin/uid_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/uid_entrypoint -------------------------------------------------------------------------------- /oracle/test/bin/untarDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/test/bin/untarDB2.sh -------------------------------------------------------------------------------- /oracle/tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/Dockerfile -------------------------------------------------------------------------------- /oracle/tools/bin/configDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/configDB2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/configDBora2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/configDBora2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/dockerInit2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/dockerInit2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/setupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/setupDB2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/shutDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/shutDB2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/sleep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 300 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /oracle/tools/bin/startupDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/startupDB2.sh -------------------------------------------------------------------------------- /oracle/tools/bin/uid_entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/uid_entrypoint -------------------------------------------------------------------------------- /oracle/tools/bin/untarDB2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/oracle/tools/bin/untarDB2.sh -------------------------------------------------------------------------------- /python/common/business-registry-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/business-registry-common/README.md -------------------------------------------------------------------------------- /python/common/business-registry-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/business-registry-model/README.md -------------------------------------------------------------------------------- /python/common/business-registry-model/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/business-registry-model/app.py -------------------------------------------------------------------------------- /python/common/business-registry-model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/business-registry-model/config.py -------------------------------------------------------------------------------- /python/common/business-registry-model/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/business-registry-model/dev.txt -------------------------------------------------------------------------------- /python/common/business-registry-model/poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /python/common/business-registry-model/src/business_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/common/business-registry-model/src/business_model_migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /python/common/business-registry-model/src/business_model_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/common/business-registry-model/src/business_model_migrations/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/common/document-record-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/document-record-service/README.md -------------------------------------------------------------------------------- /python/common/sql-versioning-alt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning-alt/README.md -------------------------------------------------------------------------------- /python/common/sql-versioning-alt/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning-alt/poetry.lock -------------------------------------------------------------------------------- /python/common/sql-versioning-alt/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning-alt/pyproject.toml -------------------------------------------------------------------------------- /python/common/sql-versioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning/README.md -------------------------------------------------------------------------------- /python/common/sql-versioning/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning/poetry.lock -------------------------------------------------------------------------------- /python/common/sql-versioning/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning/pyproject.toml -------------------------------------------------------------------------------- /python/common/sql-versioning/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning/tests/__init__.py -------------------------------------------------------------------------------- /python/common/sql-versioning/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/python/common/sql-versioning/tests/conftest.py -------------------------------------------------------------------------------- /queue_services/business-bn/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/.dockerignore -------------------------------------------------------------------------------- /queue_services/business-bn/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/.env.sample -------------------------------------------------------------------------------- /queue_services/business-bn/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/.gcloudignore -------------------------------------------------------------------------------- /queue_services/business-bn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/Dockerfile -------------------------------------------------------------------------------- /queue_services/business-bn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/LICENSE -------------------------------------------------------------------------------- /queue_services/business-bn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/Makefile -------------------------------------------------------------------------------- /queue_services/business-bn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/README.md -------------------------------------------------------------------------------- /queue_services/business-bn/devops/vaults.gcp.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/devops/vaults.gcp.env -------------------------------------------------------------------------------- /queue_services/business-bn/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/docker-compose.yml -------------------------------------------------------------------------------- /queue_services/business-bn/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/gunicorn_config.py -------------------------------------------------------------------------------- /queue_services/business-bn/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/poetry.lock -------------------------------------------------------------------------------- /queue_services/business-bn/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/pyproject.toml -------------------------------------------------------------------------------- /queue_services/business-bn/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/tests/__init__.py -------------------------------------------------------------------------------- /queue_services/business-bn/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/tests/conftest.py -------------------------------------------------------------------------------- /queue_services/business-bn/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-bn/wsgi.py -------------------------------------------------------------------------------- /queue_services/business-emailer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/.dockerignore -------------------------------------------------------------------------------- /queue_services/business-emailer/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/.env.sample -------------------------------------------------------------------------------- /queue_services/business-emailer/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/.gcloudignore -------------------------------------------------------------------------------- /queue_services/business-emailer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/Dockerfile -------------------------------------------------------------------------------- /queue_services/business-emailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/LICENSE -------------------------------------------------------------------------------- /queue_services/business-emailer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/Makefile -------------------------------------------------------------------------------- /queue_services/business-emailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/README.md -------------------------------------------------------------------------------- /queue_services/business-emailer/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/flags.json -------------------------------------------------------------------------------- /queue_services/business-emailer/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /queue_services/business-emailer/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/poetry.lock -------------------------------------------------------------------------------- /queue_services/business-emailer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/pyproject.toml -------------------------------------------------------------------------------- /queue_services/business-emailer/src/business_emailer/email_templates/common/divider.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /queue_services/business-emailer/src/business_emailer/meta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /queue_services/business-emailer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-emailer/wsgi.py -------------------------------------------------------------------------------- /queue_services/business-filer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/.dockerignore -------------------------------------------------------------------------------- /queue_services/business-filer/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/.envrc -------------------------------------------------------------------------------- /queue_services/business-filer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/Dockerfile -------------------------------------------------------------------------------- /queue_services/business-filer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/LICENSE -------------------------------------------------------------------------------- /queue_services/business-filer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/Makefile -------------------------------------------------------------------------------- /queue_services/business-filer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/README.md -------------------------------------------------------------------------------- /queue_services/business-filer/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/flags.json -------------------------------------------------------------------------------- /queue_services/business-filer/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/gunicorn_config.py -------------------------------------------------------------------------------- /queue_services/business-filer/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/poetry.lock -------------------------------------------------------------------------------- /queue_services/business-filer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/pyproject.toml -------------------------------------------------------------------------------- /queue_services/business-filer/src/business_filer/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /queue_services/business-filer/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/tests/__init__.py -------------------------------------------------------------------------------- /queue_services/business-filer/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/tests/conftest.py -------------------------------------------------------------------------------- /queue_services/business-filer/tests/unit/test_container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /queue_services/business-filer/tests/unit/test_publish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /queue_services/business-filer/tests/unit/test_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /queue_services/business-filer/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/tests/utils.py -------------------------------------------------------------------------------- /queue_services/business-filer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-filer/wsgi.py -------------------------------------------------------------------------------- /queue_services/business-pay/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/.dockerignore -------------------------------------------------------------------------------- /queue_services/business-pay/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/.gcloudignore -------------------------------------------------------------------------------- /queue_services/business-pay/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/.vscode/launch.json -------------------------------------------------------------------------------- /queue_services/business-pay/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/Dockerfile -------------------------------------------------------------------------------- /queue_services/business-pay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/LICENSE -------------------------------------------------------------------------------- /queue_services/business-pay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/Makefile -------------------------------------------------------------------------------- /queue_services/business-pay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/README.md -------------------------------------------------------------------------------- /queue_services/business-pay/flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/flags.json -------------------------------------------------------------------------------- /queue_services/business-pay/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/gunicorn_config.py -------------------------------------------------------------------------------- /queue_services/business-pay/k8s/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/k8s/Readme.md -------------------------------------------------------------------------------- /queue_services/business-pay/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/logging.conf -------------------------------------------------------------------------------- /queue_services/business-pay/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/poetry.lock -------------------------------------------------------------------------------- /queue_services/business-pay/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/pyproject.toml -------------------------------------------------------------------------------- /queue_services/business-pay/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/tests/__init__.py -------------------------------------------------------------------------------- /queue_services/business-pay/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/tests/conftest.py -------------------------------------------------------------------------------- /queue_services/business-pay/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/business-pay/wsgi.py -------------------------------------------------------------------------------- /queue_services/common/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/.envrc -------------------------------------------------------------------------------- /queue_services/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/LICENSE -------------------------------------------------------------------------------- /queue_services/common/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/MANIFEST.in -------------------------------------------------------------------------------- /queue_services/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/Makefile -------------------------------------------------------------------------------- /queue_services/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/README.md -------------------------------------------------------------------------------- /queue_services/common/example_service_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/example_service_runner.py -------------------------------------------------------------------------------- /queue_services/common/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/requirements.txt -------------------------------------------------------------------------------- /queue_services/common/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/requirements/dev.txt -------------------------------------------------------------------------------- /queue_services/common/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/requirements/prod.txt -------------------------------------------------------------------------------- /queue_services/common/requirements/repo-libraries.txt: -------------------------------------------------------------------------------- 1 | # placeholder 2 | -------------------------------------------------------------------------------- /queue_services/common/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/setup.cfg -------------------------------------------------------------------------------- /queue_services/common/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/setup.py -------------------------------------------------------------------------------- /queue_services/common/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/__init__.py -------------------------------------------------------------------------------- /queue_services/common/tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/config.py -------------------------------------------------------------------------------- /queue_services/common/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/conftest.py -------------------------------------------------------------------------------- /queue_services/common/tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/docker-compose.yml -------------------------------------------------------------------------------- /queue_services/common/tests/integration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/integration/utils.py -------------------------------------------------------------------------------- /queue_services/common/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/unit/__init__.py -------------------------------------------------------------------------------- /queue_services/common/tests/unit/test_probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/unit/test_probes.py -------------------------------------------------------------------------------- /queue_services/common/tests/unit/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/unit/test_service.py -------------------------------------------------------------------------------- /queue_services/common/tests/unit/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/common/tests/unit/test_version.py -------------------------------------------------------------------------------- /queue_services/entity-digital-credentials/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/queue_services/entity-digital-credentials/.envrc -------------------------------------------------------------------------------- /scripts/1pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/scripts/1pass.sh -------------------------------------------------------------------------------- /scripts/install_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/scripts/install_tools.sh -------------------------------------------------------------------------------- /scripts/sandbox.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/scripts/sandbox.sql -------------------------------------------------------------------------------- /support/notebooks/business-ops/img/legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/support/notebooks/business-ops/img/legal.png -------------------------------------------------------------------------------- /support/notebooks/business-ops/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/support/notebooks/business-ops/requirements.txt -------------------------------------------------------------------------------- /support/notebooks/business-ops/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/support/notebooks/business-ops/run.sh -------------------------------------------------------------------------------- /support/notebooks/business-ops/save_to_markdown.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /tests/data/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /tests/data/Filing_Issues.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/Filing_Issues.ipynb -------------------------------------------------------------------------------- /tests/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/README.md -------------------------------------------------------------------------------- /tests/data/XXXX_load_COOP-CPXXXXX.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/XXXX_load_COOP-CPXXXXX.ipynb -------------------------------------------------------------------------------- /tests/data/common/auth_api_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/auth_api_utils.ipynb -------------------------------------------------------------------------------- /tests/data/common/colin_api_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/colin_api_utils.ipynb -------------------------------------------------------------------------------- /tests/data/common/legal_api_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/legal_api_utils.ipynb -------------------------------------------------------------------------------- /tests/data/common/naics_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/naics_utils.ipynb -------------------------------------------------------------------------------- /tests/data/common/namex_api_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/namex_api_utils.ipynb -------------------------------------------------------------------------------- /tests/data/common/utility.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/common/utility.ipynb -------------------------------------------------------------------------------- /tests/data/data/pdfs/valid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/data/pdfs/valid.pdf -------------------------------------------------------------------------------- /tests/data/default-bcr-business-setup-TEST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/default-bcr-business-setup-TEST.ipynb -------------------------------------------------------------------------------- /tests/data/misc/backfill_user_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/misc/backfill_user_data.ipynb -------------------------------------------------------------------------------- /tests/data/nr/XXXX_create_nr_XXXXX.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/nr/XXXX_create_nr_XXXXX.ipynb -------------------------------------------------------------------------------- /tests/data/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/lear/HEAD/tests/data/requirements.txt -------------------------------------------------------------------------------- /tests/data/run.sh: -------------------------------------------------------------------------------- 1 | /usr/local/bin/start-notebook.sh --------------------------------------------------------------------------------