pscodebeamer.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'pscodebeamer.psm1'

    # Version number of this module.
    ModuleVersion = '1.1.1'

    # ID used to uniquely identify this module
    GUID = 'e8b7e6a2-1f2e-4c7c-9c7b-123456789abc'

    # Author of this module
    Author = 'Krzysztof Brandowski'

    # Company or vendor of this module
    CompanyName = 'Schaeffler'

    # Copyright statement for this module
    Copyright = '(c) 2025 brandkzy. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'PSCodeBeamer is a comprehensive PowerShell module for automating and integrating with the Codebeamer ALM platform via its REST API. It enables users to manage projects, trackers, items, users, baselines, and more directly from PowerShell scripts or the command line.'

    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '6.0'

    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules = @()

    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @()

    # Script files (.ps1) that are run in the caller's environment prior to importing this module
    ScriptsToProcess = @()

    # Type files (.ps1xml) to be loaded when importing this module
    TypesToProcess = @()

    # Format files (.ps1xml) to be loaded when importing this module
    FormatsToProcess = @()

    # Functions to export from this module
    FunctionsToExport = @("Use-CBCredential","Update-CBTrackerConfiguration","Set-CBItemLock","Set-CBItem","Reset-CBItem","Remove-CBItem","Register-CBSecretVault",
    "New-CBSession","New-CBItem","New-CBBaseline","Invoke-CBQL","Get-CBTrackerTree","Get-CBTrackerTransition","Get-CbTrackerSchema","Get-CBTrackerPermission",
    "Get-CBTrackerOutline","Get-CBTrackerField","Get-CBTrackerConfiguration","Get-CBTrackerChild","Get-CBTrackerBaseLine","Get-CBRole","Get-CBReport",
    "Get-CBProjectTrackerList","Get-CBProjectMemberList","Get-CBProject","Get-CBItemReference","Get-CBItemLock","Get-CBItemHistory","Get-CBItemFieldOptions",
    "Get-CBItemField","Get-CBItemAcessibility","Get-CBItem","Get-CBGroup","Find-CBUserRole","Find-CBUser","Copy-CBItem","ConvertTo-CBChoiceField","Open-Codebeamer","Export-CBAttachment")

    # Cmdlets to export from this module
    CmdletsToExport = @()

    # Variables to export from this module
    VariablesToExport = @()

    # Aliases to export from this module
    AliasesToExport = @()

    # List of all files packaged with this module
    FileList = @('pscodebeamer.psm1')

    # Private data to pass to the module specified in RootModule/ModuleToProcess
    PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
         Tags = @('Codebeamer','ALM','API',"PTC")

        # A URL to the license for this module.
        # LicenseUri = ''

        # A URL to the main website for this project.
        # ProjectUri = ''

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        # ReleaseNotes = ''

        # Prerelease string of this module
        # Prerelease = ''

        # Flag to indicate whether the module requires explicit user acceptance for install/update/save
        # RequireLicenseAcceptance = $false

        # External dependent modules of this module
        # ExternalModuleDependencies = @()

    } # End of PSData hashtable

    } # End of PrivateData hashtable

    # HelpInfo URI of this module
    HelpInfoURI = ''

    # Default prefix for commands exported from this module. Override with Import-Module -Prefix.
    DefaultCommandPrefix = ''
}