forked from equinor/webviz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de81ad7
commit 8620d1d
Showing
27 changed files
with
373 additions
and
297 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
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
12 changes: 12 additions & 0 deletions
12
frontend/src/api/models/Body_post_get_aggregated_table_data.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,12 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
import type { InplaceVolumetricsIndex } from './InplaceVolumetricsIndex'; | ||
export type Body_post_get_aggregated_table_data = { | ||
/** | ||
* Categorical filter | ||
*/ | ||
index_filter: Array<InplaceVolumetricsIndex>; | ||
}; | ||
|
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,9 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export enum FluidZone { | ||
OIL = 'Oil', | ||
GAS = 'Gas', | ||
WATER = 'Water', | ||
} |
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 |
---|---|---|
@@ -1,17 +1,14 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
|
||
/* istanbul ignore file */ | ||
|
||
/* tslint:disable */ | ||
|
||
/* eslint-disable */ | ||
import type { InplaceVolumetricsIndexNames } from "./InplaceVolumetricsIndexNames"; | ||
|
||
import type { InplaceVolumetricsIndexNames } from './InplaceVolumetricsIndexNames'; | ||
/** | ||
* Unique values for an index column in a volumetric table | ||
* All values should ideally be strings, but it is commmon to see integers, especially for REGION | ||
*/ | ||
export type InplaceVolumetricsIndex = { | ||
index_name: InplaceVolumetricsIndexNames; | ||
values: Array<string | number>; | ||
values: Array<(string | 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,15 @@ | ||
import { ModuleCategory, ModuleDevState } from "@framework/Module"; | ||
import { ModuleRegistry } from "@framework/ModuleRegistry"; | ||
|
||
import { Interface } from "./settingsToViewInterface"; | ||
import { State } from "./state"; | ||
|
||
export const MODULE_NAME = "InplaceVolumetrics"; | ||
ModuleRegistry.registerModule<State, Interface>({ | ||
|
||
ModuleRegistry.registerModule<State, Interface, Record<string, never>>({ | ||
moduleName: MODULE_NAME, | ||
defaultTitle: "Inplace Volumetrics", | ||
category: ModuleCategory.MAIN, | ||
devState: ModuleDevState.DEV, | ||
description: "Inplace Volumetrics", | ||
}); |
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
Oops, something went wrong.