@@ -95,10 +95,10 @@ export type DatedFlowNetwork_api = {
95
95
export type EnsembleDetails_api = {
96
96
name : string ;
97
97
field_identifier : string ;
98
- stratigraphic_column_identifier : string ;
99
98
case_name : string ;
100
99
case_uuid : string ;
101
100
realizations : Array < number > ;
101
+ stratigraphic_column_identifier : string ;
102
102
} ;
103
103
104
104
export type EnsembleInfo_api = {
@@ -114,16 +114,16 @@ export type EnsembleParameter_api = {
114
114
is_logarithmic : boolean ;
115
115
is_discrete : boolean ;
116
116
is_constant : boolean ;
117
- group_name : string | null ;
118
- descriptive_name : string | null ;
117
+ group_name ? : string | null ;
118
+ descriptive_name ? : string | null ;
119
119
realizations : Array < number > ;
120
120
values : Array < number > | Array < number > | Array < string > ;
121
121
} ;
122
122
123
123
export type EnsembleParameterDescription_api = {
124
124
name : string ;
125
- group_name : string | null ;
126
- descriptive_name : string | null ;
125
+ group_name ? : string | null ;
126
+ descriptive_name ? : string | null ;
127
127
is_discrete : boolean ;
128
128
} ;
129
129
@@ -133,8 +133,8 @@ export type EnsembleParameterDescription_api = {
133
133
export type EnsembleScalarResponse_api = {
134
134
realizations : Array < number > ;
135
135
values : Array < number > ;
136
- name : string | null ;
137
- unit : string | null ;
136
+ name ? : string | null ;
137
+ unit ? : string | null ;
138
138
} ;
139
139
140
140
/**
@@ -212,7 +212,7 @@ export enum Gfr_api {
212
212
}
213
213
214
214
export type GraphUserPhoto_api = {
215
- avatar_b64str : string | null ;
215
+ avatar_b64str ? : string | null ;
216
216
} ;
217
217
218
218
/**
@@ -260,7 +260,7 @@ export type Grid3dMappedProperty_api = {
260
260
*/
261
261
export type Grid3dPropertyInfo_api = {
262
262
property_name : string ;
263
- iso_date_or_interval : string | null ;
263
+ iso_date_or_interval ? : string | null ;
264
264
} ;
265
265
266
266
/**
@@ -405,8 +405,8 @@ export enum NodeType_api {
405
405
* A collection of observations associated with a field/case/ensemble
406
406
*/
407
407
export type Observations_api = {
408
- summary : Array < SummaryVectorObservations_api > ;
409
- rft : Array < RftObservations_api > ;
408
+ summary ? : Array < SummaryVectorObservations_api > ;
409
+ rft ? : Array < RftObservations_api > ;
410
410
} ;
411
411
412
412
export type PointSetXy_api = {
@@ -442,9 +442,9 @@ export enum PolygonsAttributeType_api {
442
442
export type PolygonsMeta_api = {
443
443
name : string ;
444
444
name_is_stratigraphic_offical : boolean ;
445
- stratigraphic_identifier : string | null ;
446
- relative_stratigraphic_level : number | null ;
447
- parent_stratigraphic_identifier : string | null ;
445
+ stratigraphic_identifier ? : string | null ;
446
+ relative_stratigraphic_level ? : number | null ;
447
+ parent_stratigraphic_identifier ? : string | null ;
448
448
attribute_name : string ;
449
449
attribute_type : PolygonsAttributeType_api ;
450
450
} ;
@@ -501,7 +501,7 @@ export type RepeatedTableColumnData_api = {
501
501
*/
502
502
export type RftObservation_api = {
503
503
value : number ;
504
- comment : string | null ;
504
+ comment ? : string | null ;
505
505
error : number ;
506
506
zone : string ;
507
507
md_msl : number ;
@@ -522,7 +522,7 @@ export type RftObservation_api = {
522
522
export type RftObservations_api = {
523
523
well : string ;
524
524
date : string ;
525
- comment : string | null ;
525
+ comment ? : string | null ;
526
526
observations : Array < RftObservation_api > ;
527
527
} ;
528
528
@@ -636,15 +636,15 @@ export type StratigraphicUnit_api = {
636
636
colorR : number ;
637
637
colorG : number ;
638
638
colorB : number ;
639
- lithologyType : number | number | string ;
639
+ lithologyType ? : number | number | string ;
640
640
} ;
641
641
642
642
/**
643
643
* A single observation of a summary vector at a specific date.
644
644
*/
645
645
export type SummaryVectorDateObservation_api = {
646
646
date : string ;
647
- comment : string | null ;
647
+ comment ? : string | null ;
648
648
value : number ;
649
649
error : number ;
650
650
label : string ;
@@ -655,7 +655,7 @@ export type SummaryVectorDateObservation_api = {
655
655
*/
656
656
export type SummaryVectorObservations_api = {
657
657
vector_name : string ;
658
- comment : string | null ;
658
+ comment ? : string | null ;
659
659
observations : Array < SummaryVectorDateObservation_api > ;
660
660
} ;
661
661
@@ -685,7 +685,7 @@ export enum SurfaceAttributeType_api {
685
685
}
686
686
687
687
export type SurfaceDataFloat_api = {
688
- format : "float" ;
688
+ format ? : "float" ;
689
689
surface_def : SurfaceDef_api ;
690
690
transformed_bbox_utm : BoundingBox2D_api ;
691
691
value_min : number ;
@@ -694,7 +694,7 @@ export type SurfaceDataFloat_api = {
694
694
} ;
695
695
696
696
export type SurfaceDataPng_api = {
697
- format : "png" ;
697
+ format ? : "png" ;
698
698
surface_def : SurfaceDef_api ;
699
699
transformed_bbox_utm : BoundingBox2D_api ;
700
700
value_min : number ;
@@ -786,7 +786,9 @@ export enum SurfaceTimeType_api {
786
786
INTERVAL = "INTERVAL" ,
787
787
}
788
788
789
- export type Thp_api = "THP" ;
789
+ export enum Thp_api {
790
+ THP = "THP" ,
791
+ }
790
792
791
793
export enum TabType_api {
792
794
BHP = "BHP" ,
@@ -825,8 +827,8 @@ export enum UnitType_api {
825
827
826
828
export type UserInfo_api = {
827
829
username : string ;
828
- display_name : string | null ;
829
- avatar_b64str : string | null ;
830
+ display_name ? : string | null ;
831
+ avatar_b64str ? : string | null ;
830
832
has_sumo_access : boolean ;
831
833
has_smda_access : boolean ;
832
834
} ;
@@ -877,7 +879,7 @@ export type VectorStatisticSensitivityData_api = {
877
879
} ;
878
880
879
881
export type VfpInjTable_api = {
880
- isInjTable : boolean ;
882
+ isInjTable ? : boolean ;
881
883
tableNumber : number ;
882
884
datum : number ;
883
885
flowRateType : FlowRateType_api ;
@@ -892,7 +894,7 @@ export type VfpInjTable_api = {
892
894
} ;
893
895
894
896
export type VfpProdTable_api = {
895
- isProdTable : boolean ;
897
+ isProdTable ? : boolean ;
896
898
tableNumber : number ;
897
899
datum : number ;
898
900
thpType : Thp_api ;
@@ -956,15 +958,15 @@ export type WellCompletionsWell_api = {
956
958
957
959
export type WellCompletionsZone_api = {
958
960
name : string ;
959
- subzones : Array < WellCompletionsZone_api > | null ;
961
+ subzones ? : Array < WellCompletionsZone_api > | null ;
960
962
} ;
961
963
962
964
export type WellboreCasing_api = {
963
965
itemType : string ;
964
966
diameterNumeric : number ;
965
967
diameterInner : number ;
966
- description : string | null ;
967
- remark : string | null ;
968
+ description ? : string | null ;
969
+ remark ? : string | null ;
968
970
depthTopMd : number ;
969
971
depthBottomMd : number ;
970
972
totalDepthMd : number ;
@@ -1040,7 +1042,7 @@ export type WellborePick_api = {
1040
1042
uniqueWellboreIdentifier : string ;
1041
1043
wellboreUuid : string ;
1042
1044
pickIdentifier : string ;
1043
- confidence : string | null ;
1045
+ confidence ? : string | null ;
1044
1046
depthReferencePoint : string ;
1045
1047
mdUnit : string ;
1046
1048
} ;
0 commit comments