|
62 | 62 | # Type files (.ps1xml) to be loaded when importing this module |
63 | 63 | TypesToProcess = @( |
64 | 64 | 'src/Types/Search.Types.ps1xml' |
| 65 | + 'src/Types/Location.Types.ps1xml' |
| 66 | + 'src/Types/Repository.Types.ps1xml' |
65 | 67 | ) |
66 | 68 |
|
67 | 69 | # Format files (.ps1xml) to be loaded when importing this module |
68 | 70 | FormatsToProcess = @( |
69 | 71 | 'src/Formats/Search.Format.ps1xml' |
| 72 | + 'src/Formats/Hover.Format.ps1xml' |
| 73 | + 'src/Formats/Location.Format.ps1xml' |
70 | 74 | ) |
71 | 75 |
|
72 | 76 | # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
73 | 77 | # NestedModules = @() |
74 | 78 |
|
75 | 79 | # 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. |
76 | 80 | FunctionsToExport = @( |
77 | | - 'Disable-SourcegraphRepository', |
78 | | - 'Enable-SourcegraphRepository', |
79 | | - 'Get-SourcegraphRepository', |
80 | | - 'Get-SourcegraphUser', |
81 | | - 'Invoke-SourcegraphApiRequest', |
82 | | - 'New-SourcegraphUser', |
| 81 | + 'Get-SourcegraphRepository' |
| 82 | + 'Get-SourcegraphHover' |
| 83 | + 'Get-SourcegraphDefinition' |
| 84 | + 'Get-SourcegraphReference' |
| 85 | + 'Get-SourcegraphUser' |
| 86 | + 'Invoke-SourcegraphApiRequest' |
| 87 | + 'New-SourcegraphUser' |
83 | 88 | 'Search-Sourcegraph' |
84 | 89 | ) |
85 | 90 |
|
|
91 | 96 |
|
92 | 97 | # 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. |
93 | 98 | AliasesToExport = @( |
94 | | - 'Disable-SrcRepository', |
95 | | - 'Enable-SrcRepository', |
96 | | - 'Get-SrcRepositories', |
| 99 | + 'Get-SrcRepository', |
| 100 | + 'Get-SrcHover', |
| 101 | + 'Get-SrcDefinition', |
| 102 | + 'Get-SrcReference', |
97 | 103 | 'Get-SrcUser', |
98 | | - 'Invoke-SrcApiRequest', |
99 | 104 | 'New-SrcUser', |
| 105 | + 'Invoke-SrcApiRequest', |
100 | 106 | 'Search-Src' |
101 | 107 | ) |
102 | 108 |
|
|
0 commit comments