Skip to content

Commit

Permalink
fjern type og status fra Organisasjon interface
Browse files Browse the repository at this point in the history
  • Loading branch information
kenglxn committed Sep 16, 2024
1 parent 99e8e6f commit 899afe4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 48 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 0 additions & 2 deletions src/bedriftsmeny/organisasjon.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
export interface Organisasjon {
Name: string;
Type: string;
OrganizationNumber: string;
OrganizationForm: string;
Status: string;
ParentOrganizationNumber: string;
}

Expand Down
44 changes: 1 addition & 43 deletions src/mock/organisasjoner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
},
];

0 comments on commit 899afe4

Please sign in to comment.