@@ -22245,6 +22245,11 @@ within the time frame of their original request."/>
22245
22245
<Member Name="or" Value="0"/>
22246
22246
<Member Name="and" Value="1"/>
22247
22247
</EnumType>
22248
+ <EnumType Name="aiInteractionType">
22249
+ <Member Name="userPrompt" Value="0"/>
22250
+ <Member Name="aiResponse" Value="1"/>
22251
+ <Member Name="unknownFutureValue" Value="2"/>
22252
+ </EnumType>
22248
22253
<EnumType Name="callRecordingStatus">
22249
22254
<Member Name="success" Value="0"/>
22250
22255
<Member Name="failure" Value="1"/>
@@ -26043,6 +26048,12 @@ within the time frame of their original request."/>
26043
26048
</EntityType>
26044
26049
<EntityType Name="copilotRoot">
26045
26050
<NavigationProperty Name="admin" Type="graph.copilotAdmin" ContainsTarget="true"/>
26051
+ <NavigationProperty Name="interactionHistory" Type="graph.aiInteractionHistory" ContainsTarget="true"/>
26052
+ <NavigationProperty Name="users" Type="Collection(graph.aiUser)" ContainsTarget="true"/>
26053
+ </EntityType>
26054
+ <EntityType Name="aiInteractionHistory" BaseType="graph.entity"/>
26055
+ <EntityType Name="aiUser" BaseType="graph.entity">
26056
+ <NavigationProperty Name="interactionHistory" Type="graph.aiInteractionHistory" ContainsTarget="true"/>
26046
26057
</EntityType>
26047
26058
<ComplexType Name="apiAuthenticationConfigurationBase" Abstract="true"/>
26048
26059
<ComplexType Name="assignmentOrder">
@@ -34673,6 +34684,36 @@ within the time frame of their original request."/>
34673
34684
<ComplexType Name="aadUserNotificationRecipient" BaseType="graph.teamworkNotificationRecipient">
34674
34685
<Property Name="userId" Type="Edm.String" Nullable="false"/>
34675
34686
</ComplexType>
34687
+ <ComplexType Name="aiInteractionAttachment">
34688
+ <Property Name="attachmentId" Type="Edm.String"/>
34689
+ <Property Name="content" Type="Edm.String"/>
34690
+ <Property Name="contentType" Type="Edm.String"/>
34691
+ <Property Name="contentUrl" Type="Edm.String"/>
34692
+ <Property Name="name" Type="Edm.String"/>
34693
+ </ComplexType>
34694
+ <ComplexType Name="aiInteractionContext">
34695
+ <Property Name="contextReference" Type="Edm.String"/>
34696
+ <Property Name="contextType" Type="Edm.String"/>
34697
+ <Property Name="displayName" Type="Edm.String"/>
34698
+ </ComplexType>
34699
+ <ComplexType Name="aiInteractionLink">
34700
+ <Property Name="displayName" Type="Edm.String"/>
34701
+ <Property Name="linkType" Type="Edm.String"/>
34702
+ <Property Name="linkUrl" Type="Edm.String"/>
34703
+ </ComplexType>
34704
+ <ComplexType Name="aiInteractionMention">
34705
+ <Property Name="mentioned" Type="graph.aiInteractionMentionedIdentitySet"/>
34706
+ <Property Name="mentionId" Type="Edm.Int32"/>
34707
+ <Property Name="mentionText" Type="Edm.String"/>
34708
+ </ComplexType>
34709
+ <ComplexType Name="aiInteractionMentionedIdentitySet" BaseType="graph.identitySet" OpenType="true">
34710
+ <Property Name="conversation" Type="graph.teamworkConversationIdentity"/>
34711
+ <Property Name="tag" Type="graph.teamworkTagIdentity"/>
34712
+ </ComplexType>
34713
+ <ComplexType Name="teamworkConversationIdentity" BaseType="graph.identity" OpenType="true">
34714
+ <Property Name="conversationIdentityType" Type="graph.teamworkConversationIdentityType"/>
34715
+ </ComplexType>
34716
+ <ComplexType Name="teamworkTagIdentity" BaseType="graph.identity" OpenType="true"/>
34676
34717
<ComplexType Name="eventMessageDetail" Abstract="true"/>
34677
34718
<ComplexType Name="callEndedEventMessageDetail" BaseType="graph.eventMessageDetail">
34678
34719
<Property Name="callDuration" Type="Edm.Duration"/>
@@ -34778,9 +34819,6 @@ within the time frame of their original request."/>
34778
34819
<ComplexType Name="chatMessageMentionedIdentitySet" BaseType="graph.identitySet" OpenType="true">
34779
34820
<Property Name="conversation" Type="graph.teamworkConversationIdentity"/>
34780
34821
</ComplexType>
34781
- <ComplexType Name="teamworkConversationIdentity" BaseType="graph.identity" OpenType="true">
34782
- <Property Name="conversationIdentityType" Type="graph.teamworkConversationIdentityType"/>
34783
- </ComplexType>
34784
34822
<ComplexType Name="chatMessagePolicyViolation">
34785
34823
<Property Name="dlpAction" Type="graph.chatMessagePolicyViolationDlpActionTypes"/>
34786
34824
<Property Name="justificationText" Type="Edm.String"/>
@@ -34938,13 +34976,28 @@ within the time frame of their original request."/>
34938
34976
<Property Name="joinWebUrl" Type="Edm.String"/>
34939
34977
<Property Name="organizer" Type="graph.teamworkUserIdentity"/>
34940
34978
</ComplexType>
34941
- <ComplexType Name="teamworkTagIdentity" BaseType="graph.identity" OpenType="true"/>
34942
34979
<EntityType Name="aadUserConversationMember" BaseType="graph.conversationMember">
34943
34980
<Property Name="email" Type="Edm.String"/>
34944
34981
<Property Name="tenantId" Type="Edm.String"/>
34945
34982
<Property Name="userId" Type="Edm.String"/>
34946
34983
<NavigationProperty Name="user" Type="graph.user"/>
34947
34984
</EntityType>
34985
+ <EntityType Name="aiInteraction" BaseType="graph.entity">
34986
+ <Property Name="appClass" Type="Edm.String" Nullable="false"/>
34987
+ <Property Name="attachments" Type="Collection(graph.aiInteractionAttachment)"/>
34988
+ <Property Name="body" Type="graph.itemBody"/>
34989
+ <Property Name="contexts" Type="Collection(graph.aiInteractionContext)"/>
34990
+ <Property Name="conversationType" Type="Edm.String"/>
34991
+ <Property Name="createdDateTime" Type="Edm.DateTimeOffset"/>
34992
+ <Property Name="etag" Type="Edm.String"/>
34993
+ <Property Name="from" Type="graph.identitySet" Nullable="false"/>
34994
+ <Property Name="interactionType" Type="graph.aiInteractionType" Nullable="false"/>
34995
+ <Property Name="links" Type="Collection(graph.aiInteractionLink)"/>
34996
+ <Property Name="locale" Type="Edm.String" Nullable="false"/>
34997
+ <Property Name="mentions" Type="Collection(graph.aiInteractionMention)"/>
34998
+ <Property Name="requestId" Type="Edm.String" Nullable="false"/>
34999
+ <Property Name="sessionId" Type="Edm.String" Nullable="false"/>
35000
+ </EntityType>
34948
35001
<EntityType Name="anonymousGuestConversationMember" BaseType="graph.conversationMember">
34949
35002
<Property Name="anonymousGuestId" Type="Edm.String"/>
34950
35003
</EntityType>
@@ -41305,6 +41358,10 @@ within the time frame of their original request."/>
41305
41358
<Parameter Name="bindingParameter" Type="Collection(graph.deletedTeam)"/>
41306
41359
<ReturnType Type="Collection(graph.chatMessage)"/>
41307
41360
</Function>
41361
+ <Function Name="getAllEnterpriseInteractions" IsBound="true" IsComposable="true">
41362
+ <Parameter Name="bindingParameter" Type="graph.aiInteractionHistory"/>
41363
+ <ReturnType Type="Collection(graph.aiInteraction)"/>
41364
+ </Function>
41308
41365
<Function Name="getAllRetainedMessages" IsBound="true" EntitySetPath="bindingParameter/messages">
41309
41366
<Parameter Name="bindingParameter" Type="Collection(graph.channel)"/>
41310
41367
<ReturnType Type="Collection(graph.chatMessage)"/>
0 commit comments