graphlit-client 1.0.20240515001 → 1.0.20240516001

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.
@@ -1948,7 +1948,6 @@ exports.GetFeed = (0, graphql_tag_1.default) `
1948
1948
  }
1949
1949
  microsoft {
1950
1950
  type
1951
- tenantId
1952
1951
  refreshToken
1953
1952
  }
1954
1953
  }
@@ -2110,7 +2109,6 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
2110
2109
  }
2111
2110
  microsoft {
2112
2111
  type
2113
- tenantId
2114
2112
  refreshToken
2115
2113
  }
2116
2114
  }
@@ -3932,8 +3932,6 @@ export type MicrosoftEmailFeedProperties = {
3932
3932
  __typename?: 'MicrosoftEmailFeedProperties';
3933
3933
  /** Microsoft refresh token. */
3934
3934
  refreshToken: Scalars['String']['output'];
3935
- /** Azure Active Directory tenant identifier. */
3936
- tenantId?: Maybe<Scalars['String']['output']>;
3937
3935
  /** Email listing type, i.e. past or new emails. */
3938
3936
  type?: Maybe<EmailListingTypes>;
3939
3937
  };
@@ -3941,8 +3939,6 @@ export type MicrosoftEmailFeedProperties = {
3941
3939
  export type MicrosoftEmailFeedPropertiesInput = {
3942
3940
  /** Microsoft refresh token. */
3943
3941
  refreshToken: Scalars['String']['input'];
3944
- /** Azure Active Directory tenant identifier. */
3945
- tenantId?: InputMaybe<Scalars['String']['input']>;
3946
3942
  /** Email listing type, i.e. past or new emails. */
3947
3943
  type?: InputMaybe<EmailListingTypes>;
3948
3944
  };
@@ -3950,8 +3946,6 @@ export type MicrosoftEmailFeedPropertiesInput = {
3950
3946
  export type MicrosoftEmailFeedPropertiesUpdateInput = {
3951
3947
  /** Microsoft refresh token. */
3952
3948
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3953
- /** Azure Active Directory tenant identifier. */
3954
- tenantId?: InputMaybe<Scalars['String']['input']>;
3955
3949
  /** Email listing type, i.e. past or new emails. */
3956
3950
  type?: InputMaybe<EmailListingTypes>;
3957
3951
  };
@@ -3973,8 +3967,6 @@ export type MicrosoftTeamsChannelResults = {
3973
3967
  export type MicrosoftTeamsChannelsInput = {
3974
3968
  /** The Microsoft Graph refresh token. */
3975
3969
  refreshToken: Scalars['String']['input'];
3976
- /** Azure Active Directory tenant identifier. */
3977
- tenantId: Scalars['String']['input'];
3978
3970
  };
3979
3971
  /** Represents Microsoft Teams feed properties. */
3980
3972
  export type MicrosoftTeamsFeedProperties = {
@@ -3987,8 +3979,6 @@ export type MicrosoftTeamsFeedProperties = {
3987
3979
  refreshToken: Scalars['String']['output'];
3988
3980
  /** The Microsoft Teams team identifier. */
3989
3981
  teamId: Scalars['String']['output'];
3990
- /** Azure Active Directory tenant identifier. */
3991
- tenantId: Scalars['String']['output'];
3992
3982
  /** Feed listing type, i.e. past or new messages. */
3993
3983
  type?: Maybe<FeedListingTypes>;
3994
3984
  };
@@ -4002,8 +3992,6 @@ export type MicrosoftTeamsFeedPropertiesInput = {
4002
3992
  refreshToken: Scalars['String']['input'];
4003
3993
  /** The Microsoft Teams team identifier. */
4004
3994
  teamId: Scalars['String']['input'];
4005
- /** Azure Active Directory tenant identifier. */
4006
- tenantId: Scalars['String']['input'];
4007
3995
  /** Feed listing type, i.e. past or new messages. */
4008
3996
  type?: InputMaybe<FeedListingTypes>;
4009
3997
  };
@@ -4017,8 +4005,6 @@ export type MicrosoftTeamsFeedPropertiesUpdateInput = {
4017
4005
  refreshToken?: InputMaybe<Scalars['String']['input']>;
4018
4006
  /** The Microsoft Teams team identifier. */
4019
4007
  teamId: Scalars['String']['input'];
4020
- /** Azure Active Directory tenant identifier. */
4021
- tenantId?: InputMaybe<Scalars['String']['input']>;
4022
4008
  /** Feed listing type, i.e. past or new messages. */
4023
4009
  type?: InputMaybe<FeedListingTypes>;
4024
4010
  };
@@ -4040,8 +4026,6 @@ export type MicrosoftTeamsTeamResults = {
4040
4026
  export type MicrosoftTeamsTeamsInput = {
4041
4027
  /** The Microsoft Graph refresh token. */
4042
4028
  refreshToken: Scalars['String']['input'];
4043
- /** Azure Active Directory tenant identifier. */
4044
- tenantId: Scalars['String']['input'];
4045
4029
  };
4046
4030
  /** Represents Mistral model properties. */
4047
4031
  export type MistralModelProperties = {
@@ -10708,7 +10692,6 @@ export type GetFeedQuery = {
10708
10692
  microsoft?: {
10709
10693
  __typename?: 'MicrosoftEmailFeedProperties';
10710
10694
  type?: EmailListingTypes | null;
10711
- tenantId?: string | null;
10712
10695
  refreshToken: string;
10713
10696
  } | null;
10714
10697
  } | null;
@@ -10905,7 +10888,6 @@ export type QueryFeedsQuery = {
10905
10888
  microsoft?: {
10906
10889
  __typename?: 'MicrosoftEmailFeedProperties';
10907
10890
  type?: EmailListingTypes | null;
10908
- tenantId?: string | null;
10909
10891
  refreshToken: string;
10910
10892
  } | null;
10911
10893
  } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240515001",
3
+ "version": "1.0.20240516001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",