forked from pcgeek86/youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtube.psd1
52 lines (47 loc) · 1.27 KB
/
youtube.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@{
RootModule = 'youtube.psm1'
Author = 'Trevor Sullivan <[email protected]>'
CompanyName = 'Trevor Sullivan'
ModuleVersion = '0.3'
GUID = '4f1448cd-300f-444c-afdf-8ed678504ffd'
Copyright = '2022 Trevor Sullivan'
Description = 'Manage YouTube from the command line with PowerShell.'
PowerShellVersion = '5.1'
CompatiblePSEditions = @('Desktop', 'Core')
FunctionsToExport = @(
'Grant-YouTube'
'Grant-YouTubeOauth'
'Find-YouTubeVideo'
'Find-YouTubeChannel'
'Find-YouTubePlaylist'
'Get-YouTubeVideo'
'Set-YouTubeConfiguration'
'Get-YouTubeCommentThread'
'Get-YouTubeComment'
'New-YouTubeComment'
'Remove-YouTubeComment'
'Add-YouTubeSubscription'
'Get-YouTubeSubscription'
'Remove-YouTubeSubscription'
'Get-YouTubeActivity'
'Get-YouTubeChannel'
'Set-YouTubeVideoRating'
)
AliasesToExport = @('')
VariablesToExport = @('')
PrivateData = @{
PSData = @{
Tags = @('google', 'youtube')
LicenseUri = 'https://github.com/pcgeek86/youtube/blob/main/LICENSE'
ProjectUri = 'https://github.com/pcgeek86/youtube/'
IconUri = ''
ReleaseNotes = @'
0.2
- Added New-YouTubeComment to create a top-level comment thread
0.1
- Initial realease
'@
}
}
# HelpInfoURI = ''
}