diff --git a/package-lock.json b/package-lock.json index bc686d8d2..fb7786a0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "business-filings-ui", - "version": "7.0.30", + "version": "7.0.31", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "business-filings-ui", - "version": "7.0.30", + "version": "7.0.31", "dependencies": { "@babel/compat-data": "^7.21.5", "@bcrs-shared-components/base-address": "2.0.9", diff --git a/package.json b/package.json index cb87dceb8..4bcbbcdef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "business-filings-ui", - "version": "7.0.30", + "version": "7.0.31", "private": true, "appName": "Filings UI", "sbcName": "SBC Common Components", diff --git a/src/interfaces/api-filing-interface.ts b/src/interfaces/api-filing-interface.ts index 63180bf7f..a1cf64331 100644 --- a/src/interfaces/api-filing-interface.ts +++ b/src/interfaces/api-filing-interface.ts @@ -12,6 +12,7 @@ export interface ApiFilingIF { commentsCount: number commentsLink: string // URL to fetch this filing's comments displayName: string + displayLedger: boolean // Display on the ledger documentsLink: string // URL to fetch this filing's documents effectiveDate: FormattedDateTimeGmt filingId: number diff --git a/src/stores/filingHistoryListStore.ts b/src/stores/filingHistoryListStore.ts index d63a1f47f..e33608219 100644 --- a/src/stores/filingHistoryListStore.ts +++ b/src/stores/filingHistoryListStore.ts @@ -33,6 +33,10 @@ export const useFilingHistoryListStore = defineStore('filingHistoryList', { // eslint-disable-next-line no-console console.log('Invalid filing =', filing) return false + } else if (!filing.displayLedger) { + // eslint-disable-next-line no-console + console.log('Not shown filing on the ledger =', filing) + return false } return true }) diff --git a/tests/unit/EntityHeader.spec.ts b/tests/unit/EntityHeader.spec.ts index 38b33840f..a737536a5 100644 --- a/tests/unit/EntityHeader.spec.ts +++ b/tests/unit/EntityHeader.spec.ts @@ -170,6 +170,7 @@ describe('Entity Header - data', () => { rootStore.setTasks([]) filingHistoryListStore.setFilings([ { + displayLedger: true, displayName: 'BC Limited Company Amalgamation Application - Regular', effectiveDate: '2019-06-02 19:22:59 GMT', name: FilingTypes.AMALGAMATION_APPLICATION, @@ -197,6 +198,7 @@ describe('Entity Header - data', () => { rootStore.setTasks([]) filingHistoryListStore.setFilings([ { + displayLedger: true, displayName: 'BC Limited Company Amalgamation Application - Regular', effectiveDate: '2019-06-02 19:22:59 GMT', name: FilingTypes.AMALGAMATION_APPLICATION, @@ -224,6 +226,7 @@ describe('Entity Header - data', () => { rootStore.setTasks([]) filingHistoryListStore.setFilings([ { + displayLedger: true, displayName: 'BC Limited Company Amalgamation Application - Regular', effectiveDate: '2019-06-02 19:22:59 GMT', name: FilingTypes.AMALGAMATION_APPLICATION, @@ -251,6 +254,7 @@ describe('Entity Header - data', () => { rootStore.setTasks([]) filingHistoryListStore.setFilings([ { + displayLedger: true, displayName: 'BC Limited Company Amalgamation Application - Regular', effectiveDate: '2019-06-02 19:22:59 GMT', name: FilingTypes.AMALGAMATION_APPLICATION, diff --git a/tests/unit/FilingHistoryList1.spec.ts b/tests/unit/FilingHistoryList1.spec.ts index e0e6d0fd4..bc251f9c0 100644 --- a/tests/unit/FilingHistoryList1.spec.ts +++ b/tests/unit/FilingHistoryList1.spec.ts @@ -49,6 +49,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 111, @@ -62,6 +63,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 2, + displayLedger: true, displayName: 'Change of Address', // Effective Date is way in the future so it's always > now effectiveDate: '2099-12-13 08:00:00 GMT', // Dec 13, 2099 at 00:00:00 am Pacific @@ -122,6 +124,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 111, @@ -135,6 +138,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Change of Directors', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 222, @@ -148,6 +152,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Change of Address', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 333, @@ -161,6 +166,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: true, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 444, @@ -174,6 +180,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: true, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Change of Directors', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 555, @@ -187,6 +194,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: true, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Change of Address', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 666, @@ -218,6 +226,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: true, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Change of Directors', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 222, @@ -269,6 +278,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 111, @@ -323,6 +333,7 @@ describe('Filing History List - misc functionality', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Full Restoration Application', effectiveDate: '2019-11-20 22:17:54 GMT', filingId: 111, @@ -389,6 +400,7 @@ describe('Filing History List - misc functionality', () => { legalName: 'BC1234567 LTD.' } } as any, + displayLedger: true, displayName: 'Limited Restoration Application', documentsLink: 'http://test', effectiveDate: '2019-11-20 22:17:54 GMT', @@ -605,6 +617,66 @@ describe('Filing History List - misc functionality', () => { businessStore.setLegalType(CorpTypeCd.COOP) expect(vm.disableCorrection({ ...item, name: 'registration' })).toBe(true) }) + + it('displays multiple filing items, and remove the filing that displayLedger is false', async () => { + // init store + businessStore.setIdentifier('CP0001191') + filingHistoryListStore.setFilings([ + { + availableOnPaperOnly: false, + businessIdentifier: 'CP0001191', + commentsCount: 0, + displayLedger: true, + displayName: 'Annual Report', + effectiveDate: '2019-11-20 22:17:54 GMT', + filingId: 111, + isFutureEffective: false, + name: FilingTypes.ANNUAL_REPORT, + status: FilingStatus.COMPLETED, + submittedDate: 'Tue, 02 July 2019 12:00:00 GMT', + submitter: 'Submitter 1' + } as any, + { + availableOnPaperOnly: false, + businessIdentifier: 'BC0001191', + commentsCount: 0, + displayLedger: true, + displayName: 'Benefit Company Incorporation Application - ACME Benefit Inc', + effectiveDate: '2019-11-20 22:17:54 GMT', + filingId: 222, + isFutureEffective: false, + name: FilingTypes.INCORPORATION_APPLICATION, + status: FilingStatus.COMPLETED, + submittedDate: 'Thu, 04 Apr 2019 12:00:00 GMT', + submitter: 'Submitter 2' + }, + { + availableOnPaperOnly: false, + businessIdentifier: 'CP0001191', + commentsCount: 0, + displayLedger: false, + displayName: 'Admin Freeze', + effectiveDate: '2019-11-20 22:17:54 GMT', + filingId: 333, + isFutureEffective: false, + name: FilingTypes.ADMIN_FREEZE, + status: FilingStatus.COMPLETED, + submittedDate: 'Mon, 06 May 2019 12:00:00 GMT', + submitter: 'Submitter 3' + } + ]) + + const wrapper = mount(FilingHistoryList, { vuetify }) + const vm = wrapper.vm as any + await Vue.nextTick() + + expect(vm.getFilings.length).toEqual(2) + expect(wrapper.findAll('.default-filing').length).toEqual(1) + expect(wrapper.findAll('.incorporation-application').length).toEqual(1) + expect(wrapper.find('.no-results').exists()).toBe(false) + + wrapper.destroy() + }) }) describe('Filing History List - redirections', () => { @@ -911,6 +983,7 @@ describe('Filing History List - redirections', () => { availableOnPaperOnly: false, businessIdenfier: 'CP1002587', commentsCount: 0, + displayLedger: true, displayName: 'Special Resolution', effectiveDate: 'Wed, 24 May 2023 18:02:16 GMT', filingId: 145190, @@ -983,6 +1056,7 @@ describe('Filing History List - redirections', () => { availableOnPaperOnly: false, businessIdenfier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Incorporation Application', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1053,6 +1127,7 @@ describe('Filing History List - redirections', () => { availableOnPaperOnly: false, businessIdenfier: 'CP1002587', commentsCount: 0, + displayLedger: true, displayName: 'Incorporation Application', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1139,6 +1214,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'BC Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1180,6 +1256,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'BC Benefit Company Incorporation Application - Numbered Benefit Company', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1221,6 +1298,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'BC Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2099-12-31 23:59:59 GMT', // way in the future so it's always > now filingId: 85114, @@ -1284,6 +1362,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'BC Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1347,6 +1426,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1409,6 +1489,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2099-12-31 23:59:59 GMT', // way in the future so it's always > now filingId: 85114, @@ -1471,6 +1552,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'T123456789', commentsCount: 0, + displayLedger: true, displayName: 'Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1533,6 +1615,7 @@ describe('Filing History List - incorporation applications', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Benefit Company Incorporation Application - ACME Benefit Inc', effectiveDate: '2020-05-06 19:00:00 GMT', // past date filingId: 85114, @@ -1613,6 +1696,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: true, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report (2017)', effectiveDate: '2017-03-24 19:20:05 GMT', filingId: 85114, @@ -1665,6 +1749,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Alteration - Change of Company Information', effectiveDate: '2020-03-24 19:20:05 GMT', filingId: 85114, @@ -1725,6 +1810,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Alteration from a BC Limited Company to a BC Benefit Company', effectiveDate: '2099-12-31 23:59:59 GMT', // way in the future so it's always > now filingId: 85114, @@ -1790,6 +1876,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Alteration from a BC Limited Company to a BC Benefit Company', effectiveDate: '2020-04-24 19:20:05 GMT', // past date filingId: 85114, @@ -1855,6 +1942,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Alteration from a BC Limited Company to a BC Benefit Company', effectiveDate: '2020-03-24 19:20:05 GMT', filingId: 85114, @@ -1919,6 +2007,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Registrar\'s Notation', effectiveDate: '2021-05-05 20:37:44 GMT', filingId: 123, @@ -1975,6 +2064,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Registrar\'s Order', effectiveDate: '2021-05-05 20:37:44 GMT', filingId: 123, @@ -2031,6 +2121,7 @@ describe('Filing History List - paper only and other filings', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Court Order', effectiveDate: '2021-05-05 20:37:44 GMT', filingId: 123, @@ -2087,6 +2178,7 @@ describe('Filing History List - with Court Order documents', () => { availableOnPaperOnly: false, businessIdentifier: 'BC0871300', commentsCounts: 0, + displayLedger: true, displayName: 'Court Order 17321728', documentsLink: 'businesses/BC0871300/filings/111/documents', effectiveDate: '2019-12-13 00:00:00 GMT', @@ -2174,6 +2266,7 @@ describe('Filing History List - with documents', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCounts: 0, + displayLedger: true, displayName: 'Annual Report (2019)', documentsLink: 'businesses/CP0001191/filings/111/documents', effectiveDate: '2019-12-13 00:00:00 GMT', @@ -2309,6 +2402,7 @@ describe('Filing History List - detail comments', () => { businessIdentifier: 'CP0001191', commentsCount: 2, commentsLink: 'businesses/CP0001191/filings/111/comments', + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 111, @@ -2326,6 +2420,7 @@ describe('Filing History List - detail comments', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 0, + displayLedger: true, displayName: 'Annual Report', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 111, @@ -2353,6 +2448,7 @@ describe('Filing History List - detail comments', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCount: 2, + displayLedger: true, displayName: 'Change of Address', // Effective Date is way in the future so it's always > now effectiveDate: '2099-12-13 08:00:00 GMT', // Dec 13, 2099 at 00:00:00 am Pacific @@ -2457,6 +2553,7 @@ describe('Filing History List - without documents', () => { availableOnPaperOnly: false, businessIdentifier: 'CP0001191', commentsCounts: 0, + displayLedger: true, displayName: 'Involuntary Dissolution', effectiveDate: '2019-12-13 00:00:00 GMT', filingId: 111, @@ -2491,6 +2588,7 @@ describe('Filing History List - expands Consent to Continue Out', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: '6-Month Consent to Continue Out', effectiveDate: '2022-11-20 22:17:54 GMT', filingId: 111, @@ -2537,6 +2635,7 @@ describe('Filing History List - expands Continuation Out', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'Continuation Out', effectiveDate: '2022-11-20 22:17:54 GMT', filingId: 111, @@ -2583,6 +2682,7 @@ describe('Filing History List - expands AGM Location Change', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'AGM Location Change', effectiveDate: '2022-11-20 22:17:54 GMT', filingId: 111, @@ -2629,6 +2729,7 @@ describe('Filing History List - expands AGM Extension', () => { availableOnPaperOnly: false, businessIdentifier: 'BC1234567', commentsCount: 0, + displayLedger: true, displayName: 'AGM Extension', effectiveDate: '2022-11-20 22:17:54 GMT', filingId: 111, diff --git a/tests/unit/LegalObligation.spec.ts b/tests/unit/LegalObligation.spec.ts index d6cd9f2ed..132088057 100644 --- a/tests/unit/LegalObligation.spec.ts +++ b/tests/unit/LegalObligation.spec.ts @@ -22,6 +22,7 @@ const rootStore = useRootStore() const newIncorporationFiling = [ { availableOnPaperOnly: false, + displayLedger: true, displayName: 'Incorporation Application', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 123, @@ -36,6 +37,7 @@ const newIncorporationFiling = [ const newRegistrationFiling = [ { availableOnPaperOnly: false, + displayLedger: true, displayName: 'Registration', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 123, @@ -50,6 +52,7 @@ const newRegistrationFiling = [ const businessWithMaintenanceFiling = [ { availableOnPaperOnly: false, + displayLedger: true, displayName: 'Incorporation Application', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 123, @@ -61,6 +64,7 @@ const businessWithMaintenanceFiling = [ }, { availableOnPaperOnly: false, + displayLedger: true, displayName: 'Annual Report (2019)', effectiveDate: '2019-06-02 19:22:59 GMT', filingId: 456, diff --git a/tests/unit/filings.json b/tests/unit/filings.json index 4ce2b2d8a..734e614ee 100644 --- a/tests/unit/filings.json +++ b/tests/unit/filings.json @@ -12,6 +12,7 @@ "incorporationApplication" ] }, + "displayLedger": true, "displayName": "Incorporation Application", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112760/documents", "effectiveDate": "Fri, 01 Nov 2019 00:02:26 GMT", @@ -36,6 +37,7 @@ "F.18" ] }, + "displayLedger": true, "displayName": "F.18", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112759/documents", "effectiveDate": "Tue, 01 Oct 2019 00:02:26 GMT", @@ -59,6 +61,7 @@ ], "specialResolution": {} }, + "displayLedger": true, "displayName": "Special Resolution", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112758/documents", "effectiveDate": "Sun, 01 Sep 2019 00:02:26 GMT", @@ -91,6 +94,7 @@ "orderDetails": "A note about order" } }, + "displayLedger": true, "displayName": "Alteration", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112763/documents", "effectiveDate": "Fri, 15 Feb 2019 00:02:26 GMT", @@ -123,6 +127,7 @@ "orderDetails": "different order details" } }, + "displayLedger": true, "displayName": "Alteration", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112762/documents", "effectiveDate": "Tue, 01 Jan 2019 00:02:26 GMT", @@ -141,6 +146,7 @@ "commentsCount": 0, "commentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112761/comments", "data": {}, + "displayLedger": true, "displayName": "Alteration", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112761/documents", "effectiveDate": "Sat, 01 Dec 2018 00:02:26 GMT", @@ -165,6 +171,7 @@ "correction" ] }, + "displayLedger": true, "displayName": "Correction - Annual Report (2018)", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112757/documents", "effectiveDate": "Thu, 01 Nov 2018 00:02:26 GMT", @@ -195,6 +202,7 @@ "changeOfDirectors" ] }, + "displayLedger": true, "displayName": "Annual Report (2018) - Corrected", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112756/documents", "effectiveDate": "Mon, 01 Oct 2018 00:02:26 GMT", @@ -218,6 +226,7 @@ ], "registrarsOrder": {} }, + "displayLedger": true, "displayName": "Registrar's Order", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112755/documents", "effectiveDate": "Wed, 01 Aug 2018 00:02:26 GMT", @@ -241,6 +250,7 @@ ], "registrarsNotation": {} }, + "displayLedger": true, "displayName": "Registrar's Notation", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112754/documents", "effectiveDate": "Sun, 01 Jul 2018 00:02:26 GMT", @@ -269,6 +279,7 @@ "orderDetails": "my order details" } }, + "displayLedger": true, "displayName": "Court Order", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112753/documents", "effectiveDate": "Fri, 01 Jun 2018 00:02:26 GMT", @@ -292,6 +303,7 @@ ], "transition": {} }, + "displayLedger": true, "displayName": "Transition Application", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112752/documents", "effectiveDate": "Tue, 01 May 2018 00:02:26 GMT", @@ -317,6 +329,7 @@ "dissolution" ] }, + "displayLedger": true, "displayName": "Dissolution", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112751/documents", "effectiveDate": "Sun, 01 Apr 2018 00:02:26 GMT", @@ -340,6 +353,7 @@ ], "specialResolution": {} }, + "displayLedger": true, "displayName": "Special Resolution", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112750/documents", "effectiveDate": "Thu, 01 Mar 2018 00:02:26 GMT", @@ -363,6 +377,7 @@ "conversion" ] }, + "displayLedger": true, "displayName": "Conversion", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112749/documents", "effectiveDate": "Thu, 01 Feb 2018 00:02:26 GMT", @@ -389,6 +404,7 @@ "annualReport" ] }, + "displayLedger": true, "displayName": "Annual Report (2018)", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112748/documents", "effectiveDate": "Mon, 01 Jan 2018 00:02:26 GMT", @@ -412,6 +428,7 @@ "changeOfDirectors" ] }, + "displayLedger": true, "displayName": "Director Change", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112747/documents", "effectiveDate": "Fri, 01 Dec 2017 00:02:26 GMT", @@ -435,6 +452,7 @@ "changeOfAddress" ] }, + "displayLedger": true, "displayName": "Address Change", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112746/documents", "effectiveDate": "Wed, 01 Nov 2017 00:02:26 GMT", @@ -459,6 +477,7 @@ "incorporationApplication" ] }, + "displayLedger": true, "displayName": "Incorporation Application", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112744/documents", "effectiveDate": "Sun, 01 Oct 2017 00:02:26 GMT", @@ -491,6 +510,7 @@ "orderDetails": "A note about order" } }, + "displayLedger": true, "displayName": "Alteration", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112745/documents", "effectiveDate": "Sun, 01 Oct 2017 00:02:26 GMT", @@ -516,6 +536,7 @@ "dissolution" ] }, + "displayLedger": true, "displayName": "Administrative Dissolution", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112756/documents", "effectiveDate": "Sun, 01 Apr 2018 00:02:26 GMT", @@ -543,6 +564,7 @@ "consentContinuationOut" ] }, + "displayLedger": true, "displayName": "6-Month Consent to Continue Out", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/CP0000840/filings/112756/documents", "effectiveDate": "Fri, 03 Feb 2023 18:52:00 GMT", @@ -568,6 +590,7 @@ "amalgamation" ] }, + "displayLedger": true, "displayName": "Amalgamation Application - Regular", "documentsLink": "https://legal-api-dev.apps.silver.devops.gov.bc.ca/api/v2/businesses/BC1234567/filings/112751/documents", "effectiveDate": "Fri, 03 Feb 2023 18:52:00 GMT",