graphlit-client 1.0.20250830001 → 1.0.20250830002

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.
@@ -6554,6 +6554,7 @@ export const GetFeed = gql `
6554
6554
  includeAttachments
6555
6555
  google {
6556
6556
  type
6557
+ filter
6557
6558
  includeSpam
6558
6559
  excludeSentItems
6559
6560
  includeDeletedItems
@@ -6566,6 +6567,7 @@ export const GetFeed = gql `
6566
6567
  }
6567
6568
  microsoft {
6568
6569
  type
6570
+ filter
6569
6571
  includeSpam
6570
6572
  excludeSentItems
6571
6573
  includeDeletedItems
@@ -6890,6 +6892,7 @@ export const QueryFeeds = gql `
6890
6892
  includeAttachments
6891
6893
  google {
6892
6894
  type
6895
+ filter
6893
6896
  includeSpam
6894
6897
  excludeSentItems
6895
6898
  includeDeletedItems
@@ -6902,6 +6905,7 @@ export const QueryFeeds = gql `
6902
6905
  }
6903
6906
  microsoft {
6904
6907
  type
6908
+ filter
6905
6909
  includeSpam
6906
6910
  excludeSentItems
6907
6911
  includeDeletedItems
@@ -4994,6 +4994,8 @@ export type GoogleEmailFeedProperties = {
4994
4994
  clientSecret?: Maybe<Scalars['String']['output']>;
4995
4995
  /** Whether to exclude Sent messages in email listing. Default is False. */
4996
4996
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
4997
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
4998
+ filter?: Maybe<Scalars['String']['output']>;
4997
4999
  /** Whether to only read past emails from Inbox. Default is False. */
4998
5000
  inboxOnly?: Maybe<Scalars['Boolean']['output']>;
4999
5001
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -5017,6 +5019,8 @@ export type GoogleEmailFeedPropertiesInput = {
5017
5019
  clientSecret?: InputMaybe<Scalars['String']['input']>;
5018
5020
  /** Whether to exclude Sent messages in email listing. Default is False. */
5019
5021
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
5022
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
5023
+ filter?: InputMaybe<Scalars['String']['input']>;
5020
5024
  /** Whether to only read past emails from Inbox. Default is False. */
5021
5025
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
5022
5026
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -5040,6 +5044,8 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
5040
5044
  clientSecret?: InputMaybe<Scalars['String']['input']>;
5041
5045
  /** Whether to exclude Sent messages in email listing. Default is False. */
5042
5046
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
5047
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
5048
+ filter?: InputMaybe<Scalars['String']['input']>;
5043
5049
  /** Whether to only read past emails from Inbox. Default is False. */
5044
5050
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
5045
5051
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -8125,6 +8131,8 @@ export type MicrosoftEmailFeedProperties = {
8125
8131
  clientSecret?: Maybe<Scalars['String']['output']>;
8126
8132
  /** Whether to exclude Sent messages in email listing. Default is False. */
8127
8133
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
8134
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8135
+ filter?: Maybe<Scalars['String']['output']>;
8128
8136
  /** Whether to only read past emails from Inbox. Default is False. */
8129
8137
  inboxOnly?: Maybe<Scalars['Boolean']['output']>;
8130
8138
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -8148,6 +8156,8 @@ export type MicrosoftEmailFeedPropertiesInput = {
8148
8156
  clientSecret?: InputMaybe<Scalars['String']['input']>;
8149
8157
  /** Whether to exclude Sent messages in email listing. Default is False. */
8150
8158
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
8159
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8160
+ filter?: InputMaybe<Scalars['String']['input']>;
8151
8161
  /** Whether to only read past emails from Inbox. Default is False. */
8152
8162
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
8153
8163
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -8171,6 +8181,8 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
8171
8181
  clientSecret?: InputMaybe<Scalars['String']['input']>;
8172
8182
  /** Whether to exclude Sent messages in email listing. Default is False. */
8173
8183
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
8184
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8185
+ filter?: InputMaybe<Scalars['String']['input']>;
8174
8186
  /** Whether to only read past emails from Inbox. Default is False. */
8175
8187
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
8176
8188
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -22700,6 +22712,7 @@ export type GetFeedQuery = {
22700
22712
  google?: {
22701
22713
  __typename?: 'GoogleEmailFeedProperties';
22702
22714
  type?: EmailListingTypes | null;
22715
+ filter?: string | null;
22703
22716
  includeSpam?: boolean | null;
22704
22717
  excludeSentItems?: boolean | null;
22705
22718
  includeDeletedItems?: boolean | null;
@@ -22713,6 +22726,7 @@ export type GetFeedQuery = {
22713
22726
  microsoft?: {
22714
22727
  __typename?: 'MicrosoftEmailFeedProperties';
22715
22728
  type?: EmailListingTypes | null;
22729
+ filter?: string | null;
22716
22730
  includeSpam?: boolean | null;
22717
22731
  excludeSentItems?: boolean | null;
22718
22732
  includeDeletedItems?: boolean | null;
@@ -23104,6 +23118,7 @@ export type QueryFeedsQuery = {
23104
23118
  google?: {
23105
23119
  __typename?: 'GoogleEmailFeedProperties';
23106
23120
  type?: EmailListingTypes | null;
23121
+ filter?: string | null;
23107
23122
  includeSpam?: boolean | null;
23108
23123
  excludeSentItems?: boolean | null;
23109
23124
  includeDeletedItems?: boolean | null;
@@ -23117,6 +23132,7 @@ export type QueryFeedsQuery = {
23117
23132
  microsoft?: {
23118
23133
  __typename?: 'MicrosoftEmailFeedProperties';
23119
23134
  type?: EmailListingTypes | null;
23135
+ filter?: string | null;
23120
23136
  includeSpam?: boolean | null;
23121
23137
  excludeSentItems?: boolean | null;
23122
23138
  includeDeletedItems?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250830001",
3
+ "version": "1.0.20250830002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",