ShipsDocuments.psd1

@{
  RootModule = 'ShipsDocuments.psm1'
  ModuleVersion = '1.0.0'
  GUID = '890fff98-a380-4fc4-82ac-fe4651c2734c'
  Author = 'Roy Ashbrook'
  CompanyName = 'ashbrook.io'
  Copyright = '(c) 2026 royashbrook. All rights reserved.'
  Description = 'Reads documents out of a SHIPS web imaging portal: log in once, fetch assembled PDFs by document id, re-login when the session expires.'
  PowerShellVersion = '7.0'
  FunctionsToExport = @('New-ShipsSession', 'Get-ShipsDocument')
  AliasesToExport = @()
  CmdletsToExport = @()
  VariablesToExport = @()
  PrivateData = @{
    PSData = @{
      Tags = @('ships', 'imaging', 'documents', 'pdf', 'tmw')
      LicenseUri = 'https://github.com/royashbrook/ShipsDocuments/blob/main/LICENSE'
      ProjectUri = 'https://github.com/royashbrook/ShipsDocuments'
    }
  }
}