We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37b8fbf commit 7da54d1Copy full SHA for 7da54d1
FabricTools/FabricTools.psm1
@@ -43,6 +43,12 @@ $script:PowerBI = [ordered]@{
43
BaseApiUrl = "https://api.powerbi.com/v1.0/myorg"
44
}
45
46
+$FabricTools = @{
47
+ FeatureFlags = @{
48
+ AutoRenewExpiredToken = $true
49
+ }
50
+}
51
+
52
$FabricConfig = @{
53
BaseUrl = "https://api.fabric.microsoft.com/v1"
54
ResourceUrl = "https://api.fabric.microsoft.com"
@@ -52,6 +58,7 @@ $FabricConfig = @{
58
59
60
Export-ModuleMember -Variable FabricConfig
61
+Export-ModuleMember -Variable FabricTools
55
62
56
63
# Get all .ps1 files in the (public) Functions folder
57
64
$publicFunctions = Get-ChildItem -Path "$PSScriptRoot\public" -Filter '*.ps1' -Recurse
0 commit comments