BluebirdPS.psd1

#
# Module manifest for module 'BluebirdPS'
#
# Generated by: Dave Carroll
#
# Generated on: 11/18/2022
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'BluebirdPS.psm1'

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

# Supported PSEditions
CompatiblePSEditions = 'Core'

# ID used to uniquely identify this module
GUID = 'b46904d8-98f5-430e-893a-5ad77ceed8bd'

# Author of this module
Author = 'Dave Carroll'

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

# Copyright statement for this module
Copyright = '2020-2022'

# Description of the functionality provided by this module
Description = 'A Twitter Automation Client for PowerShell 7. Tweet, retweet, send direct messages, manage lists, and more.'

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

# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# ClrVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# 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 = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('lib\BluebirdPS.dll')

# 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 = 'Export-TwitterAuthentication', 'Import-TwitterAuthentication', 
               'Set-TwitterAuthentication', 'Set-TwitterBearerToken', 
               'Show-TwitterAuthentication', 'Test-TwitterAuthentication', 
               'Invoke-TwitterRequest', 'Get-TwitterDM', 'Publish-TwitterDM', 
               'Unpublish-TwitterDM', 'Send-TwitterMedia', 'Add-TwitterSavedSearch', 
               'Get-TwitterSavedSearch', 'Remove-TwitterSavedSearch', 
               'Get-TwitterAccountSettings', 'Get-TwitterPermissions', 
               'Get-TwitterRateLimitStatus', 'Get-TwitterUserProfileBanner', 
               'Get-TwitterFriendship', 'Submit-TwitterUserAsSpam', 
               'Add-TwitterList', 'Add-TwitterListMember', 
               'Add-TwitterListSubscription', 'Get-TwitterList', 
               'Get-TwitterListMember', 'Get-TwitterListMembership', 
               'Get-TwitterListSubscriber', 'Get-TwitterListSubscription', 
               'Get-TwitterListTweets', 'Get-TwitterPinnedList', 
               'Remove-TwitterList', 'Remove-TwitterListMember', 
               'Remove-TwitterListSubscription', 'Set-TwitterList', 
               'Set-TwitterPinnedList', 'Test-TwitterListMembership', 
               'Test-TwitterListSubscription', 'Get-Tweet', 'Get-TweetConversation', 
               'Get-TweetCount', 'Get-TweetLikes', 'Get-TweetPoll', 
               'Get-TwitterTimeline', 'Publish-Tweet', 'Search-Tweet', 'Set-Retweet', 
               'Set-TweetLike', 'Set-TweetReply', 'Unpublish-Tweet', 
               'Add-TwitterFriend', 'Get-TwitterBlockedUser', 'Get-TwitterFollowers', 
               'Get-TwitterFriends', 'Get-TwitterMutedUser', 'Get-TwitterUser', 
               'Remove-TwitterFriend', 'Set-TwitterBlockedUser', 
               'Set-TwitterMutedUser', 'ConvertFrom-EpochTime', 
               'ConvertFrom-TwitterV1Date', 'Export-BluebirdPSConfiguration', 
               'Find-TwitterMastodonLinks', 'Get-BluebirdPSAssemblyDetails', 
               'Get-BluebirdPSConfiguration', 'Get-BluebirdPSHistory', 
               'Get-BluebirdPSVersion', 'Get-TwitterApiEndpoint', 
               'Import-BluebirdPSConfiguration', 'Set-BluebirdPSConfiguration'

# 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 = 'ConvertFrom-OpenApiJson'

# 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 = @()

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
FileList = 'BluebirdPS.psd1', 'BluebirdPS.psm1', 'LICENSE', 
               'en-US\about_BluebirdPS_Configuration.help.txt', 
               'en-US\about_BluebirdPS_TwitterRequest.help.txt', 
               'en-US\about_BluebirdPS.help.txt', 'en-US\BluebirdPS-help.xml', 
               'lib\BluebirdPS.deps.json', 'lib\BluebirdPS.dll', 
               'lib\BluebirdPS.pdb'

# 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 = 'Twitter-Client','Twitter-API','Twitter-API-V2','Twitter','Tweet','Automation','Social-Media'

        # A URL to the license for this module.
        LicenseUri = 'https://docs.bluebirdps.dev/en/latest/LICENSE/'

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

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

        # ReleaseNotes of this module
        ReleaseNotes = '
      ## 0.8.1 - 2022-11-18
 
      Bugfix; Update Strongly Recommended
 
      ### Fixed
 
      - [Issue #174](https://github.com/thedavecarroll/BluebirdPS/issues/174) - Publish-Tweet - Fails to render API response
 
      ## 0.8.0 - 2022-11-13
 
      Bugfix, Feature, and Maintenance; Update Strongly Recommended
 
      ### Removed
 
      - [Issue #146](https://github.com/thedavecarroll/BluebirdPS/issues/146) - Remove Base Class of TwitterObject from Context and BaseMetrics
      - [Issue #170](https://github.com/thedavecarroll/BluebirdPS/issues/170) - Remove ListId Alist from List Commands
 
      ### Fixed
 
      - [Issue #101](https://github.com/thedavecarroll/BluebirdPS/issues/101) - Search-Tweet - MaxResults not honored
      - [Issue #105](https://github.com/thedavecarroll/BluebirdPS/issues/105) - Documentation - Update documentation for commands using /2/tweets/search/recent endpoint
      - [Issue #110](https://github.com/thedavecarroll/BluebirdPS/issues/110) - Publish-Tweet - Cannot index into a null array
      - [Issue #121](https://github.com/thedavecarroll/BluebirdPS/issues/121) - Media class is missing Url and AltText properties
      - [Issue #153](https://github.com/thedavecarroll/BluebirdPS/issues/153) - Various error handling
      - [Issue #154](https://github.com/thedavecarroll/BluebirdPS/issues/154) - Cleanup Tweet Class
      - [Issue #159](https://github.com/thedavecarroll/BluebirdPS/issues/159) - Tweet Metrics UrlLinkClicks Only Available for Tweets with Links
      - [Issue #167](https://github.com/thedavecarroll/BluebirdPS/issues/167) - BaseEntity GetEntities() Does Not Instantiate Annotations, CashTags, HashTags, and Mentions Correcly
 
      ### Changed
 
      - [Issue #129](https://github.com/thedavecarroll/BluebirdPS/issues/129) - Convert List Commands to Twitter API v2 Endpoints
      - [Issue #135](https://github.com/thedavecarroll/BluebirdPS/issues/135) - Convert Muted User Commands to Twitter API v2 Endpoints
      - [Issue #145](https://github.com/thedavecarroll/BluebirdPS/issues/145) - Get-TwitterUser: Change to auth user only endpoint
 
      ### Added
 
      - [Issue #102](https://github.com/thedavecarroll/BluebirdPS/issues/102) - Add NoPagination Switch to Invoke-TwitterRequest
      - [Issue #103](https://github.com/thedavecarroll/BluebirdPS/issues/103) - Add Verbose switch to Invoke-TwitterRequest
      - [Issue #127](https://github.com/thedavecarroll/BluebirdPS/issues/127) - Provide Classes and Updates to Enable API v2 Lists Endpoints
      - [Issue #130](https://github.com/thedavecarroll/BluebirdPS/issues/130) - Add OutputType to Commands
      - [Issue #132](https://github.com/thedavecarroll/BluebirdPS/issues/132) - Add Commands for Pinned List Endpoints
      - [Issue #140](https://github.com/thedavecarroll/BluebirdPS/issues/140) - Add new command Show-TwitterAuthentication
      - [Issue #141](https://github.com/thedavecarroll/BluebirdPS/issues/141) - Add new command Get-BluebirdPSAssemblyDetails
      - [Issue #144](https://github.com/thedavecarroll/BluebirdPS/issues/144) - Get-BluebirdPSVersion - Add new command to display version of BluebirdPS
      - [Issue #147](https://github.com/thedavecarroll/BluebirdPS/issues/147) - Add ToString() Override for Context and WithheldContent Classes
      - [Issue #148](https://github.com/thedavecarroll/BluebirdPS/issues/148) - Add Support for Edit Controls and Edit History
      - [Issue #150](https://github.com/thedavecarroll/BluebirdPS/issues/150) - Add New Metrics Exception
      - [Issue #156](https://github.com/thedavecarroll/BluebirdPS/issues/156) - Add Authenticated User to ResponseData
      - [Issue #165](https://github.com/thedavecarroll/BluebirdPS/issues/165) - Add Functionality to Parse User and Pinned Tweets to Find Mastodon Account References
 
      ### Maintenance
 
      - [Issue #124](https://github.com/thedavecarroll/BluebirdPS/issues/124) - C# Folder Structure - Ensure best practices for C# project older structure
      - [Issue #136](https://github.com/thedavecarroll/BluebirdPS/issues/136) - C# Additional Code Cleanup
      - [Issue #163](https://github.com/thedavecarroll/BluebirdPS/issues/163) - Update documentation
 
      For full CHANGELOG, see https://docs.bluebirdps.dev/en/latest/CHANGELOG/
      '


        # 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 the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}