-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update generated files. * chore: update eds version to 0.37.0 * feat: Add Stratigraphic column dialog. * chore: Fix page layout styling of hight, width and scroll. * fix: Bug in variogram result table. * chore: Update generated api files. * fix: Adapt components to new analogueModel data. * feat: Fetch stratigraphic column metadata and display in tabel. * fix: Add and view model page, handle metadata flow. * refactor: seperate add-model sidePane into own component. * chore: Add navigation to "view model" button. Add info text to add metadata. Styling fixes. * feat: Delete StratColumn row. * chore: Removed components no longer in use.
- Loading branch information
1 parent
c963cd7
commit 78b3403
Showing
47 changed files
with
2,499 additions
and
620 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/api/generated/models/AddGeologicalGroupCommandResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { GeologicalGroupDto } from './GeologicalGroupDto'; | ||
|
||
export type AddGeologicalGroupCommandResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: GeologicalGroupDto; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type AddGeologicalGroupForm = { | ||
grossDepEnvId: string; | ||
depEnvId: string; | ||
subEnvId: string; | ||
architecturalElements: Array<string>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type AddStatigraphicGroupForm = { | ||
countryId: string; | ||
fieldId: string; | ||
stratigraphicColumnId: string; | ||
stratigraphicUnitIds: Array<string>; | ||
}; | ||
|
15 changes: 15 additions & 0 deletions
15
src/api/generated/models/AddStratigraphicGroupCommandResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { StratigraphicGroupDto } from './StratigraphicGroupDto'; | ||
|
||
export type AddStratigraphicGroupCommandResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: StratigraphicGroupDto; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type CountryDto = { | ||
countryId: string; | ||
identifier: string; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type FieldDto = { | ||
fieldId: string; | ||
identifier: string; | ||
countryId: string; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { GeologicalStandardDto } from './GeologicalStandardDto'; | ||
|
||
export type GeologicalGroupDto = { | ||
geologicalGroupId: string; | ||
grossDepEnv: GeologicalStandardDto; | ||
depEnv: GeologicalStandardDto; | ||
subenv: GeologicalStandardDto; | ||
architecturalElements: Array<GeologicalStandardDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type GeologicalStandardDto = { | ||
geologicalStandardId: string; | ||
identifier: string; | ||
geologicalStandardParentId?: string | null; | ||
geologyGroup: string; | ||
equinorCode: number; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CountryDto } from './CountryDto'; | ||
import type { FieldDto } from './FieldDto'; | ||
import type { GeologicalStandardDto } from './GeologicalStandardDto'; | ||
import type { StratColumnDto } from './StratColumnDto'; | ||
import type { StratUnitDto } from './StratUnitDto'; | ||
|
||
export type ListAllQueryResponse = { | ||
countries: Array<CountryDto>; | ||
fields: Array<FieldDto>; | ||
stratUnits: Array<StratUnitDto>; | ||
stratColumns: Array<StratColumnDto>; | ||
geologicalStandards: Array<GeologicalStandardDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CountryDto } from './CountryDto'; | ||
|
||
export type ListCountriesQueryResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: Array<CountryDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { FieldDto } from './FieldDto'; | ||
|
||
export type ListFieldsQueryResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: Array<FieldDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { GeologicalStandardDto } from './GeologicalStandardDto'; | ||
|
||
export type ListGeoStandardsQueryResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: Array<GeologicalStandardDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { StratColumnDto } from './StratColumnDto'; | ||
|
||
export type ListStratColumnQueryResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: Array<StratColumnDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { StratUnitDto } from './StratUnitDto'; | ||
|
||
export type ListStratUnitsQueryResponse = { | ||
success?: boolean; | ||
count?: number | null; | ||
message?: string | null; | ||
validationErrors?: Array<string> | null; | ||
data: Array<StratUnitDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CountryDto } from './CountryDto'; | ||
|
||
export type StratColumnDto = { | ||
stratColumnId: string; | ||
identifier: string; | ||
countries: Array<CountryDto>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type StratUnitDto = { | ||
stratUnitId: string; | ||
identifier: string; | ||
stratColumnId: string; | ||
stratUnitParentId?: string | null; | ||
level: number; | ||
stratUnitType: string; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CountryDto } from './CountryDto'; | ||
import type { FieldDto } from './FieldDto'; | ||
import type { StratColumnDto } from './StratColumnDto'; | ||
import type { StratUnitDto } from './StratUnitDto'; | ||
|
||
export type StratigraphicGroupDto = { | ||
stratigraphicGroupId: string; | ||
country: CountryDto; | ||
field: FieldDto; | ||
stratColumn: StratColumnDto; | ||
stratUnits: Array<StratUnitDto>; | ||
}; | ||
|
Oops, something went wrong.