diff --git a/package-lock.json b/package-lock.json index 4ada802..9ceb80b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@navikt/bedriftsmeny", - "version": "6.13.1", + "version": "6.13.2.rc0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@navikt/bedriftsmeny", - "version": "6.13.1", + "version": "6.13.2.rc0", "license": "MIT", "dependencies": { "focus-trap-react": "^10.2.2", diff --git a/package.json b/package.json index 8d84c3c..2f4e5ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@navikt/bedriftsmeny", - "version": "6.13.1", + "version": "6.13.2.rc0", "description": "Bedriftsvelger og -meny for innlogget arbeidsgiver. Laget av TAG (Tjenester for Arbeidsgivere).", "author": "NAVIKT", "license": "MIT", diff --git a/src/bedriftsmeny/organisasjon.ts b/src/bedriftsmeny/organisasjon.ts index 4617f55..c373b22 100644 --- a/src/bedriftsmeny/organisasjon.ts +++ b/src/bedriftsmeny/organisasjon.ts @@ -1,9 +1,7 @@ export interface Organisasjon { Name: string; - Type: string; OrganizationNumber: string; OrganizationForm: string; - Status: string; ParentOrganizationNumber: string; } diff --git a/src/mock/organisasjoner.ts b/src/mock/organisasjoner.ts index 8d6f1dd..6d120c2 100644 --- a/src/mock/organisasjoner.ts +++ b/src/mock/organisasjoner.ts @@ -3,170 +3,128 @@ import { Organisasjon } from '../bedriftsmeny/organisasjon'; export const MOCK_ORGANISASJONER: Organisasjon[] = [ { Name: 'BALLSTAD OG EIDSLANDET', - Type: 'Business', OrganizationNumber: '811076422', ParentOrganizationNumber: '811076112', OrganizationForm: 'AAFY', - Status: 'Active' }, { Name: 'BALLSTAD OG HAMARØY', - Type: 'Business', OrganizationNumber: '811076732', ParentOrganizationNumber: '811076112', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'BALLSTAD OG HORTEN', - Type: 'Enterprise', OrganizationNumber: '811076112', ParentOrganizationNumber: '', OrganizationForm: 'FLI', - Status: 'Active' }, { Name: 'BALLSTAD OG SÆTERVIK', - Type: 'Business', OrganizationNumber: '811076902', ParentOrganizationNumber: '811076112', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'BAREKSTAD OG YTTERVÅG REGNSKAP', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '810514442', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'BIRI OG VANNAREID REVISJON', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910998250', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'EIDSNES OG AUSTRE ÅMØY', - Type: 'Business', OrganizationNumber: '910521551', ParentOrganizationNumber: '910998250', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'FRØNNINGEN OG LAUVSTAD REVISJON', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910223208', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'HARSTAD OG TYSSEDAL REVISJON', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '810989572', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'HAVNNES OG ÅGSKARDET', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910646176', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'KJØLLEFJORD OG ØKSFJORD', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910175777', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'KYSTBASEN ÅGOTNES OG ILSENG REGNSKAP', - Type: 'Enterprise', OrganizationNumber: '910514318', ParentOrganizationNumber: '910175777', OrganizationForm: 'ASA', - Status: 'Active' }, { Name: 'SANDVÆR OG HOV', - Type: 'Business', OrganizationNumber: '910793829', OrganizationForm: 'BEDR', ParentOrganizationNumber: '910720120', - Status: 'Active' }, { Name: 'SKOTSELV OG HJELSET', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910720120', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'STOL PÅ TORE', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '810771852', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'SØR-HIDLE OG STRAUMGJERDE OG SØNNER OG DØTRE', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910167200', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'TROMVIK OG SPARBU REVISJON', - Type: 'Business', OrganizationNumber: '910989626', ParentOrganizationNumber: '910167200', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'Tore sitt testselskap', - Type: 'Enterprise', ParentOrganizationNumber: '', OrganizationNumber: '910820834', OrganizationForm: 'AS', - Status: 'Active' }, { Name: 'UGGDAL OG STEINSDALEN', - Type: 'Business', OrganizationNumber: '910521616', ParentOrganizationNumber: '910820834', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'VALESTRANDSFOSSEN OG SØRLI OG SØNN REVISJON', - Type: 'Business', OrganizationNumber: '810989602', ParentOrganizationNumber: '910820834', OrganizationForm: 'BEDR', - Status: 'Active' }, { Name: 'VESTBY OG LOEN OG ALEKSANDERSEN REVISJON', - Type: 'Business', OrganizationNumber: '910989642', ParentOrganizationNumber: '910820834', OrganizationForm: 'BEDR', - Status: 'Active' - } + }, ];