Commit 37324e3 1 parent 866cf6d commit 37324e3 Copy full SHA for 37324e3
File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11884,6 +11884,8 @@ components:
11884
11884
options :
11885
11885
type : object
11886
11886
properties :
11887
+ ignore_infra_speed_limits :
11888
+ type : boolean
11887
11889
use_electrical_profiles :
11888
11890
type : boolean
11889
11891
additionalProperties : false
@@ -11979,6 +11981,8 @@ components:
11979
11981
TrainScheduleOptions :
11980
11982
type : object
11981
11983
properties :
11984
+ ignore_infra_speed_limits :
11985
+ type : boolean
11982
11986
use_electrical_profiles :
11983
11987
type : boolean
11984
11988
additionalProperties : false
Original file line number Diff line number Diff line change @@ -643,6 +643,7 @@ fn build_simulation_request(
643
643
options : train_schedule. options . clone ( ) ,
644
644
physics_consist,
645
645
electrical_profile_set_id,
646
+ ignore_infra_speed_limits : false ,
646
647
}
647
648
}
648
649
Original file line number Diff line number Diff line change @@ -3254,6 +3254,7 @@ export type Margins = {
3254
3254
values : string [ ] ;
3255
3255
} ;
3256
3256
export type TrainScheduleOptions = {
3257
+ ignore_infra_speed_limits ?: boolean ;
3257
3258
use_electrical_profiles ?: boolean ;
3258
3259
} ;
3259
3260
export type PathItem = PathItemLocation & {
@@ -3612,6 +3613,7 @@ export type TrainScheduleBase = {
3612
3613
values : string [ ] ;
3613
3614
} ;
3614
3615
options ?: {
3616
+ ignore_infra_speed_limits ?: boolean ;
3615
3617
use_electrical_profiles ?: boolean ;
3616
3618
} ;
3617
3619
path : ( PathItemLocation & {
You can’t perform that action at this time.
0 commit comments