graphlit-client 1.0.20260211002 → 1.0.20260211004

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.
@@ -8794,7 +8794,14 @@ export const GetFeed = gql `
8794
8794
  afterDate
8795
8795
  }
8796
8796
  attio {
8797
+ authenticationType
8797
8798
  apiKey
8799
+ clientId
8800
+ clientSecret
8801
+ refreshToken
8802
+ connector {
8803
+ id
8804
+ }
8798
8805
  afterDate
8799
8806
  beforeDate
8800
8807
  }
@@ -9562,7 +9569,14 @@ export const QueryFeeds = gql `
9562
9569
  afterDate
9563
9570
  }
9564
9571
  attio {
9572
+ authenticationType
9565
9573
  apiKey
9574
+ clientId
9575
+ clientSecret
9576
+ refreshToken
9577
+ connector {
9578
+ id
9579
+ }
9566
9580
  afterDate
9567
9581
  beforeDate
9568
9582
  }
@@ -836,6 +836,11 @@ export declare enum AttioIssueAuthenticationTypes {
836
836
  ApiKey = "API_KEY",
837
837
  Connector = "CONNECTOR"
838
838
  }
839
+ export declare enum AttioMeetingAuthenticationTypes {
840
+ AccessToken = "ACCESS_TOKEN",
841
+ ApiKey = "API_KEY",
842
+ Connector = "CONNECTOR"
843
+ }
839
844
  /** Represents Attio meeting transcript feed properties. */
840
845
  export type AttioMeetingProperties = {
841
846
  __typename?: 'AttioMeetingProperties';
@@ -843,17 +848,37 @@ export type AttioMeetingProperties = {
843
848
  afterDate?: Maybe<Scalars['DateTime']['output']>;
844
849
  /** Attio API key. */
845
850
  apiKey?: Maybe<Scalars['String']['output']>;
851
+ /** Attio authentication type. */
852
+ authenticationType?: Maybe<AttioMeetingAuthenticationTypes>;
846
853
  /** Filter meetings starting before this date (exclusive). */
847
854
  beforeDate?: Maybe<Scalars['DateTime']['output']>;
855
+ /** Attio OAuth2 client identifier. */
856
+ clientId?: Maybe<Scalars['String']['output']>;
857
+ /** Attio OAuth2 client secret. */
858
+ clientSecret?: Maybe<Scalars['String']['output']>;
859
+ /** Connector reference for credential retrieval. */
860
+ connector?: Maybe<EntityReference>;
861
+ /** Attio OAuth2 refresh token. */
862
+ refreshToken?: Maybe<Scalars['String']['output']>;
848
863
  };
849
864
  /** Represents Attio meeting transcript feed properties. */
850
865
  export type AttioMeetingPropertiesInput = {
851
866
  /** Filter meetings ending after this date (inclusive). */
852
867
  afterDate?: InputMaybe<Scalars['DateTime']['input']>;
853
868
  /** Attio API key. */
854
- apiKey: Scalars['String']['input'];
869
+ apiKey?: InputMaybe<Scalars['String']['input']>;
870
+ /** Attio authentication type, defaults to ApiKey. */
871
+ authenticationType?: InputMaybe<AttioMeetingAuthenticationTypes>;
855
872
  /** Filter meetings starting before this date (exclusive). */
856
873
  beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
874
+ /** Attio OAuth2 client identifier. */
875
+ clientId?: InputMaybe<Scalars['String']['input']>;
876
+ /** Attio OAuth2 client secret. */
877
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
878
+ /** Connector reference for credential retrieval. */
879
+ connector?: InputMaybe<EntityReferenceInput>;
880
+ /** Attio OAuth2 refresh token. */
881
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
857
882
  };
858
883
  /** Represents Attio meeting transcript feed properties. */
859
884
  export type AttioMeetingPropertiesUpdateInput = {
@@ -861,8 +886,18 @@ export type AttioMeetingPropertiesUpdateInput = {
861
886
  afterDate?: InputMaybe<Scalars['DateTime']['input']>;
862
887
  /** Attio API key. */
863
888
  apiKey?: InputMaybe<Scalars['String']['input']>;
889
+ /** Attio authentication type, defaults to ApiKey. */
890
+ authenticationType?: InputMaybe<AttioMeetingAuthenticationTypes>;
864
891
  /** Filter meetings starting before this date (exclusive). */
865
892
  beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
893
+ /** Attio OAuth2 client identifier. */
894
+ clientId?: InputMaybe<Scalars['String']['input']>;
895
+ /** Attio OAuth2 client secret. */
896
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
897
+ /** Connector reference for credential retrieval. */
898
+ connector?: InputMaybe<EntityReferenceInput>;
899
+ /** Attio OAuth2 refresh token. */
900
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
866
901
  };
867
902
  /** Represents Attio Tasks feed properties. */
868
903
  export type AttioTasksFeedProperties = {
@@ -14316,6 +14351,8 @@ export declare enum OAuthProviders {
14316
14351
  Microsoft = "MICROSOFT",
14317
14352
  /** Notion authentication provider */
14318
14353
  Notion = "NOTION",
14354
+ /** Salesforce authentication provider */
14355
+ Salesforce = "SALESFORCE",
14319
14356
  /** Slack authentication provider */
14320
14357
  Slack = "SLACK",
14321
14358
  /** Zendesk authentication provider */
@@ -30984,9 +31021,17 @@ export type GetFeedQuery = {
30984
31021
  } | null;
30985
31022
  attio?: {
30986
31023
  __typename?: 'AttioMeetingProperties';
31024
+ authenticationType?: AttioMeetingAuthenticationTypes | null;
30987
31025
  apiKey?: string | null;
31026
+ clientId?: string | null;
31027
+ clientSecret?: string | null;
31028
+ refreshToken?: string | null;
30988
31029
  afterDate?: any | null;
30989
31030
  beforeDate?: any | null;
31031
+ connector?: {
31032
+ __typename?: 'EntityReference';
31033
+ id: string;
31034
+ } | null;
30990
31035
  } | null;
30991
31036
  fathom?: {
30992
31037
  __typename?: 'FathomProperties';
@@ -31918,9 +31963,17 @@ export type QueryFeedsQuery = {
31918
31963
  } | null;
31919
31964
  attio?: {
31920
31965
  __typename?: 'AttioMeetingProperties';
31966
+ authenticationType?: AttioMeetingAuthenticationTypes | null;
31921
31967
  apiKey?: string | null;
31968
+ clientId?: string | null;
31969
+ clientSecret?: string | null;
31970
+ refreshToken?: string | null;
31922
31971
  afterDate?: any | null;
31923
31972
  beforeDate?: any | null;
31973
+ connector?: {
31974
+ __typename?: 'EntityReference';
31975
+ id: string;
31976
+ } | null;
31924
31977
  } | null;
31925
31978
  fathom?: {
31926
31979
  __typename?: 'FathomProperties';
@@ -141,6 +141,12 @@ export var AttioIssueAuthenticationTypes;
141
141
  AttioIssueAuthenticationTypes["ApiKey"] = "API_KEY";
142
142
  AttioIssueAuthenticationTypes["Connector"] = "CONNECTOR";
143
143
  })(AttioIssueAuthenticationTypes || (AttioIssueAuthenticationTypes = {}));
144
+ export var AttioMeetingAuthenticationTypes;
145
+ (function (AttioMeetingAuthenticationTypes) {
146
+ AttioMeetingAuthenticationTypes["AccessToken"] = "ACCESS_TOKEN";
147
+ AttioMeetingAuthenticationTypes["ApiKey"] = "API_KEY";
148
+ AttioMeetingAuthenticationTypes["Connector"] = "CONNECTOR";
149
+ })(AttioMeetingAuthenticationTypes || (AttioMeetingAuthenticationTypes = {}));
144
150
  /** Authentication service type */
145
151
  export var AuthenticationServiceTypes;
146
152
  (function (AuthenticationServiceTypes) {
@@ -2038,6 +2044,8 @@ export var OAuthProviders;
2038
2044
  OAuthProviders["Microsoft"] = "MICROSOFT";
2039
2045
  /** Notion authentication provider */
2040
2046
  OAuthProviders["Notion"] = "NOTION";
2047
+ /** Salesforce authentication provider */
2048
+ OAuthProviders["Salesforce"] = "SALESFORCE";
2041
2049
  /** Slack authentication provider */
2042
2050
  OAuthProviders["Slack"] = "SLACK";
2043
2051
  /** Zendesk authentication provider */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260211002",
3
+ "version": "1.0.20260211004",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",