sf-dev-tools.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'sf-dev-tools.psm1' # Version number of this module. ModuleVersion = '0.1.2' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. DefaultCommandPrefix = 'sfdt-' # ID used to uniquely identify this module GUID = '82100545-63cb-4e9e-be27-7ea0568c6d2d' # Author of this module Author = 'Nicolas Rojas' # Company or vendor of this module CompanyName = 'Personal' # Copyright statement for this module Copyright = 'Copyright © 2025 Nicolas Rojas. All rights reserved.' Description = 'A module that provides development tools for SF projects.' PowerShellVersion = '7.0' FunctionsToExport = @('Create-TraceFlag', 'Delete-DebugLogs') 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 = @() RequiredModules = @() RequiredAssemblies = @() FileList = @( 'src/Private/HelperFunction.ps1', 'src/Public/Create-TraceFlag.ps1', 'src/Public/Delete-DebugLogs.ps1' ) CompatiblePSEditions = @('Desktop', 'Core') # 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 = @() # A URL to the license for this module. # Licencia (puedes cambiarla según corresponda) LicenseUri = 'https://opensource.org/licenses/MIT' # A URL to the main website for this project. # URL del proyecto o repositorio ProjectUri = 'https://github.com/Nicolas067/sf-dev-tools?tab=readme-ov-file' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module # ReleaseNotes = '' # Prerelease string of this module Prerelease = 'alpha' # Flag to indicate whether the module requires explicit user acceptance for install/update/save #RequireLicenseAcceptance = $true # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # URL de ayuda del módulo #HelpInfoUri = 'https://github.com/tuusuario/Z/wiki' # Notas de versión con historial de cambios <# ReleaseNotes = @' 1.3.0-beta3: - Mejoras en la autenticación con OAuth para Salesforce. - Nueva función `Test-SFConnection` para validar credenciales. - Optimización en el tiempo de ejecución de `Invoke-SFDeploy`. 1.2.0: - Soporte para metadatos adicionales en `New-SFMetadataBackup`. - Mejor manejo de errores en `Get-SFOrgInfo`. 1.1.0: - Agregada compatibilidad con API v58 de Salesforce. - Mejorado el rendimiento en la consulta de objetos. 1.0.0: - Primera versión estable con funciones básicas para autenticación y despliegue. '@ #> } |