Skip to content

Commit

Permalink
Client auto update (#492)
Browse files Browse the repository at this point in the history
Co-authored-by: rbruggem <rbruggem@users.noreply.github.com>
  • Loading branch information
rbruggem and rbruggem authored Feb 28, 2024
1 parent 2b70d9f commit 3bdd3c5
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/models/IdentifiedVesselShippingMethod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import type { IdentifiedVesselByIMOShippingMethod } from './IdentifiedVesselByIMOShippingMethod.js'
import type { IdentifiedVesselByNameShippingMethod } from './IdentifiedVesselByNameShippingMethod.js'
import type { Timestamp } from './Timestamp.js'

/**
* This method uses either the vessel's IMO number or the vessel name in order to select an emission factor, falling back to trade lane emissions factors if provided.
Expand All @@ -26,26 +25,17 @@ export type IdentifiedVesselShippingMethod = (
) & {
vesselTracking?: {
/**
* The timestamp of the departure from the source port.
*
* The more precise the better. Rule of thumb: you can be half a day off
* and a vessel should still be tracked correctly unless the transport is
* significantly shorter than half a day.
*
* The date of the departure from the source port.
*/
departureAt: Timestamp
departureOn: string
/**
* The timestamp of the arrival to the destination port.
*
* The more precise the better. Rule of thumb: you can be half a day off
* and a vessel should still be tracked correctly unless the transport is
* significantly shorter than half a day.
* The date of the arrival to the destination port.
*
* We can only perform vessel tracking for shipments that finished more than
* 24 hours ago.
*
*/
arrivalAt: Timestamp
arrivalOn: string
/**
* The vessel's MMSI number at the time of arrival to the destination port.
*
Expand Down

0 comments on commit 3bdd3c5

Please sign in to comment.