graphlit-client 1.0.20250830001 → 1.0.20250904001

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
@@ -10992,6 +10996,7 @@ export const CreateWorkflow = gql `
10992
10996
  }
10993
10997
  }
10994
10998
  enableEmailCollections
10999
+ enableFolderCollections
10995
11000
  }
10996
11001
  indexing {
10997
11002
  jobs {
@@ -11244,6 +11249,7 @@ export const GetWorkflow = gql `
11244
11249
  }
11245
11250
  }
11246
11251
  enableEmailCollections
11252
+ enableFolderCollections
11247
11253
  }
11248
11254
  indexing {
11249
11255
  jobs {
@@ -11469,6 +11475,7 @@ export const QueryWorkflows = gql `
11469
11475
  }
11470
11476
  }
11471
11477
  enableEmailCollections
11478
+ enableFolderCollections
11472
11479
  }
11473
11480
  indexing {
11474
11481
  jobs {
@@ -11689,6 +11696,7 @@ export const UpdateWorkflow = gql `
11689
11696
  }
11690
11697
  }
11691
11698
  enableEmailCollections
11699
+ enableFolderCollections
11692
11700
  }
11693
11701
  indexing {
11694
11702
  jobs {
@@ -11908,6 +11916,7 @@ export const UpsertWorkflow = gql `
11908
11916
  }
11909
11917
  }
11910
11918
  enableEmailCollections
11919
+ enableFolderCollections
11911
11920
  }
11912
11921
  indexing {
11913
11922
  jobs {
@@ -1703,6 +1703,8 @@ export type CollectionResults = {
1703
1703
  export declare enum CollectionTypes {
1704
1704
  /** Content collection */
1705
1705
  Collection = "COLLECTION",
1706
+ /** Site folder */
1707
+ Folder = "FOLDER",
1706
1708
  /** Recurring event series */
1707
1709
  Series = "SERIES",
1708
1710
  /** Email thread */
@@ -4994,6 +4996,8 @@ export type GoogleEmailFeedProperties = {
4994
4996
  clientSecret?: Maybe<Scalars['String']['output']>;
4995
4997
  /** Whether to exclude Sent messages in email listing. Default is False. */
4996
4998
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
4999
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
5000
+ filter?: Maybe<Scalars['String']['output']>;
4997
5001
  /** Whether to only read past emails from Inbox. Default is False. */
4998
5002
  inboxOnly?: Maybe<Scalars['Boolean']['output']>;
4999
5003
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -5017,6 +5021,8 @@ export type GoogleEmailFeedPropertiesInput = {
5017
5021
  clientSecret?: InputMaybe<Scalars['String']['input']>;
5018
5022
  /** Whether to exclude Sent messages in email listing. Default is False. */
5019
5023
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
5024
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
5025
+ filter?: InputMaybe<Scalars['String']['input']>;
5020
5026
  /** Whether to only read past emails from Inbox. Default is False. */
5021
5027
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
5022
5028
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -5040,6 +5046,8 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
5040
5046
  clientSecret?: InputMaybe<Scalars['String']['input']>;
5041
5047
  /** Whether to exclude Sent messages in email listing. Default is False. */
5042
5048
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
5049
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
5050
+ filter?: InputMaybe<Scalars['String']['input']>;
5043
5051
  /** Whether to only read past emails from Inbox. Default is False. */
5044
5052
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
5045
5053
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -5693,6 +5701,8 @@ export type IngestionWorkflowStage = {
5693
5701
  collections?: Maybe<Array<Maybe<EntityReference>>>;
5694
5702
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5695
5703
  enableEmailCollections?: Maybe<Scalars['Boolean']['output']>;
5704
+ /** Whether to create collections for every site folder (i.e. '<parent>/<child>'). Disabled by default. */
5705
+ enableFolderCollections?: Maybe<Scalars['Boolean']['output']>;
5696
5706
  /** The ingestion filter. */
5697
5707
  if?: Maybe<IngestionContentFilter>;
5698
5708
  /** The observations to be assigned to ingested content. */
@@ -5704,6 +5714,8 @@ export type IngestionWorkflowStageInput = {
5704
5714
  collections?: InputMaybe<Array<InputMaybe<EntityReferenceInput>>>;
5705
5715
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5706
5716
  enableEmailCollections?: InputMaybe<Scalars['Boolean']['input']>;
5717
+ /** Whether to create collections for every site folder (i.e. '<parent>/<child>'). Disabled by default. */
5718
+ enableFolderCollections?: InputMaybe<Scalars['Boolean']['input']>;
5707
5719
  /** The ingestion filter. */
5708
5720
  if?: InputMaybe<IngestionContentFilterInput>;
5709
5721
  /** The observations to be assigned to ingested content. */
@@ -8125,6 +8137,8 @@ export type MicrosoftEmailFeedProperties = {
8125
8137
  clientSecret?: Maybe<Scalars['String']['output']>;
8126
8138
  /** Whether to exclude Sent messages in email listing. Default is False. */
8127
8139
  excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
8140
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8141
+ filter?: Maybe<Scalars['String']['output']>;
8128
8142
  /** Whether to only read past emails from Inbox. Default is False. */
8129
8143
  inboxOnly?: Maybe<Scalars['Boolean']['output']>;
8130
8144
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -8148,6 +8162,8 @@ export type MicrosoftEmailFeedPropertiesInput = {
8148
8162
  clientSecret?: InputMaybe<Scalars['String']['input']>;
8149
8163
  /** Whether to exclude Sent messages in email listing. Default is False. */
8150
8164
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
8165
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8166
+ filter?: InputMaybe<Scalars['String']['input']>;
8151
8167
  /** Whether to only read past emails from Inbox. Default is False. */
8152
8168
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
8153
8169
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -8171,6 +8187,8 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
8171
8187
  clientSecret?: InputMaybe<Scalars['String']['input']>;
8172
8188
  /** Whether to exclude Sent messages in email listing. Default is False. */
8173
8189
  excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
8190
+ /** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
8191
+ filter?: InputMaybe<Scalars['String']['input']>;
8174
8192
  /** Whether to only read past emails from Inbox. Default is False. */
8175
8193
  inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
8176
8194
  /** Whether to include Deleted messages in email listing. Default is False. */
@@ -22700,6 +22718,7 @@ export type GetFeedQuery = {
22700
22718
  google?: {
22701
22719
  __typename?: 'GoogleEmailFeedProperties';
22702
22720
  type?: EmailListingTypes | null;
22721
+ filter?: string | null;
22703
22722
  includeSpam?: boolean | null;
22704
22723
  excludeSentItems?: boolean | null;
22705
22724
  includeDeletedItems?: boolean | null;
@@ -22713,6 +22732,7 @@ export type GetFeedQuery = {
22713
22732
  microsoft?: {
22714
22733
  __typename?: 'MicrosoftEmailFeedProperties';
22715
22734
  type?: EmailListingTypes | null;
22735
+ filter?: string | null;
22716
22736
  includeSpam?: boolean | null;
22717
22737
  excludeSentItems?: boolean | null;
22718
22738
  includeDeletedItems?: boolean | null;
@@ -23104,6 +23124,7 @@ export type QueryFeedsQuery = {
23104
23124
  google?: {
23105
23125
  __typename?: 'GoogleEmailFeedProperties';
23106
23126
  type?: EmailListingTypes | null;
23127
+ filter?: string | null;
23107
23128
  includeSpam?: boolean | null;
23108
23129
  excludeSentItems?: boolean | null;
23109
23130
  includeDeletedItems?: boolean | null;
@@ -23117,6 +23138,7 @@ export type QueryFeedsQuery = {
23117
23138
  microsoft?: {
23118
23139
  __typename?: 'MicrosoftEmailFeedProperties';
23119
23140
  type?: EmailListingTypes | null;
23141
+ filter?: string | null;
23120
23142
  includeSpam?: boolean | null;
23121
23143
  excludeSentItems?: boolean | null;
23122
23144
  includeDeletedItems?: boolean | null;
@@ -28264,6 +28286,7 @@ export type CreateWorkflowMutation = {
28264
28286
  ingestion?: {
28265
28287
  __typename?: 'IngestionWorkflowStage';
28266
28288
  enableEmailCollections?: boolean | null;
28289
+ enableFolderCollections?: boolean | null;
28267
28290
  if?: {
28268
28291
  __typename?: 'IngestionContentFilter';
28269
28292
  types?: Array<ContentTypes> | null;
@@ -28583,6 +28606,7 @@ export type GetWorkflowQuery = {
28583
28606
  ingestion?: {
28584
28607
  __typename?: 'IngestionWorkflowStage';
28585
28608
  enableEmailCollections?: boolean | null;
28609
+ enableFolderCollections?: boolean | null;
28586
28610
  if?: {
28587
28611
  __typename?: 'IngestionContentFilter';
28588
28612
  types?: Array<ContentTypes> | null;
@@ -28868,6 +28892,7 @@ export type QueryWorkflowsQuery = {
28868
28892
  ingestion?: {
28869
28893
  __typename?: 'IngestionWorkflowStage';
28870
28894
  enableEmailCollections?: boolean | null;
28895
+ enableFolderCollections?: boolean | null;
28871
28896
  if?: {
28872
28897
  __typename?: 'IngestionContentFilter';
28873
28898
  types?: Array<ContentTypes> | null;
@@ -29145,6 +29170,7 @@ export type UpdateWorkflowMutation = {
29145
29170
  ingestion?: {
29146
29171
  __typename?: 'IngestionWorkflowStage';
29147
29172
  enableEmailCollections?: boolean | null;
29173
+ enableFolderCollections?: boolean | null;
29148
29174
  if?: {
29149
29175
  __typename?: 'IngestionContentFilter';
29150
29176
  types?: Array<ContentTypes> | null;
@@ -29421,6 +29447,7 @@ export type UpsertWorkflowMutation = {
29421
29447
  ingestion?: {
29422
29448
  __typename?: 'IngestionWorkflowStage';
29423
29449
  enableEmailCollections?: boolean | null;
29450
+ enableFolderCollections?: boolean | null;
29424
29451
  if?: {
29425
29452
  __typename?: 'IngestionContentFilter';
29426
29453
  types?: Array<ContentTypes> | null;
@@ -322,6 +322,8 @@ export var CollectionTypes;
322
322
  (function (CollectionTypes) {
323
323
  /** Content collection */
324
324
  CollectionTypes["Collection"] = "COLLECTION";
325
+ /** Site folder */
326
+ CollectionTypes["Folder"] = "FOLDER";
325
327
  /** Recurring event series */
326
328
  CollectionTypes["Series"] = "SERIES";
327
329
  /** Email thread */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250830001",
3
+ "version": "1.0.20250904001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",