graphlit-client 1.0.20250731002 → 1.0.20250801001

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.
@@ -1236,6 +1236,7 @@ export const GetContent = gql `
1236
1236
  sensitivity
1237
1237
  priority
1238
1238
  importance
1239
+ attachmentCount
1239
1240
  from {
1240
1241
  name
1241
1242
  email
@@ -1961,6 +1962,7 @@ export const LookupContents = gql `
1961
1962
  sensitivity
1962
1963
  priority
1963
1964
  importance
1965
+ attachmentCount
1964
1966
  from {
1965
1967
  name
1966
1968
  email
@@ -2522,6 +2524,7 @@ export const QueryContents = gql `
2522
2524
  sensitivity
2523
2525
  priority
2524
2526
  importance
2527
+ attachmentCount
2525
2528
  from {
2526
2529
  name
2527
2530
  email
@@ -2831,6 +2834,7 @@ export const QueryContentsObservations = gql `
2831
2834
  sensitivity
2832
2835
  priority
2833
2836
  importance
2837
+ attachmentCount
2834
2838
  from {
2835
2839
  name
2836
2840
  email
@@ -1152,11 +1152,11 @@ export type BoxFolderResults = {
1152
1152
  /** Represents Box folders properties. */
1153
1153
  export type BoxFoldersInput = {
1154
1154
  /** Box client identifier. */
1155
- clientId: Scalars['String']['input'];
1155
+ clientId?: InputMaybe<Scalars['String']['input']>;
1156
1156
  /** Box client secret. */
1157
- clientSecret: Scalars['String']['input'];
1157
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
1158
1158
  /** Box refresh token. */
1159
- refreshToken: Scalars['String']['input'];
1159
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
1160
1160
  };
1161
1161
  /** Represents a calendar event attendee. */
1162
1162
  export type CalendarAttendee = {
@@ -3341,11 +3341,11 @@ export type DropboxFolderResults = {
3341
3341
  /** Represents Dropbox folders properties. */
3342
3342
  export type DropboxFoldersInput = {
3343
3343
  /** Dropbox app key. */
3344
- appKey: Scalars['String']['input'];
3344
+ appKey?: InputMaybe<Scalars['String']['input']>;
3345
3345
  /** Dropbox app secret. */
3346
- appSecret: Scalars['String']['input'];
3346
+ appSecret?: InputMaybe<Scalars['String']['input']>;
3347
3347
  /** Dropbox refresh token. */
3348
- refreshToken: Scalars['String']['input'];
3348
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
3349
3349
  };
3350
3350
  /** ElevenLabs models */
3351
3351
  export declare enum ElevenLabsModels {
@@ -3454,6 +3454,8 @@ export declare enum EmailListingTypes {
3454
3454
  /** Represents email metadata. */
3455
3455
  export type EmailMetadata = {
3456
3456
  __typename?: 'EmailMetadata';
3457
+ /** The email attachment count. */
3458
+ attachmentCount?: Maybe<Scalars['Int']['output']>;
3457
3459
  /** The BCC recipients of the email. */
3458
3460
  bcc?: Maybe<Array<Maybe<PersonReference>>>;
3459
3461
  /** The CC recipients of the email. */
@@ -3481,6 +3483,8 @@ export type EmailMetadata = {
3481
3483
  };
3482
3484
  /** Represents email metadata. */
3483
3485
  export type EmailMetadataInput = {
3486
+ /** The email attachment count. */
3487
+ attachmentCount?: InputMaybe<Scalars['Int']['input']>;
3484
3488
  /** The metadata creation date. */
3485
3489
  creationDate?: InputMaybe<Scalars['DateTime']['input']>;
3486
3490
  /** The email identifier. */
@@ -4836,12 +4840,12 @@ export type GoogleCalendarsInput = {
4836
4840
  authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
4837
4841
  /** Authorization identifier, for Connector authentication type. */
4838
4842
  authorizationId?: InputMaybe<Scalars['String']['input']>;
4839
- /** Google OAuth2 client identifier. */
4840
- clientId: Scalars['String']['input'];
4841
- /** Google OAuth2 client secret. */
4842
- clientSecret: Scalars['String']['input'];
4843
- /** Google OAuth2 refresh token. */
4844
- refreshToken: Scalars['String']['input'];
4843
+ /** Google OAuth2 client identifier, for User authentication type. */
4844
+ clientId?: InputMaybe<Scalars['String']['input']>;
4845
+ /** Google OAuth2 client secret, for User authentication type. */
4846
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
4847
+ /** Google OAuth2 refresh token, for User authentication type. */
4848
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4845
4849
  };
4846
4850
  /** Google Drive authentication type */
4847
4851
  export declare enum GoogleDriveAuthenticationTypes {
@@ -4931,11 +4935,11 @@ export type GoogleDriveFoldersInput = {
4931
4935
  /** Authentication identifier, for Connector authentication type. */
4932
4936
  authorizationId?: InputMaybe<Scalars['String']['input']>;
4933
4937
  /** Google OAuth2 client identifier. */
4934
- clientId: Scalars['String']['input'];
4938
+ clientId?: InputMaybe<Scalars['String']['input']>;
4935
4939
  /** Google OAuth2 client secret. */
4936
- clientSecret: Scalars['String']['input'];
4940
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
4937
4941
  /** Google OAuth2 refresh token. */
4938
- refreshToken: Scalars['String']['input'];
4942
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
4939
4943
  };
4940
4944
  export declare enum GoogleEmailAuthenticationTypes {
4941
4945
  Connector = "CONNECTOR",
@@ -8035,12 +8039,12 @@ export type MicrosoftCalendarsInput = {
8035
8039
  authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
8036
8040
  /** Authorization identifier, for Connector authentication type. */
8037
8041
  authorizationId?: InputMaybe<Scalars['String']['input']>;
8038
- /** Microsoft Entra ID client identifier. */
8039
- clientId: Scalars['String']['input'];
8040
- /** Microsoft Entra ID client secret. */
8041
- clientSecret: Scalars['String']['input'];
8042
- /** Microsoft Entra ID refresh token. */
8043
- refreshToken: Scalars['String']['input'];
8042
+ /** Microsoft Entra ID client identifier, for User authentication type. */
8043
+ clientId?: InputMaybe<Scalars['String']['input']>;
8044
+ /** Microsoft Entra ID client secret, for User authentication type. */
8045
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
8046
+ /** Microsoft Entra ID refresh token, for User authentication type. */
8047
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
8044
8048
  };
8045
8049
  export declare enum MicrosoftEmailAuthenticationTypes {
8046
8050
  Connector = "CONNECTOR",
@@ -10226,11 +10230,11 @@ export type OneDriveFoldersInput = {
10226
10230
  /** Authentication identifier, for Connector authentication type. */
10227
10231
  authorizationId?: InputMaybe<Scalars['String']['input']>;
10228
10232
  /** Microsoft Entra ID client identifier. */
10229
- clientId: Scalars['String']['input'];
10233
+ clientId?: InputMaybe<Scalars['String']['input']>;
10230
10234
  /** Microsoft Entra ID client secret. */
10231
- clientSecret: Scalars['String']['input'];
10235
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
10232
10236
  /** Microsoft Entra ID refresh token. */
10233
- refreshToken: Scalars['String']['input'];
10237
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
10234
10238
  };
10235
10239
  /** Represents an OpenAI image entity extraction connector. */
10236
10240
  export type OpenAiImageExtractionProperties = {
@@ -16623,6 +16627,7 @@ export type GetContentQuery = {
16623
16627
  sensitivity?: MailSensitivity | null;
16624
16628
  priority?: MailPriority | null;
16625
16629
  importance?: MailImportance | null;
16630
+ attachmentCount?: number | null;
16626
16631
  from?: Array<{
16627
16632
  __typename?: 'PersonReference';
16628
16633
  name?: string | null;
@@ -17442,6 +17447,7 @@ export type LookupContentsQuery = {
17442
17447
  sensitivity?: MailSensitivity | null;
17443
17448
  priority?: MailPriority | null;
17444
17449
  importance?: MailImportance | null;
17450
+ attachmentCount?: number | null;
17445
17451
  from?: Array<{
17446
17452
  __typename?: 'PersonReference';
17447
17453
  name?: string | null;
@@ -18060,6 +18066,7 @@ export type QueryContentsQuery = {
18060
18066
  sensitivity?: MailSensitivity | null;
18061
18067
  priority?: MailPriority | null;
18062
18068
  importance?: MailImportance | null;
18069
+ attachmentCount?: number | null;
18063
18070
  from?: Array<{
18064
18071
  __typename?: 'PersonReference';
18065
18072
  name?: string | null;
@@ -18420,6 +18427,7 @@ export type QueryContentsObservationsQuery = {
18420
18427
  sensitivity?: MailSensitivity | null;
18421
18428
  priority?: MailPriority | null;
18422
18429
  importance?: MailImportance | null;
18430
+ attachmentCount?: number | null;
18423
18431
  from?: Array<{
18424
18432
  __typename?: 'PersonReference';
18425
18433
  name?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250731002",
3
+ "version": "1.0.20250801001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",