-
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.
- Loading branch information
1 parent
6d7e1fe
commit 1d5c61b
Showing
60 changed files
with
1,148 additions
and
57 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
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 { AnalogueModel } from './AnalogueModel'; | ||
|
||
export type Analogue = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
analogueId?: string; | ||
name?: string | null; | ||
description?: string | null; | ||
analogueModels?: Array<AnalogueModel> | null; | ||
}; | ||
|
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,35 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { Analogue } from './Analogue'; | ||
import type { AnalogueModelMetadata } from './AnalogueModelMetadata'; | ||
import type { AnalogueModelParameter } from './AnalogueModelParameter'; | ||
import type { AnalogueModelSourceType } from './AnalogueModelSourceType'; | ||
import type { ComputeCase } from './ComputeCase'; | ||
import type { Metadata } from './Metadata'; | ||
import type { ModelArea } from './ModelArea'; | ||
import type { Parameter } from './Parameter'; | ||
import type { Upload } from './Upload'; | ||
|
||
export type AnalogueModel = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
analogueModelId?: string; | ||
name?: string | null; | ||
description?: string | null; | ||
isProcessed?: boolean; | ||
sourceType?: AnalogueModelSourceType; | ||
analogues?: Array<Analogue> | null; | ||
fileUploads?: Array<Upload> | null; | ||
parameters?: Array<Parameter> | null; | ||
modelParameters?: Array<AnalogueModelParameter> | null; | ||
metadata?: Array<Metadata> | null; | ||
modelMetadata?: Array<AnalogueModelMetadata> | null; | ||
modelAreas?: Array<ModelArea> | null; | ||
computeCases?: Array<ComputeCase> | null; | ||
}; | ||
|
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 { AnalogueModel } from './AnalogueModel'; | ||
import type { Metadata } from './Metadata'; | ||
|
||
export type AnalogueModelMetadata = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
analogueModelId?: string; | ||
metadataId?: string; | ||
analogueModel?: AnalogueModel; | ||
metadata?: Metadata; | ||
}; | ||
|
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,20 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { AnalogueModel } from './AnalogueModel'; | ||
import type { Parameter } from './Parameter'; | ||
|
||
export type AnalogueModelParameter = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
analogueModelId?: string; | ||
parameterId?: string; | ||
parameterValue?: string | null; | ||
analogueModel?: AnalogueModel; | ||
parameter?: Parameter; | ||
}; | ||
|
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 ChannelEstimationResultDto = { | ||
mean: number; | ||
sd: number; | ||
count: 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,13 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type ChannelHeightDto = { | ||
mean: number; | ||
sd: number; | ||
count: number; | ||
modeSd: number; | ||
modeMean: 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,36 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { ChannelResultFile } from './ChannelResultFile'; | ||
import type { ComputeCase } from './ComputeCase'; | ||
import type { Geometry } from './Geometry'; | ||
|
||
export type ChannelResult = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
channelResultId?: string; | ||
computeCaseId?: string; | ||
computeCase?: ComputeCase; | ||
fileDirectory?: string | null; | ||
channelResultFiles?: Array<ChannelResultFile> | null; | ||
'segment-width__mean'?: number; | ||
'segment-width__sd'?: number; | ||
'segment-width__count'?: number; | ||
'channel-width__mean'?: number; | ||
'channel-width__sd'?: number; | ||
'channel-width__count'?: number; | ||
'segment-height__mean'?: number; | ||
'segment-height__sd'?: number; | ||
'segment-height__count'?: number; | ||
'channel-height__mean'?: number; | ||
'channel-height__sd'?: number; | ||
'channel-height__count'?: number; | ||
'channel-height__mode-mean'?: number; | ||
'channel-height__mode-sd'?: number; | ||
box?: Array<Geometry> | null; | ||
}; | ||
|
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,21 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { ChannelResult } from './ChannelResult'; | ||
import type { FileType } from './FileType'; | ||
|
||
export type ChannelResultFile = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
fileName?: string | null; | ||
pathToFile?: string | null; | ||
type?: FileType; | ||
channelResultFileId?: string; | ||
channelResultId?: string; | ||
channelResult?: ChannelResult; | ||
}; | ||
|
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,38 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { AnalogueModel } from './AnalogueModel'; | ||
import type { ChannelResult } from './ChannelResult'; | ||
import type { ComputeCaseInputValue } from './ComputeCaseInputValue'; | ||
import type { ComputeJob } from './ComputeJob'; | ||
import type { ComputeMethod } from './ComputeMethod'; | ||
import type { ComputeType } from './ComputeType'; | ||
import type { InputSettingValue } from './InputSettingValue'; | ||
import type { Job } from './Job'; | ||
import type { ModelArea } from './ModelArea'; | ||
import type { VariogramResult } from './VariogramResult'; | ||
|
||
export type ComputeCase = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
computeCaseId?: string; | ||
isApproved?: boolean; | ||
computeType?: ComputeType; | ||
computeMethodId?: string; | ||
computeMethod?: ComputeMethod; | ||
modelAreaId?: string | null; | ||
modelArea?: ModelArea; | ||
analogueModelId?: string | null; | ||
analogueModel?: AnalogueModel; | ||
computeCaseInputValues?: Array<ComputeCaseInputValue> | null; | ||
inputSettingValues?: Array<InputSettingValue> | null; | ||
computeJobs?: Array<ComputeJob> | null; | ||
jobs?: Array<Job> | null; | ||
variogramEstimationResults?: Array<VariogramResult> | null; | ||
channelEstimationResult?: ChannelResult; | ||
}; | ||
|
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 { ComputeCase } from './ComputeCase'; | ||
import type { InputSettingValue } from './InputSettingValue'; | ||
|
||
export type ComputeCaseInputValue = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
computeCaseId?: string; | ||
inputSettingvValueId?: string; | ||
computeCase?: ComputeCase; | ||
inputSettingValue?: InputSettingValue; | ||
}; | ||
|
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,20 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { ComputeCase } from './ComputeCase'; | ||
import type { Job } from './Job'; | ||
|
||
export type ComputeJob = { | ||
createdBy?: string | null; | ||
createdDate?: string; | ||
lastModifiedBy?: string | null; | ||
lastModifiedDate?: string; | ||
computeCaseId?: string; | ||
jobId?: string; | ||
isLatest?: boolean; | ||
computeCase?: ComputeCase; | ||
job?: Job; | ||
}; | ||
|
Oops, something went wrong.