File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/connectivity/src/scp-cf Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export async function serviceToken(
3232 jwt ?: string | JwtPayload ;
3333 iasOptions ?: Omit <
3434 IasOptions ,
35- 'authenticationType' | 'assertion' | 'destinationUrl'
35+ 'authenticationType' | 'assertion' | 'destinationUrl' | 'appTid'
3636 > ;
3737 }
3838) : Promise < string > {
@@ -65,7 +65,8 @@ export async function serviceToken(
6565 serviceBinding . label === 'identity'
6666 ? await getIasClientCredentialsToken ( serviceBinding , {
6767 ...( options ?. iasOptions ?? { } ) ,
68- authenticationType : 'OAuth2ClientCredentials'
68+ authenticationType : 'OAuth2ClientCredentials' ,
69+ appTid : tenantForCaching
6970 } )
7071 : await getClientCredentialsToken ( serviceBinding , options ?. jwt ) ;
7172
You can’t perform that action at this time.
0 commit comments