JIM.psd1

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

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

    # Supported PSEditions
    CompatiblePSEditions = @('Core', 'Desktop')

    # ID used to uniquely identify this module
    GUID = 'f7e8d9c0-1234-5678-9abc-def012345678'

    # Author of this module
    Author = 'Tetron'

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

    # Copyright statement for this module
    Copyright = '(c) Tetron Limited. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'PowerShell module for administering JIM (Junctional Identity Manager). Provides cmdlets for managing Connected Systems, Sync Rules, Run Profiles, Metaverse Objects, Activities, API Keys, Certificates, and more. Supports both interactive (SSO) and non-interactive (API Key) authentication.'

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

    # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = @(
        # Connection
        'Connect-JIM',
        'Disconnect-JIM',
        'Test-JIMConnection',

        # Connected Systems
        'Get-JIMConnectedSystem',
        'New-JIMConnectedSystem',
        'Set-JIMConnectedSystem',
        'Remove-JIMConnectedSystem',
        'Import-JIMConnectedSystemSchema',
        'Import-JIMConnectedSystemHierarchy',
        'Get-JIMConnectorDefinition',
        'Set-JIMConnectedSystemObjectType',
        'Set-JIMConnectedSystemAttribute',
        'Get-JIMConnectedSystemPartition',
        'Set-JIMConnectedSystemPartition',
        'Set-JIMConnectedSystemContainer',
        'Get-JIMConnectedSystemUnresolvedReferenceCount',
        'Clear-JIMConnectedSystem',

        # Sync Rules
        'Get-JIMSyncRule',
        'New-JIMSyncRule',
        'Set-JIMSyncRule',
        'Remove-JIMSyncRule',

        # Sync Rule Mappings
        'Get-JIMSyncRuleMapping',
        'New-JIMSyncRuleMapping',
        'Remove-JIMSyncRuleMapping',

        # Object Matching Rules
        'Get-JIMMatchingRule',
        'New-JIMMatchingRule',
        'Set-JIMMatchingRule',
        'Remove-JIMMatchingRule',

        # Scoping Criteria
        'Get-JIMScopingCriteria',
        'New-JIMScopingCriteriaGroup',
        'Set-JIMScopingCriteriaGroup',
        'Remove-JIMScopingCriteriaGroup',
        'New-JIMScopingCriterion',
        'Remove-JIMScopingCriterion',

        # Run Profiles
        'Get-JIMRunProfile',
        'New-JIMRunProfile',
        'Set-JIMRunProfile',
        'Remove-JIMRunProfile',
        'Start-JIMRunProfile',

        # Schedules
        'Get-JIMSchedule',
        'New-JIMSchedule',
        'Set-JIMSchedule',
        'Remove-JIMSchedule',
        'Enable-JIMSchedule',
        'Disable-JIMSchedule',
        'Start-JIMSchedule',
        'Add-JIMScheduleStep',
        'Remove-JIMScheduleStep',

        # Schedule Executions
        'Get-JIMScheduleExecution',
        'Stop-JIMScheduleExecution',

        # Activities
        'Get-JIMActivity',
        'Get-JIMActivityStats',

        # Metaverse
        'Get-JIMMetaverseObject',
        'Get-JIMMetaverseObjectType',
        'Set-JIMMetaverseObjectType',
        'Get-JIMMetaverseAttribute',
        'New-JIMMetaverseAttribute',
        'Set-JIMMetaverseAttribute',
        'Remove-JIMMetaverseAttribute',

        # API Keys
        'Get-JIMApiKey',
        'New-JIMApiKey',
        'Set-JIMApiKey',
        'Remove-JIMApiKey',

        # Certificates
        'Get-JIMCertificate',
        'Add-JIMCertificate',
        'Set-JIMCertificate',
        'Remove-JIMCertificate',
        'Test-JIMCertificate',
        'Export-JIMCertificate',

        # Security
        'Get-JIMRole',

        # Data Generation
        'Get-JIMExampleDataSet',
        'Get-JIMExampleDataTemplate',
        'Invoke-JIMExampleDataTemplate',

        # Expressions
        'Test-JIMExpression',

        # History
        'Get-JIMDeletedObject',
        'Get-JIMHistoryCount',
        'Invoke-JIMHistoryCleanup'
    )

    # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
    CmdletsToExport = @()

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

    # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('Identity', 'IAM', 'IdentityManagement', 'JIM', 'Synchronisation', 'Administration', 'Automation', 'DevOps')

            # A URL to the license for this module.
            LicenseUri = 'https://github.com/TetronIO/JIM/blob/main/LICENSE'

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/TetronIO/JIM'

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

            # ReleaseNotes of this module
            ReleaseNotes = @'
## 0.7.0

### New Features
- New default theme with refined colour palette, improved contrast, and Inter web font for better readability
- Properties tab on the Metaverse Object detail page with creation date, last modified, and initiator links
- Form and table view toggle on the MVO detail page with server-side paginated MVA dialog
- GET /api/v1/userinfo endpoint for authenticated user identity lookup
- Connect-JIM authorisation verification with clear guidance for missing JIM identities
- Activity tracking for initial admin user creation

### Changed
- "Connected System Objects" pages renamed to "Staging" with cleaner URL structure
- "Data Generation" renamed to "Example Data" across models, API, PowerShell, and UI
- Database migrations flattened into a single InitialCreate for faster first-start

### Fixed
- DbContext concurrency errors across all Blazor Server pages
- Deleted object change history correlation and final attribute capture
- Pending export reference display with meaningful identifiers
- Cross-batch reference fixup hardened against DB timeouts at scale
- MVO deletion FK constraint violations

### Performance
- MVO detail page caps multi-valued attributes with server-side pagination
- Pending export reconciliation query optimised

For full changelog, see: https://github.com/TetronIO/JIM/blob/main/CHANGELOG.md
'@


            # Prerelease string of this module
            # # Prerelease = ''

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

    # HelpInfo URI of this module
    HelpInfoURI = 'https://github.com/TetronIO/JIM/wiki'
}