We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad6a65 commit f40c1e8Copy full SHA for f40c1e8
1 file changed
scripts/generate-typescript.ps1
@@ -25,7 +25,7 @@ $rootSegments = Get-ChildItem -Directory -Exclude $modelsPackageDirectoryName -P
25
foreach($rootSegment in $rootSegments) {
26
$fluentAPIPackageDirectoryPath = "$targetDirectory/$modelsPackageDirectoryName-$rootSegment"
27
Write-Host "generating segment $rootSegment"
28
- Invoke-Expression "$kiotaPath generate -o $fluentAPIPackageDirectoryPath -d $descriptionPath -c $($rootSegment.Substring(0,1).ToUpper() + $rootSegment.Substring(1))ServiceClient -l TypeScript -n github.com/microsoftgraph/msgraph-sdk-typescript/ -e '/me' -e '/me/**' -i '/$rootSegment' -i '/$rootSegment/**' $additionalArguments"
+ Invoke-Expression "$kiotaPath generate -o $fluentAPIPackageDirectoryPath -d $descriptionPath -c $($rootSegment.Substring(0,1).ToUpper() + $rootSegment.Substring(1))ServiceClient -l TypeScript -n github.com/microsoftgraph/msgraph-sdk-typescript/ -e '/me' -e '/me/**' -i '/$rootSegment' -i '/$rootSegment/**' -s none --ds none $additionalArguments"
29
Invoke-Expression "$PSScriptRoot\fix-typescript-fluent-packages-imports.ps1 -targetDirectory '$fluentAPIPackageDirectoryPath' -packageName '$packageName'"
30
}
31
$modelsPackagePath = "$targetDirectory/$modelsPackageDirectoryName"
0 commit comments