graphlit-client 1.0.20250830002 → 1.0.20250904002

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 {
@@ -205,6 +205,8 @@ export type AlertSchedulePolicy = {
205
205
  __typename?: 'AlertSchedulePolicy';
206
206
  /** If absolute time, the datetime value. */
207
207
  absoluteTime?: Maybe<Scalars['DateTime']['output']>;
208
+ /** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
209
+ cron?: Maybe<Scalars['String']['output']>;
208
210
  /** The delay between recurrences of the alert. */
209
211
  delay?: Maybe<Scalars['TimeSpan']['output']>;
210
212
  /** The alert recurrence type. */
@@ -217,11 +219,15 @@ export type AlertSchedulePolicy = {
217
219
  repeatUntilTime?: Maybe<Scalars['DateTime']['output']>;
218
220
  /** The type of time interval. */
219
221
  timeType?: Maybe<PolicyTimeTypes>;
222
+ /** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
223
+ timeZoneId?: Maybe<Scalars['String']['output']>;
220
224
  };
221
225
  /** Represents an alert scheduling policy. */
222
226
  export type AlertSchedulePolicyInput = {
223
227
  /** If absolute time, the datetime value. */
224
228
  absoluteTime?: InputMaybe<Scalars['DateTime']['input']>;
229
+ /** 6-field NCRONTAB expression (with seconds), e.g. '0 *\/5 * * * *'. If set, this takes precedence for scheduling. */
230
+ cron?: InputMaybe<Scalars['String']['input']>;
225
231
  /** The delay between recurrences of the alert. */
226
232
  delay?: InputMaybe<Scalars['TimeSpan']['input']>;
227
233
  /** The alert recurrence type. */
@@ -234,6 +240,8 @@ export type AlertSchedulePolicyInput = {
234
240
  repeatUntilTime?: InputMaybe<Scalars['DateTime']['input']>;
235
241
  /** The type of time interval. */
236
242
  timeType?: InputMaybe<PolicyTimeTypes>;
243
+ /** Time zone for interpreting Cron. Accepts IANA ('America/Los_Angeles') or Windows ('Pacific Standard Time') format. If null, Cron is interpreted as UTC. */
244
+ timeZoneId?: InputMaybe<Scalars['String']['input']>;
237
245
  };
238
246
  /** Alert type */
239
247
  export declare enum AlertTypes {
@@ -1703,6 +1711,8 @@ export type CollectionResults = {
1703
1711
  export declare enum CollectionTypes {
1704
1712
  /** Content collection */
1705
1713
  Collection = "COLLECTION",
1714
+ /** Site folder */
1715
+ Folder = "FOLDER",
1706
1716
  /** Recurring event series */
1707
1717
  Series = "SERIES",
1708
1718
  /** Email thread */
@@ -5699,6 +5709,8 @@ export type IngestionWorkflowStage = {
5699
5709
  collections?: Maybe<Array<Maybe<EntityReference>>>;
5700
5710
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5701
5711
  enableEmailCollections?: Maybe<Scalars['Boolean']['output']>;
5712
+ /** Whether to create collections for every site folder (i.e. '<parent>/<child>'). Disabled by default. */
5713
+ enableFolderCollections?: Maybe<Scalars['Boolean']['output']>;
5702
5714
  /** The ingestion filter. */
5703
5715
  if?: Maybe<IngestionContentFilter>;
5704
5716
  /** The observations to be assigned to ingested content. */
@@ -5710,6 +5722,8 @@ export type IngestionWorkflowStageInput = {
5710
5722
  collections?: InputMaybe<Array<InputMaybe<EntityReferenceInput>>>;
5711
5723
  /** Whether to create collections for every email thread (aka conversation). Disabled by default. */
5712
5724
  enableEmailCollections?: InputMaybe<Scalars['Boolean']['input']>;
5725
+ /** Whether to create collections for every site folder (i.e. '<parent>/<child>'). Disabled by default. */
5726
+ enableFolderCollections?: InputMaybe<Scalars['Boolean']['input']>;
5713
5727
  /** The ingestion filter. */
5714
5728
  if?: InputMaybe<IngestionContentFilterInput>;
5715
5729
  /** The observations to be assigned to ingested content. */
@@ -28280,6 +28294,7 @@ export type CreateWorkflowMutation = {
28280
28294
  ingestion?: {
28281
28295
  __typename?: 'IngestionWorkflowStage';
28282
28296
  enableEmailCollections?: boolean | null;
28297
+ enableFolderCollections?: boolean | null;
28283
28298
  if?: {
28284
28299
  __typename?: 'IngestionContentFilter';
28285
28300
  types?: Array<ContentTypes> | null;
@@ -28599,6 +28614,7 @@ export type GetWorkflowQuery = {
28599
28614
  ingestion?: {
28600
28615
  __typename?: 'IngestionWorkflowStage';
28601
28616
  enableEmailCollections?: boolean | null;
28617
+ enableFolderCollections?: boolean | null;
28602
28618
  if?: {
28603
28619
  __typename?: 'IngestionContentFilter';
28604
28620
  types?: Array<ContentTypes> | null;
@@ -28884,6 +28900,7 @@ export type QueryWorkflowsQuery = {
28884
28900
  ingestion?: {
28885
28901
  __typename?: 'IngestionWorkflowStage';
28886
28902
  enableEmailCollections?: boolean | null;
28903
+ enableFolderCollections?: boolean | null;
28887
28904
  if?: {
28888
28905
  __typename?: 'IngestionContentFilter';
28889
28906
  types?: Array<ContentTypes> | null;
@@ -29161,6 +29178,7 @@ export type UpdateWorkflowMutation = {
29161
29178
  ingestion?: {
29162
29179
  __typename?: 'IngestionWorkflowStage';
29163
29180
  enableEmailCollections?: boolean | null;
29181
+ enableFolderCollections?: boolean | null;
29164
29182
  if?: {
29165
29183
  __typename?: 'IngestionContentFilter';
29166
29184
  types?: Array<ContentTypes> | null;
@@ -29437,6 +29455,7 @@ export type UpsertWorkflowMutation = {
29437
29455
  ingestion?: {
29438
29456
  __typename?: 'IngestionWorkflowStage';
29439
29457
  enableEmailCollections?: boolean | null;
29458
+ enableFolderCollections?: boolean | null;
29440
29459
  if?: {
29441
29460
  __typename?: 'IngestionContentFilter';
29442
29461
  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.20250904002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",