graphlit-client 1.0.20250830002 → 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.
@@ -10996,6 +10996,7 @@ export const CreateWorkflow = gql `
10996
10996
  }
10997
10997
  }
10998
10998
  enableEmailCollections
10999
+ enableFolderCollections
10999
11000
  }
11000
11001
  indexing {
11001
11002
  jobs {
@@ -11248,6 +11249,7 @@ export const GetWorkflow = gql `
11248
11249
  }
11249
11250
  }
11250
11251
  enableEmailCollections
11252
+ enableFolderCollections
11251
11253
  }
11252
11254
  indexing {
11253
11255
  jobs {
@@ -11473,6 +11475,7 @@ export const QueryWorkflows = gql `
11473
11475
  }
11474
11476
  }
11475
11477
  enableEmailCollections
11478
+ enableFolderCollections
11476
11479
  }
11477
11480
  indexing {
11478
11481
  jobs {
@@ -11693,6 +11696,7 @@ export const UpdateWorkflow = gql `
11693
11696
  }
11694
11697
  }
11695
11698
  enableEmailCollections
11699
+ enableFolderCollections
11696
11700
  }
11697
11701
  indexing {
11698
11702
  jobs {
@@ -11912,6 +11916,7 @@ export const UpsertWorkflow = gql `
11912
11916
  }
11913
11917
  }
11914
11918
  enableEmailCollections
11919
+ enableFolderCollections
11915
11920
  }
11916
11921
  indexing {
11917
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 */
@@ -5699,6 +5701,8 @@ export type IngestionWorkflowStage = {
5699
5701
  collections?: Maybe<Array<Maybe<EntityReference>>>;
5700
5702
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5701
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']>;
5702
5706
  /** The ingestion filter. */
5703
5707
  if?: Maybe<IngestionContentFilter>;
5704
5708
  /** The observations to be assigned to ingested content. */
@@ -5710,6 +5714,8 @@ export type IngestionWorkflowStageInput = {
5710
5714
  collections?: InputMaybe<Array<InputMaybe<EntityReferenceInput>>>;
5711
5715
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5712
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']>;
5713
5719
  /** The ingestion filter. */
5714
5720
  if?: InputMaybe<IngestionContentFilterInput>;
5715
5721
  /** The observations to be assigned to ingested content. */
@@ -28280,6 +28286,7 @@ export type CreateWorkflowMutation = {
28280
28286
  ingestion?: {
28281
28287
  __typename?: 'IngestionWorkflowStage';
28282
28288
  enableEmailCollections?: boolean | null;
28289
+ enableFolderCollections?: boolean | null;
28283
28290
  if?: {
28284
28291
  __typename?: 'IngestionContentFilter';
28285
28292
  types?: Array<ContentTypes> | null;
@@ -28599,6 +28606,7 @@ export type GetWorkflowQuery = {
28599
28606
  ingestion?: {
28600
28607
  __typename?: 'IngestionWorkflowStage';
28601
28608
  enableEmailCollections?: boolean | null;
28609
+ enableFolderCollections?: boolean | null;
28602
28610
  if?: {
28603
28611
  __typename?: 'IngestionContentFilter';
28604
28612
  types?: Array<ContentTypes> | null;
@@ -28884,6 +28892,7 @@ export type QueryWorkflowsQuery = {
28884
28892
  ingestion?: {
28885
28893
  __typename?: 'IngestionWorkflowStage';
28886
28894
  enableEmailCollections?: boolean | null;
28895
+ enableFolderCollections?: boolean | null;
28887
28896
  if?: {
28888
28897
  __typename?: 'IngestionContentFilter';
28889
28898
  types?: Array<ContentTypes> | null;
@@ -29161,6 +29170,7 @@ export type UpdateWorkflowMutation = {
29161
29170
  ingestion?: {
29162
29171
  __typename?: 'IngestionWorkflowStage';
29163
29172
  enableEmailCollections?: boolean | null;
29173
+ enableFolderCollections?: boolean | null;
29164
29174
  if?: {
29165
29175
  __typename?: 'IngestionContentFilter';
29166
29176
  types?: Array<ContentTypes> | null;
@@ -29437,6 +29447,7 @@ export type UpsertWorkflowMutation = {
29437
29447
  ingestion?: {
29438
29448
  __typename?: 'IngestionWorkflowStage';
29439
29449
  enableEmailCollections?: boolean | null;
29450
+ enableFolderCollections?: boolean | null;
29440
29451
  if?: {
29441
29452
  __typename?: 'IngestionContentFilter';
29442
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.20250830002",
3
+ "version": "1.0.20250904001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",