Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/endpoints/test_availability_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def test_vessel_properties(self):
assert len(df) == 10

def test_search_with_dates(self):
start = datetime(2021, 6, 20)
end = datetime(2021, 6, 21)
start = datetime(2023, 6, 20)
end = datetime(2023, 6, 21)

results = VesselAvailabilitySearch().search(
filter_port=rotterdam,
Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_congestion_breakdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_geography_breakdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_product_breakdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_routes_breakdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_search_enriched.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_timeseries_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_top_hits.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/endpoints/voyages_vessel_class_breakdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def search(

location_status_excluded: A location status, or list of location statuses to exclude.

commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'uncommitted'`, `'open'`, `'unknown'`.
commitment_status: A commitment status, or list of commitment statuses to filter on. Can be one of: `'committed'`, `'unknown'`.

commitment_status_excluded: A commitment status, or list of commitment statuses to exclude.

Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.9"
__version__ = "1.0.10"
Loading