graphlit-client 1.0.20260428002 → 1.0.20260428004

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.
@@ -15921,39 +15921,6 @@ 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
- };
15957
15924
  /** Represents the Microsoft Teams distribution properties. */
15958
15925
  export type MicrosoftTeamsDistributionProperties = {
15959
15926
  __typename?: 'MicrosoftTeamsDistributionProperties';
@@ -21776,8 +21743,6 @@ export type Query = {
21776
21743
  microsoftCalendars?: Maybe<CalendarResults>;
21777
21744
  /** Retrieves available Microsoft Teams team channels. */
21778
21745
  microsoftTeamsChannels?: Maybe<MicrosoftTeamsChannelResults>;
21779
- /** Retrieves available Microsoft Teams chats. */
21780
- microsoftTeamsChats?: Maybe<MicrosoftTeamsChatResults>;
21781
21746
  /** Retrieves available Microsoft Teams teams. */
21782
21747
  microsoftTeamsTeams?: Maybe<MicrosoftTeamsTeamResults>;
21783
21748
  /** Retrieves available LLMs, embedding models and reranker models. */
@@ -22432,9 +22397,6 @@ export type QueryMicrosoftTeamsChannelsArgs = {
22432
22397
  properties: MicrosoftTeamsChannelsInput;
22433
22398
  teamId: Scalars['ID']['input'];
22434
22399
  };
22435
- export type QueryMicrosoftTeamsChatsArgs = {
22436
- properties: MicrosoftTeamsChatsInput;
22437
- };
22438
22400
  export type QueryMicrosoftTeamsTeamsArgs = {
22439
22401
  properties: MicrosoftTeamsTeamsInput;
22440
22402
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260428002",
3
+ "version": "1.0.20260428004",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",