Skip to content

Commit 8c2733a

Browse files
authored
fix(shared): Add objectId and tenantId to authenticatedUser (#5180)
Add `objectId` and `tenantId` to `authenticatedUser`
1 parent 09ba8b9 commit 8c2733a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

libs/logic-apps-shared/src/utils/src/lib/models/connection.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,14 @@ export interface ValueObject {
4848
value: any;
4949
}
5050

51+
export interface ConnectionAuthenticatedUser {
52+
name?: string;
53+
objectId?: string;
54+
tenantId?: string;
55+
}
56+
5157
export interface ConnectionProperties {
52-
authenticatedUser?: { name?: string };
58+
authenticatedUser?: ConnectionAuthenticatedUser;
5359
connectionParameters?: Record<string, ConnectionParameter>;
5460
connectionParametersSet?: ConnectionParameterSet;
5561
createdBy?: Principal;

0 commit comments

Comments
 (0)