We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
objectId
tenantId
authenticatedUser
1 parent 09ba8b9 commit 8c2733aCopy full SHA for 8c2733a
libs/logic-apps-shared/src/utils/src/lib/models/connection.ts
@@ -48,8 +48,14 @@ export interface ValueObject {
48
value: any;
49
}
50
51
+export interface ConnectionAuthenticatedUser {
52
+ name?: string;
53
+ objectId?: string;
54
+ tenantId?: string;
55
+}
56
+
57
export interface ConnectionProperties {
- authenticatedUser?: { name?: string };
58
+ authenticatedUser?: ConnectionAuthenticatedUser;
59
connectionParameters?: Record<string, ConnectionParameter>;
60
connectionParametersSet?: ConnectionParameterSet;
61
createdBy?: Principal;
0 commit comments