graphlit-client 1.0.20260428001 → 1.0.20260428002

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -453,6 +453,7 @@ export const GetAgent = gql `
453
453
  threadId
454
454
  }
455
455
  microsoftTeams {
456
+ chatId
456
457
  teamId
457
458
  channelId
458
459
  threadId
@@ -889,6 +890,7 @@ export const QueryAgents = gql `
889
890
  threadId
890
891
  }
891
892
  microsoftTeams {
893
+ chatId
892
894
  teamId
893
895
  channelId
894
896
  threadId
@@ -15921,22 +15921,59 @@ export type MicrosoftTeamsChannelsInput = {
15921
15921
  /** Microsoft Teams refresh token, requires User authentication type. */
15922
15922
  refreshToken?: InputMaybe<Scalars['String']['input']>;
15923
15923
  };
15924
+ /** Represents a Microsoft Teams chat. */
15925
+ export type MicrosoftTeamsChatResult = {
15926
+ __typename?: 'MicrosoftTeamsChatResult';
15927
+ /** The Microsoft Teams chat identifier. */
15928
+ chatId?: Maybe<Scalars['ID']['output']>;
15929
+ /** The Microsoft Teams chat name. */
15930
+ chatName?: Maybe<Scalars['String']['output']>;
15931
+ /** The Microsoft Teams chat type. */
15932
+ chatType?: Maybe<Scalars['String']['output']>;
15933
+ /** The Microsoft Teams chat member names. */
15934
+ memberNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
15935
+ /** The Microsoft Teams chat URL. */
15936
+ webUrl?: Maybe<Scalars['String']['output']>;
15937
+ };
15938
+ /** Represents Microsoft Teams chats. */
15939
+ export type MicrosoftTeamsChatResults = {
15940
+ __typename?: 'MicrosoftTeamsChatResults';
15941
+ /** The Microsoft Teams chats. */
15942
+ results?: Maybe<Array<Maybe<MicrosoftTeamsChatResult>>>;
15943
+ };
15944
+ /** Represents Microsoft Teams chats properties. */
15945
+ export type MicrosoftTeamsChatsInput = {
15946
+ /** Microsoft Teams authentication type, defaults to User. */
15947
+ authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
15948
+ /** Microsoft Teams client identifier, requires User authentication type. */
15949
+ clientId?: InputMaybe<Scalars['String']['input']>;
15950
+ /** Microsoft Teams client secret, requires User authentication type. */
15951
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
15952
+ /** The authentication connector reference. */
15953
+ connector?: InputMaybe<EntityReferenceInput>;
15954
+ /** Microsoft Teams refresh token, requires User authentication type. */
15955
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
15956
+ };
15924
15957
  /** Represents the Microsoft Teams distribution properties. */
15925
15958
  export type MicrosoftTeamsDistributionProperties = {
15926
15959
  __typename?: 'MicrosoftTeamsDistributionProperties';
15927
15960
  /** The channel ID within the team. */
15928
- channelId: Scalars['String']['output'];
15961
+ channelId?: Maybe<Scalars['String']['output']>;
15962
+ /** The Teams chat ID. */
15963
+ chatId?: Maybe<Scalars['String']['output']>;
15929
15964
  /** The Teams team ID. */
15930
- teamId: Scalars['String']['output'];
15965
+ teamId?: Maybe<Scalars['String']['output']>;
15931
15966
  /** The thread message ID to reply to. */
15932
15967
  threadId?: Maybe<Scalars['String']['output']>;
15933
15968
  };
15934
15969
  /** Represents the Microsoft Teams distribution properties. */
15935
15970
  export type MicrosoftTeamsDistributionPropertiesInput = {
15936
15971
  /** The channel ID within the team. */
15937
- channelId: Scalars['String']['input'];
15972
+ channelId?: InputMaybe<Scalars['String']['input']>;
15973
+ /** The Teams chat ID. */
15974
+ chatId?: InputMaybe<Scalars['String']['input']>;
15938
15975
  /** The Teams team ID. */
15939
- teamId: Scalars['String']['input'];
15976
+ teamId?: InputMaybe<Scalars['String']['input']>;
15940
15977
  /** The thread message ID to reply to. */
15941
15978
  threadId?: InputMaybe<Scalars['String']['input']>;
15942
15979
  };
@@ -21739,6 +21776,8 @@ export type Query = {
21739
21776
  microsoftCalendars?: Maybe<CalendarResults>;
21740
21777
  /** Retrieves available Microsoft Teams team channels. */
21741
21778
  microsoftTeamsChannels?: Maybe<MicrosoftTeamsChannelResults>;
21779
+ /** Retrieves available Microsoft Teams chats. */
21780
+ microsoftTeamsChats?: Maybe<MicrosoftTeamsChatResults>;
21742
21781
  /** Retrieves available Microsoft Teams teams. */
21743
21782
  microsoftTeamsTeams?: Maybe<MicrosoftTeamsTeamResults>;
21744
21783
  /** Retrieves available LLMs, embedding models and reranker models. */
@@ -22393,6 +22432,9 @@ export type QueryMicrosoftTeamsChannelsArgs = {
22393
22432
  properties: MicrosoftTeamsChannelsInput;
22394
22433
  teamId: Scalars['ID']['input'];
22395
22434
  };
22435
+ export type QueryMicrosoftTeamsChatsArgs = {
22436
+ properties: MicrosoftTeamsChatsInput;
22437
+ };
22396
22438
  export type QueryMicrosoftTeamsTeamsArgs = {
22397
22439
  properties: MicrosoftTeamsTeamsInput;
22398
22440
  };
@@ -27291,8 +27333,9 @@ export type GetAgentQuery = {
27291
27333
  } | null;
27292
27334
  microsoftTeams?: {
27293
27335
  __typename?: 'MicrosoftTeamsDistributionProperties';
27294
- teamId: string;
27295
- channelId: string;
27336
+ chatId?: string | null;
27337
+ teamId?: string | null;
27338
+ channelId?: string | null;
27296
27339
  threadId?: string | null;
27297
27340
  } | null;
27298
27341
  twitter?: {
@@ -27821,8 +27864,9 @@ export type QueryAgentsQuery = {
27821
27864
  } | null;
27822
27865
  microsoftTeams?: {
27823
27866
  __typename?: 'MicrosoftTeamsDistributionProperties';
27824
- teamId: string;
27825
- channelId: string;
27867
+ chatId?: string | null;
27868
+ teamId?: string | null;
27869
+ channelId?: string | null;
27826
27870
  threadId?: string | null;
27827
27871
  } | null;
27828
27872
  twitter?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260428001",
3
+ "version": "1.0.20260428002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",