graphlit-client 1.0.20251015001 → 1.0.20251023001

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.
@@ -160,6 +160,10 @@ export type AlertFilter = {
160
160
  id?: InputMaybe<Scalars['ID']['input']>;
161
161
  /** Limit the number of alert(s) to be returned. Defaults to 100. */
162
162
  limit?: InputMaybe<Scalars['Int']['input']>;
163
+ /** Filter alert(s) by their modified date range. */
164
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
165
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return alert(s) modified in the last 24 hours. */
166
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
163
167
  /** Filter alert(s) by their name. */
164
168
  name?: InputMaybe<Scalars['String']['input']>;
165
169
  /** Skip the specified number of alert(s) from the beginning of the result set. Only supported on keyword search. */
@@ -171,7 +175,7 @@ export type AlertFilter = {
171
175
  /** Filter alert(s) by their states. */
172
176
  states?: InputMaybe<Array<EntityState>>;
173
177
  /** Filter by alert types. */
174
- types?: InputMaybe<Array<InputMaybe<AlertTypes>>>;
178
+ types?: InputMaybe<Array<AlertTypes>>;
175
179
  };
176
180
  /** Represents an alert. */
177
181
  export type AlertInput = {
@@ -1447,6 +1451,10 @@ export type CategoryFilter = {
1447
1451
  id?: InputMaybe<Scalars['ID']['input']>;
1448
1452
  /** Limit the number of category(s) to be returned. Defaults to 100. */
1449
1453
  limit?: InputMaybe<Scalars['Int']['input']>;
1454
+ /** Filter category(s) by their modified date range. */
1455
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1456
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return category(s) modified in the last 24 hours. */
1457
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1450
1458
  /** Filter category(s) by their name. */
1451
1459
  name?: InputMaybe<Scalars['String']['input']>;
1452
1460
  /** Skip the specified number of category(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1700,6 +1708,10 @@ export type CollectionFilter = {
1700
1708
  id?: InputMaybe<Scalars['ID']['input']>;
1701
1709
  /** Limit the number of collection(s) to be returned. Defaults to 100. */
1702
1710
  limit?: InputMaybe<Scalars['Int']['input']>;
1711
+ /** Filter collection(s) by their modified date range. */
1712
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1713
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return collection(s) modified in the last 24 hours. */
1714
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1703
1715
  /** Filter collection(s) by their name. */
1704
1716
  name?: InputMaybe<Scalars['String']['input']>;
1705
1717
  /** Skip the specified number of collection(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1788,6 +1800,10 @@ export type ConnectorFilter = {
1788
1800
  id?: InputMaybe<Scalars['ID']['input']>;
1789
1801
  /** Limit the number of connector(s) to be returned. Defaults to 100. */
1790
1802
  limit?: InputMaybe<Scalars['Int']['input']>;
1803
+ /** Filter connector(s) by their modified date range. */
1804
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
1805
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return connector(s) modified in the last 24 hours. */
1806
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1791
1807
  /** Filter connector(s) by their name. */
1792
1808
  name?: InputMaybe<Scalars['String']['input']>;
1793
1809
  /** Skip the specified number of connector(s) from the beginning of the result set. Only supported on keyword search. */
@@ -1980,6 +1996,10 @@ export type Content = {
1980
1996
  segments?: Maybe<Array<TextSegment>>;
1981
1997
  /** The content shape metadata. */
1982
1998
  shape?: Maybe<ShapeMetadata>;
1999
+ /** The number of snapshots stored for this content. Reflects the rolling window configured in workflow storage policy. */
2000
+ snapshotCount?: Maybe<Scalars['Int']['output']>;
2001
+ /** The snapshots folder URI of the content. Provides read access to version history snapshots including content.json, content.md, content.diff.json, and all renditions for each snapshot timestamp. Only present if snapshots exist. */
2002
+ snapshotsUri?: Maybe<Scalars['URL']['output']>;
1983
2003
  /** The started date of the content workflow. */
1984
2004
  startedDate?: Maybe<Scalars['DateTime']['output']>;
1985
2005
  /** The state of the content (i.e. created, finished). */
@@ -2058,9 +2078,9 @@ export type ContentCriteria = {
2058
2078
  /** Filter by file size range. */
2059
2079
  fileSizeRange?: Maybe<Int64Range>;
2060
2080
  /** Filter by file types. */
2061
- fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
2081
+ fileTypes?: Maybe<Array<FileTypes>>;
2062
2082
  /** Filter by file formats. */
2063
- formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2083
+ formats?: Maybe<Array<Scalars['String']['output']>>;
2064
2084
  /** Filter by presence or absence of associated collections. */
2065
2085
  hasCollections?: Maybe<Scalars['Boolean']['output']>;
2066
2086
  /** Filter by presence or absence of associated feeds. */
@@ -2296,6 +2316,10 @@ export type ContentFilter = {
2296
2316
  limit?: InputMaybe<Scalars['Int']['input']>;
2297
2317
  /** Filter by geo-location. */
2298
2318
  location?: InputMaybe<PointFilter>;
2319
+ /** Filter content(s) by their modified date range. */
2320
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
2321
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return content(s) modified in the last 24 hours. */
2322
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2299
2323
  /** Filter content(s) by their name. */
2300
2324
  name?: InputMaybe<Scalars['String']['input']>;
2301
2325
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -2345,7 +2369,7 @@ export type ContentFilterLevel = {
2345
2369
  /** Represents the configuration for retrieving the knowledge graph. */
2346
2370
  export type ContentGraphInput = {
2347
2371
  /** The observable types. */
2348
- types?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
2372
+ types?: InputMaybe<Array<ObservableTypes>>;
2349
2373
  };
2350
2374
  /** Represents a content indexing connector. */
2351
2375
  export type ContentIndexingConnector = {
@@ -2372,6 +2396,8 @@ export declare enum ContentIndexingServiceTypes {
2372
2396
  }
2373
2397
  /** Represents content. */
2374
2398
  export type ContentInput = {
2399
+ /** The date when the content was created. */
2400
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
2375
2401
  /** The content description. */
2376
2402
  description?: InputMaybe<Scalars['String']['input']>;
2377
2403
  /** The date when the file was created. */
@@ -2380,6 +2406,8 @@ export type ContentInput = {
2380
2406
  fileModifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2381
2407
  /** The content external identifier. */
2382
2408
  identifier?: InputMaybe<Scalars['String']['input']>;
2409
+ /** The date when the content was last modified. */
2410
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2383
2411
  /** The name of the content. */
2384
2412
  name: Scalars['String']['input'];
2385
2413
  /** The content text. */
@@ -2543,6 +2571,8 @@ export type ContentUpdateInput = {
2543
2571
  bullets?: InputMaybe<Array<Scalars['String']['input']>>;
2544
2572
  /** The timestamped chapters summarized from the content transcript. */
2545
2573
  chapters?: InputMaybe<Array<Scalars['String']['input']>>;
2574
+ /** The date when the content was created. */
2575
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
2546
2576
  /** The custom content summary. */
2547
2577
  customSummary?: InputMaybe<Scalars['String']['input']>;
2548
2578
  /** The content description. */
@@ -2577,6 +2607,8 @@ export type ContentUpdateInput = {
2577
2607
  language?: InputMaybe<LanguageMetadataInput>;
2578
2608
  /** The content message metadata. */
2579
2609
  message?: InputMaybe<MessageMetadataInput>;
2610
+ /** The date when the content was last modified. */
2611
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
2580
2612
  /** The name of the content. */
2581
2613
  name?: InputMaybe<Scalars['String']['input']>;
2582
2614
  /** The content package metadata. */
@@ -2710,6 +2742,10 @@ export type ConversationFilter = {
2710
2742
  id?: InputMaybe<Scalars['ID']['input']>;
2711
2743
  /** Limit the number of conversation(s) to be returned. Defaults to 100. */
2712
2744
  limit?: InputMaybe<Scalars['Int']['input']>;
2745
+ /** Filter conversation(s) by their modified date range. */
2746
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
2747
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return conversation(s) modified in the last 24 hours. */
2748
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2713
2749
  /** Filter conversation(s) by their name. */
2714
2750
  name?: InputMaybe<Scalars['String']['input']>;
2715
2751
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -3697,7 +3733,7 @@ export type EntityEnrichmentConnector = {
3697
3733
  /** The specific properties for Diffbot entity enrichment. */
3698
3734
  diffbot?: Maybe<DiffbotEnrichmentProperties>;
3699
3735
  /** The observable entity types to be enriched. */
3700
- enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
3736
+ enrichedTypes?: Maybe<Array<ObservableTypes>>;
3701
3737
  /** The specific properties for FHIR medical entity enrichment. */
3702
3738
  fhir?: Maybe<FhirEnrichmentProperties>;
3703
3739
  /** The entity enrichment service type. */
@@ -3708,7 +3744,7 @@ export type EntityEnrichmentConnectorInput = {
3708
3744
  /** The specific properties for Diffbot entity enrichment. */
3709
3745
  diffbot?: InputMaybe<DiffbotEnrichmentPropertiesInput>;
3710
3746
  /** The observable entity types to be enriched. */
3711
- enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
3747
+ enrichedTypes?: InputMaybe<Array<ObservableTypes>>;
3712
3748
  /** The specific properties for FHIR medical entity enrichment. */
3713
3749
  fhir?: InputMaybe<FhirEnrichmentPropertiesInput>;
3714
3750
  /** The entity enrichment service type. */
@@ -4059,6 +4095,10 @@ export type EventFilter = {
4059
4095
  maxPrice?: InputMaybe<Scalars['Decimal']['input']>;
4060
4096
  /** Filter by the event minimum price. */
4061
4097
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
4098
+ /** Filter event(s) by their modified date range. */
4099
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
4100
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return event(s) modified in the last 24 hours. */
4101
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
4062
4102
  /** Filter event(s) by their name. */
4063
4103
  name?: InputMaybe<Scalars['String']['input']>;
4064
4104
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -4439,6 +4479,10 @@ export type FeedFilter = {
4439
4479
  id?: InputMaybe<Scalars['ID']['input']>;
4440
4480
  /** Limit the number of feed(s) to be returned. Defaults to 100. */
4441
4481
  limit?: InputMaybe<Scalars['Int']['input']>;
4482
+ /** Filter feed(s) by their modified date range. */
4483
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
4484
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return feed(s) modified in the last 24 hours. */
4485
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
4442
4486
  /** Filter feed(s) by their name. */
4443
4487
  name?: InputMaybe<Scalars['String']['input']>;
4444
4488
  /** Skip the specified number of feed(s) from the beginning of the result set. Only supported on keyword search. */
@@ -4450,7 +4494,7 @@ export type FeedFilter = {
4450
4494
  /** Filter feed(s) by their states. */
4451
4495
  states?: InputMaybe<Array<EntityState>>;
4452
4496
  /** Filter by feed types. */
4453
- types?: InputMaybe<Array<InputMaybe<FeedTypes>>>;
4497
+ types?: InputMaybe<Array<FeedTypes>>;
4454
4498
  };
4455
4499
  /** Represents a feed. */
4456
4500
  export type FeedInput = {
@@ -6256,6 +6300,10 @@ export type LabelFilter = {
6256
6300
  id?: InputMaybe<Scalars['ID']['input']>;
6257
6301
  /** Limit the number of label(s) to be returned. Defaults to 100. */
6258
6302
  limit?: InputMaybe<Scalars['Int']['input']>;
6303
+ /** Filter label(s) by their modified date range. */
6304
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6305
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return label(s) modified in the last 24 hours. */
6306
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6259
6307
  /** Filter label(s) by their name. */
6260
6308
  name?: InputMaybe<Scalars['String']['input']>;
6261
6309
  /** Skip the specified number of label(s) from the beginning of the result set. Only supported on keyword search. */
@@ -6645,6 +6693,10 @@ export type MedicalConditionFilter = {
6645
6693
  limit?: InputMaybe<Scalars['Int']['input']>;
6646
6694
  /** Filter by observable geo-location. */
6647
6695
  location?: InputMaybe<PointFilter>;
6696
+ /** Filter medicalcondition(s) by their modified date range. */
6697
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6698
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcondition(s) modified in the last 24 hours. */
6699
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6648
6700
  /** Filter medicalcondition(s) by their name. */
6649
6701
  name?: InputMaybe<Scalars['String']['input']>;
6650
6702
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -6788,6 +6840,10 @@ export type MedicalContraindicationFilter = {
6788
6840
  limit?: InputMaybe<Scalars['Int']['input']>;
6789
6841
  /** Filter by observable geo-location. */
6790
6842
  location?: InputMaybe<PointFilter>;
6843
+ /** Filter medicalcontraindication(s) by their modified date range. */
6844
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6845
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) modified in the last 24 hours. */
6846
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6791
6847
  /** Filter medicalcontraindication(s) by their name. */
6792
6848
  name?: InputMaybe<Scalars['String']['input']>;
6793
6849
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -6931,6 +6987,10 @@ export type MedicalDeviceFilter = {
6931
6987
  limit?: InputMaybe<Scalars['Int']['input']>;
6932
6988
  /** Filter by observable geo-location. */
6933
6989
  location?: InputMaybe<PointFilter>;
6990
+ /** Filter medicaldevice(s) by their modified date range. */
6991
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
6992
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldevice(s) modified in the last 24 hours. */
6993
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6934
6994
  /** Filter medicaldevice(s) by their name. */
6935
6995
  name?: InputMaybe<Scalars['String']['input']>;
6936
6996
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7110,6 +7170,10 @@ export type MedicalDrugClassFilter = {
7110
7170
  limit?: InputMaybe<Scalars['Int']['input']>;
7111
7171
  /** Filter by observable geo-location. */
7112
7172
  location?: InputMaybe<PointFilter>;
7173
+ /** Filter medicaldrugclass(s) by their modified date range. */
7174
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7175
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) modified in the last 24 hours. */
7176
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7113
7177
  /** Filter medicaldrugclass(s) by their name. */
7114
7178
  name?: InputMaybe<Scalars['String']['input']>;
7115
7179
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7217,6 +7281,10 @@ export type MedicalDrugFilter = {
7217
7281
  limit?: InputMaybe<Scalars['Int']['input']>;
7218
7282
  /** Filter by observable geo-location. */
7219
7283
  location?: InputMaybe<PointFilter>;
7284
+ /** Filter medicaldrug(s) by their modified date range. */
7285
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7286
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrug(s) modified in the last 24 hours. */
7287
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7220
7288
  /** Filter medicaldrug(s) by their name. */
7221
7289
  name?: InputMaybe<Scalars['String']['input']>;
7222
7290
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7360,6 +7428,10 @@ export type MedicalGuidelineFilter = {
7360
7428
  limit?: InputMaybe<Scalars['Int']['input']>;
7361
7429
  /** Filter by observable geo-location. */
7362
7430
  location?: InputMaybe<PointFilter>;
7431
+ /** Filter medicalguideline(s) by their modified date range. */
7432
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7433
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalguideline(s) modified in the last 24 hours. */
7434
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7363
7435
  /** Filter medicalguideline(s) by their name. */
7364
7436
  name?: InputMaybe<Scalars['String']['input']>;
7365
7437
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7503,6 +7575,10 @@ export type MedicalIndicationFilter = {
7503
7575
  limit?: InputMaybe<Scalars['Int']['input']>;
7504
7576
  /** Filter by observable geo-location. */
7505
7577
  location?: InputMaybe<PointFilter>;
7578
+ /** Filter medicalindication(s) by their modified date range. */
7579
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7580
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalindication(s) modified in the last 24 hours. */
7581
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7506
7582
  /** Filter medicalindication(s) by their name. */
7507
7583
  name?: InputMaybe<Scalars['String']['input']>;
7508
7584
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7646,6 +7722,10 @@ export type MedicalProcedureFilter = {
7646
7722
  limit?: InputMaybe<Scalars['Int']['input']>;
7647
7723
  /** Filter by observable geo-location. */
7648
7724
  location?: InputMaybe<PointFilter>;
7725
+ /** Filter medicalprocedure(s) by their modified date range. */
7726
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7727
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalprocedure(s) modified in the last 24 hours. */
7728
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7649
7729
  /** Filter medicalprocedure(s) by their name. */
7650
7730
  name?: InputMaybe<Scalars['String']['input']>;
7651
7731
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7791,6 +7871,10 @@ export type MedicalStudyFilter = {
7791
7871
  limit?: InputMaybe<Scalars['Int']['input']>;
7792
7872
  /** Filter by observable geo-location. */
7793
7873
  location?: InputMaybe<PointFilter>;
7874
+ /** Filter medicalstudy(s) by their modified date range. */
7875
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
7876
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicalstudy(s) modified in the last 24 hours. */
7877
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7794
7878
  /** Filter medicalstudy(s) by their name. */
7795
7879
  name?: InputMaybe<Scalars['String']['input']>;
7796
7880
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -7940,6 +8024,10 @@ export type MedicalTestFilter = {
7940
8024
  limit?: InputMaybe<Scalars['Int']['input']>;
7941
8025
  /** Filter by observable geo-location. */
7942
8026
  location?: InputMaybe<PointFilter>;
8027
+ /** Filter medicaltest(s) by their modified date range. */
8028
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8029
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltest(s) modified in the last 24 hours. */
8030
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
7943
8031
  /** Filter medicaltest(s) by their name. */
7944
8032
  name?: InputMaybe<Scalars['String']['input']>;
7945
8033
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -8083,6 +8171,10 @@ export type MedicalTherapyFilter = {
8083
8171
  limit?: InputMaybe<Scalars['Int']['input']>;
8084
8172
  /** Filter by observable geo-location. */
8085
8173
  location?: InputMaybe<PointFilter>;
8174
+ /** Filter medicaltherapy(s) by their modified date range. */
8175
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8176
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltherapy(s) modified in the last 24 hours. */
8177
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
8086
8178
  /** Filter medicaltherapy(s) by their name. */
8087
8179
  name?: InputMaybe<Scalars['String']['input']>;
8088
8180
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -8232,7 +8324,11 @@ export type MetadataFilter = {
8232
8324
  /** Limit the number of metadata(s) to be returned. Defaults to 100. */
8233
8325
  limit?: InputMaybe<Scalars['Int']['input']>;
8234
8326
  /** Filter by metadata types. */
8235
- metadataTypes?: InputMaybe<Array<InputMaybe<MetadataTypes>>>;
8327
+ metadataTypes?: InputMaybe<Array<MetadataTypes>>;
8328
+ /** Filter metadata(s) by their modified date range. */
8329
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
8330
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return metadata(s) modified in the last 24 hours. */
8331
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
8236
8332
  /** Filter metadata(s) by their name. */
8237
8333
  name?: InputMaybe<Scalars['String']['input']>;
8238
8334
  /** Skip the specified number of metadata(s) from the beginning of the result set. Only supported on keyword search. */
@@ -8740,9 +8836,9 @@ export type ModelFeatures = {
8740
8836
  /** Represents a filter for LLM models. */
8741
8837
  export type ModelFilter = {
8742
8838
  /** Filter by LLM service types. */
8743
- serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
8839
+ serviceTypes?: InputMaybe<Array<ModelServiceTypes>>;
8744
8840
  /** Filter by LLM model types. */
8745
- types?: InputMaybe<Array<InputMaybe<ModelTypes>>>;
8841
+ types?: InputMaybe<Array<ModelTypes>>;
8746
8842
  };
8747
8843
  /** Represents an LLM image entity extraction connector. */
8748
8844
  export type ModelImageExtractionProperties = {
@@ -10390,7 +10486,7 @@ export type ObservationCriteria = {
10390
10486
  /** The observed entity. */
10391
10487
  observable: EntityReference;
10392
10488
  /** The observation states. */
10393
- states?: Maybe<Array<Maybe<EntityState>>>;
10489
+ states?: Maybe<Array<EntityState>>;
10394
10490
  /** The observed entity type. */
10395
10491
  type: ObservableTypes;
10396
10492
  };
@@ -10399,7 +10495,7 @@ export type ObservationCriteriaInput = {
10399
10495
  /** The observed entity. */
10400
10496
  observable?: InputMaybe<EntityReferenceInput>;
10401
10497
  /** The observation states. */
10402
- states?: InputMaybe<Array<InputMaybe<EntityState>>>;
10498
+ states?: InputMaybe<Array<EntityState>>;
10403
10499
  /** The observed entity type. */
10404
10500
  type?: InputMaybe<ObservableTypes>;
10405
10501
  };
@@ -10464,7 +10560,7 @@ export type ObservationReferenceFilter = {
10464
10560
  /** Filter by observed entity. */
10465
10561
  observable: EntityReferenceFilter;
10466
10562
  /** Filter observation(s) by their states. */
10467
- states?: InputMaybe<Array<InputMaybe<EntityState>>>;
10563
+ states?: InputMaybe<Array<EntityState>>;
10468
10564
  /** Filter by observed entity type. */
10469
10565
  type: ObservableTypes;
10470
10566
  };
@@ -11026,6 +11122,10 @@ export type OrganizationFilter = {
11026
11122
  limit?: InputMaybe<Scalars['Int']['input']>;
11027
11123
  /** Filter by observable geo-location. */
11028
11124
  location?: InputMaybe<PointFilter>;
11125
+ /** Filter organization(s) by their modified date range. */
11126
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11127
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return organization(s) modified in the last 24 hours. */
11128
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11029
11129
  /** Filter organization(s) by their name. */
11030
11130
  name?: InputMaybe<Scalars['String']['input']>;
11031
11131
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11284,6 +11384,10 @@ export type PersonFilter = {
11284
11384
  limit?: InputMaybe<Scalars['Int']['input']>;
11285
11385
  /** Filter by observable geo-location. */
11286
11386
  location?: InputMaybe<PointFilter>;
11387
+ /** Filter person(s) by their modified date range. */
11388
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11389
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return person(s) modified in the last 24 hours. */
11390
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11287
11391
  /** Filter person(s) by their name. */
11288
11392
  name?: InputMaybe<Scalars['String']['input']>;
11289
11393
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11494,6 +11598,10 @@ export type PlaceFilter = {
11494
11598
  limit?: InputMaybe<Scalars['Int']['input']>;
11495
11599
  /** Filter by observable geo-location. */
11496
11600
  location?: InputMaybe<PointFilter>;
11601
+ /** Filter place(s) by their modified date range. */
11602
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11603
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return place(s) modified in the last 24 hours. */
11604
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11497
11605
  /** Filter place(s) by their name. */
11498
11606
  name?: InputMaybe<Scalars['String']['input']>;
11499
11607
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11795,6 +11903,10 @@ export type ProductFilter = {
11795
11903
  manufacturer?: InputMaybe<Scalars['String']['input']>;
11796
11904
  /** Filter by product model. */
11797
11905
  model?: InputMaybe<Scalars['String']['input']>;
11906
+ /** Filter product(s) by their modified date range. */
11907
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
11908
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return product(s) modified in the last 24 hours. */
11909
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11798
11910
  /** Filter product(s) by their name. */
11799
11911
  name?: InputMaybe<Scalars['String']['input']>;
11800
11912
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -11986,6 +12098,10 @@ export type ProjectFilter = {
11986
12098
  id?: InputMaybe<Scalars['ID']['input']>;
11987
12099
  /** Limit the number of project(s) to be returned. Defaults to 100. */
11988
12100
  limit?: InputMaybe<Scalars['Int']['input']>;
12101
+ /** Filter project(s) by their modified date range. */
12102
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
12103
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return project(s) modified in the last 24 hours. */
12104
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
11989
12105
  /** Filter project(s) by their name. */
11990
12106
  name?: InputMaybe<Scalars['String']['input']>;
11991
12107
  /** Skip the specified number of project(s) from the beginning of the result set. Only supported on keyword search. */
@@ -13527,6 +13643,10 @@ export type RepoFilter = {
13527
13643
  limit?: InputMaybe<Scalars['Int']['input']>;
13528
13644
  /** Filter by observable geo-location. */
13529
13645
  location?: InputMaybe<PointFilter>;
13646
+ /** Filter repo(s) by their modified date range. */
13647
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
13648
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return repo(s) modified in the last 24 hours. */
13649
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
13530
13650
  /** Filter repo(s) by their name. */
13531
13651
  name?: InputMaybe<Scalars['String']['input']>;
13532
13652
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -14177,6 +14297,10 @@ export type SoftwareFilter = {
14177
14297
  limit?: InputMaybe<Scalars['Int']['input']>;
14178
14298
  /** Filter by observable geo-location. */
14179
14299
  location?: InputMaybe<PointFilter>;
14300
+ /** Filter software(s) by their modified date range. */
14301
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
14302
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return software(s) modified in the last 24 hours. */
14303
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
14180
14304
  /** Filter software(s) by their name. */
14181
14305
  name?: InputMaybe<Scalars['String']['input']>;
14182
14306
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
@@ -14324,6 +14448,10 @@ export type SpecificationFilter = {
14324
14448
  id?: InputMaybe<Scalars['ID']['input']>;
14325
14449
  /** Limit the number of specification(s) to be returned. Defaults to 100. */
14326
14450
  limit?: InputMaybe<Scalars['Int']['input']>;
14451
+ /** Filter specification(s) by their modified date range. */
14452
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
14453
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return specification(s) modified in the last 24 hours. */
14454
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
14327
14455
  /** Filter specification(s) by their name. */
14328
14456
  name?: InputMaybe<Scalars['String']['input']>;
14329
14457
  /** Skip the specified number of specification(s) from the beginning of the result set. Only supported on keyword search. */
@@ -14333,11 +14461,11 @@ export type SpecificationFilter = {
14333
14461
  /** Filter specification(s) by searching for similar text. */
14334
14462
  search?: InputMaybe<Scalars['String']['input']>;
14335
14463
  /** Filter by LLM service types. */
14336
- serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
14464
+ serviceTypes?: InputMaybe<Array<ModelServiceTypes>>;
14337
14465
  /** Filter specification(s) by their states. */
14338
14466
  states?: InputMaybe<Array<EntityState>>;
14339
14467
  /** Filter by LLM specification types. */
14340
- types?: InputMaybe<Array<InputMaybe<SpecificationTypes>>>;
14468
+ types?: InputMaybe<Array<SpecificationTypes>>;
14341
14469
  };
14342
14470
  /** Represents an LLM specification. */
14343
14471
  export type SpecificationInput = {
@@ -14492,7 +14620,11 @@ export type StoragePolicy = {
14492
14620
  /** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
14493
14621
  allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
14494
14622
  /** The types of embeddings to generate during enrichment. Defaults to all types if not specified. Specify an empty array to disable all embeddings. */
14495
- embeddingTypes?: Maybe<Array<Maybe<EmbeddingTypes>>>;
14623
+ embeddingTypes?: Maybe<Array<EmbeddingTypes>>;
14624
+ /** Enables content snapshots on restart. When enabled, preserves content state and files before re-ingestion. */
14625
+ enableSnapshots?: Maybe<Scalars['Boolean']['output']>;
14626
+ /** Number of rolling snapshots to retain. Defaults to 5. Older snapshots are automatically deleted. */
14627
+ snapshotCount?: Maybe<Scalars['Int']['output']>;
14496
14628
  /** The storage policy type. */
14497
14629
  type?: Maybe<StoragePolicyTypes>;
14498
14630
  };
@@ -14501,7 +14633,11 @@ export type StoragePolicyInput = {
14501
14633
  /** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
14502
14634
  allowDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
14503
14635
  /** The types of embeddings to generate during enrichment. Defaults to all types if not specified. Specify an empty array to disable all embeddings. */
14504
- embeddingTypes?: InputMaybe<Array<InputMaybe<EmbeddingTypes>>>;
14636
+ embeddingTypes?: InputMaybe<Array<EmbeddingTypes>>;
14637
+ /** Enables content snapshots on restart. When enabled, preserves content state and files before re-ingestion, defaults to False. */
14638
+ enableSnapshots?: InputMaybe<Scalars['Boolean']['input']>;
14639
+ /** Number of rolling snapshots to retain. Defaults to 5. Older snapshots are automatically deleted. */
14640
+ snapshotCount?: InputMaybe<Scalars['Int']['input']>;
14505
14641
  /** The storage policy type. */
14506
14642
  type?: InputMaybe<StoragePolicyTypes>;
14507
14643
  };
@@ -15006,6 +15142,10 @@ export type UserFilter = {
15006
15142
  identifier?: InputMaybe<Scalars['String']['input']>;
15007
15143
  /** Limit the number of user(s) to be returned. Defaults to 100. */
15008
15144
  limit?: InputMaybe<Scalars['Int']['input']>;
15145
+ /** Filter user(s) by their modified date range. */
15146
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15147
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return user(s) modified in the last 24 hours. */
15148
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15009
15149
  /** Filter user(s) by their name. */
15010
15150
  name?: InputMaybe<Scalars['String']['input']>;
15011
15151
  /** Skip the specified number of user(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15146,6 +15286,10 @@ export type ViewFilter = {
15146
15286
  id?: InputMaybe<Scalars['ID']['input']>;
15147
15287
  /** Limit the number of view(s) to be returned. Defaults to 100. */
15148
15288
  limit?: InputMaybe<Scalars['Int']['input']>;
15289
+ /** Filter view(s) by their modified date range. */
15290
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15291
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return view(s) modified in the last 24 hours. */
15292
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15149
15293
  /** Filter view(s) by their name. */
15150
15294
  name?: InputMaybe<Scalars['String']['input']>;
15151
15295
  /** Skip the specified number of view(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15364,6 +15508,10 @@ export type WorkflowFilter = {
15364
15508
  id?: InputMaybe<Scalars['ID']['input']>;
15365
15509
  /** Limit the number of workflow(s) to be returned. Defaults to 100. */
15366
15510
  limit?: InputMaybe<Scalars['Int']['input']>;
15511
+ /** Filter workflow(s) by their modified date range. */
15512
+ modifiedDateRange?: InputMaybe<DateRangeFilter>;
15513
+ /** Filter by modified date recent timespan. For example, a timespan of one day will return workflow(s) modified in the last 24 hours. */
15514
+ modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
15367
15515
  /** Filter workflow(s) by their name. */
15368
15516
  name?: InputMaybe<Scalars['String']['input']>;
15369
15517
  /** Skip the specified number of workflow(s) from the beginning of the result set. Only supported on keyword search. */
@@ -15714,8 +15862,8 @@ export type GetAlertQuery = {
15714
15862
  inLast?: any | null;
15715
15863
  createdInLast?: any | null;
15716
15864
  types?: Array<ContentTypes> | null;
15717
- fileTypes?: Array<FileTypes | null> | null;
15718
- formats?: Array<string | null> | null;
15865
+ fileTypes?: Array<FileTypes> | null;
15866
+ formats?: Array<string> | null;
15719
15867
  fileExtensions?: Array<string> | null;
15720
15868
  hasObservations?: boolean | null;
15721
15869
  hasFeeds?: boolean | null;
@@ -15763,7 +15911,7 @@ export type GetAlertQuery = {
15763
15911
  observations?: Array<{
15764
15912
  __typename?: 'ObservationCriteria';
15765
15913
  type: ObservableTypes;
15766
- states?: Array<EntityState | null> | null;
15914
+ states?: Array<EntityState> | null;
15767
15915
  observable: {
15768
15916
  __typename?: 'EntityReference';
15769
15917
  id: string;
@@ -15790,7 +15938,7 @@ export type GetAlertQuery = {
15790
15938
  observations?: Array<{
15791
15939
  __typename?: 'ObservationCriteria';
15792
15940
  type: ObservableTypes;
15793
- states?: Array<EntityState | null> | null;
15941
+ states?: Array<EntityState> | null;
15794
15942
  observable: {
15795
15943
  __typename?: 'EntityReference';
15796
15944
  id: string;
@@ -15818,7 +15966,7 @@ export type GetAlertQuery = {
15818
15966
  observations?: Array<{
15819
15967
  __typename?: 'ObservationCriteria';
15820
15968
  type: ObservableTypes;
15821
- states?: Array<EntityState | null> | null;
15969
+ states?: Array<EntityState> | null;
15822
15970
  observable: {
15823
15971
  __typename?: 'EntityReference';
15824
15972
  id: string;
@@ -15941,8 +16089,8 @@ export type QueryAlertsQuery = {
15941
16089
  inLast?: any | null;
15942
16090
  createdInLast?: any | null;
15943
16091
  types?: Array<ContentTypes> | null;
15944
- fileTypes?: Array<FileTypes | null> | null;
15945
- formats?: Array<string | null> | null;
16092
+ fileTypes?: Array<FileTypes> | null;
16093
+ formats?: Array<string> | null;
15946
16094
  fileExtensions?: Array<string> | null;
15947
16095
  hasObservations?: boolean | null;
15948
16096
  hasFeeds?: boolean | null;
@@ -15990,7 +16138,7 @@ export type QueryAlertsQuery = {
15990
16138
  observations?: Array<{
15991
16139
  __typename?: 'ObservationCriteria';
15992
16140
  type: ObservableTypes;
15993
- states?: Array<EntityState | null> | null;
16141
+ states?: Array<EntityState> | null;
15994
16142
  observable: {
15995
16143
  __typename?: 'EntityReference';
15996
16144
  id: string;
@@ -16017,7 +16165,7 @@ export type QueryAlertsQuery = {
16017
16165
  observations?: Array<{
16018
16166
  __typename?: 'ObservationCriteria';
16019
16167
  type: ObservableTypes;
16020
- states?: Array<EntityState | null> | null;
16168
+ states?: Array<EntityState> | null;
16021
16169
  observable: {
16022
16170
  __typename?: 'EntityReference';
16023
16171
  id: string;
@@ -16045,7 +16193,7 @@ export type QueryAlertsQuery = {
16045
16193
  observations?: Array<{
16046
16194
  __typename?: 'ObservationCriteria';
16047
16195
  type: ObservableTypes;
16048
- states?: Array<EntityState | null> | null;
16196
+ states?: Array<EntityState> | null;
16049
16197
  observable: {
16050
16198
  __typename?: 'EntityReference';
16051
16199
  id: string;
@@ -16736,6 +16884,8 @@ export type DescribeEncodedImageMutation = {
16736
16884
  textUri?: any | null;
16737
16885
  audioUri?: any | null;
16738
16886
  transcriptUri?: any | null;
16887
+ snapshotsUri?: any | null;
16888
+ snapshotCount?: number | null;
16739
16889
  summary?: string | null;
16740
16890
  customSummary?: string | null;
16741
16891
  keywords?: Array<string> | null;
@@ -16882,6 +17032,8 @@ export type DescribeImageMutation = {
16882
17032
  textUri?: any | null;
16883
17033
  audioUri?: any | null;
16884
17034
  transcriptUri?: any | null;
17035
+ snapshotsUri?: any | null;
17036
+ snapshotCount?: number | null;
16885
17037
  summary?: string | null;
16886
17038
  customSummary?: string | null;
16887
17039
  keywords?: Array<string> | null;
@@ -17070,6 +17222,8 @@ export type GetContentQuery = {
17070
17222
  textUri?: any | null;
17071
17223
  audioUri?: any | null;
17072
17224
  transcriptUri?: any | null;
17225
+ snapshotsUri?: any | null;
17226
+ snapshotCount?: number | null;
17073
17227
  summary?: string | null;
17074
17228
  customSummary?: string | null;
17075
17229
  keywords?: Array<string> | null;
@@ -17935,6 +18089,8 @@ export type LookupContentsQuery = {
17935
18089
  textUri?: any | null;
17936
18090
  audioUri?: any | null;
17937
18091
  transcriptUri?: any | null;
18092
+ snapshotsUri?: any | null;
18093
+ snapshotCount?: number | null;
17938
18094
  summary?: string | null;
17939
18095
  customSummary?: string | null;
17940
18096
  keywords?: Array<string> | null;
@@ -18351,6 +18507,8 @@ export type PublishContentsMutation = {
18351
18507
  textUri?: any | null;
18352
18508
  audioUri?: any | null;
18353
18509
  transcriptUri?: any | null;
18510
+ snapshotsUri?: any | null;
18511
+ snapshotCount?: number | null;
18354
18512
  summary?: string | null;
18355
18513
  customSummary?: string | null;
18356
18514
  keywords?: Array<string> | null;
@@ -18486,6 +18644,8 @@ export type PublishTextMutation = {
18486
18644
  textUri?: any | null;
18487
18645
  audioUri?: any | null;
18488
18646
  transcriptUri?: any | null;
18647
+ snapshotsUri?: any | null;
18648
+ snapshotCount?: number | null;
18489
18649
  summary?: string | null;
18490
18650
  customSummary?: string | null;
18491
18651
  keywords?: Array<string> | null;
@@ -18621,6 +18781,8 @@ export type QueryContentsQuery = {
18621
18781
  textUri?: any | null;
18622
18782
  audioUri?: any | null;
18623
18783
  transcriptUri?: any | null;
18784
+ snapshotsUri?: any | null;
18785
+ snapshotCount?: number | null;
18624
18786
  summary?: string | null;
18625
18787
  customSummary?: string | null;
18626
18788
  quotes?: Array<string> | null;
@@ -19014,6 +19176,8 @@ export type QueryContentsObservationsQuery = {
19014
19176
  textUri?: any | null;
19015
19177
  audioUri?: any | null;
19016
19178
  transcriptUri?: any | null;
19179
+ snapshotsUri?: any | null;
19180
+ snapshotCount?: number | null;
19017
19181
  summary?: string | null;
19018
19182
  customSummary?: string | null;
19019
19183
  quotes?: Array<string> | null;
@@ -19597,6 +19761,8 @@ export type AskGraphlitMutation = {
19597
19761
  textUri?: any | null;
19598
19762
  audioUri?: any | null;
19599
19763
  transcriptUri?: any | null;
19764
+ snapshotsUri?: any | null;
19765
+ snapshotCount?: number | null;
19600
19766
  summary?: string | null;
19601
19767
  customSummary?: string | null;
19602
19768
  keywords?: Array<string> | null;
@@ -19792,6 +19958,8 @@ export type CompleteConversationMutation = {
19792
19958
  textUri?: any | null;
19793
19959
  audioUri?: any | null;
19794
19960
  transcriptUri?: any | null;
19961
+ snapshotsUri?: any | null;
19962
+ snapshotCount?: number | null;
19795
19963
  summary?: string | null;
19796
19964
  customSummary?: string | null;
19797
19965
  keywords?: Array<string> | null;
@@ -19988,6 +20156,8 @@ export type CompleteConversationMutation = {
19988
20156
  textUri?: any | null;
19989
20157
  audioUri?: any | null;
19990
20158
  transcriptUri?: any | null;
20159
+ snapshotsUri?: any | null;
20160
+ snapshotCount?: number | null;
19991
20161
  summary?: string | null;
19992
20162
  customSummary?: string | null;
19993
20163
  keywords?: Array<string> | null;
@@ -20142,6 +20312,8 @@ export type ContinueConversationMutation = {
20142
20312
  textUri?: any | null;
20143
20313
  audioUri?: any | null;
20144
20314
  transcriptUri?: any | null;
20315
+ snapshotsUri?: any | null;
20316
+ snapshotCount?: number | null;
20145
20317
  summary?: string | null;
20146
20318
  customSummary?: string | null;
20147
20319
  keywords?: Array<string> | null;
@@ -20338,6 +20510,8 @@ export type ContinueConversationMutation = {
20338
20510
  textUri?: any | null;
20339
20511
  audioUri?: any | null;
20340
20512
  transcriptUri?: any | null;
20513
+ snapshotsUri?: any | null;
20514
+ snapshotCount?: number | null;
20341
20515
  summary?: string | null;
20342
20516
  customSummary?: string | null;
20343
20517
  keywords?: Array<string> | null;
@@ -20557,6 +20731,8 @@ export type FormatConversationMutation = {
20557
20731
  textUri?: any | null;
20558
20732
  audioUri?: any | null;
20559
20733
  transcriptUri?: any | null;
20734
+ snapshotsUri?: any | null;
20735
+ snapshotCount?: number | null;
20560
20736
  summary?: string | null;
20561
20737
  customSummary?: string | null;
20562
20738
  keywords?: Array<string> | null;
@@ -20753,6 +20929,8 @@ export type FormatConversationMutation = {
20753
20929
  textUri?: any | null;
20754
20930
  audioUri?: any | null;
20755
20931
  transcriptUri?: any | null;
20932
+ snapshotsUri?: any | null;
20933
+ snapshotCount?: number | null;
20756
20934
  summary?: string | null;
20757
20935
  customSummary?: string | null;
20758
20936
  keywords?: Array<string> | null;
@@ -20912,6 +21090,8 @@ export type GetConversationQuery = {
20912
21090
  textUri?: any | null;
20913
21091
  audioUri?: any | null;
20914
21092
  transcriptUri?: any | null;
21093
+ snapshotsUri?: any | null;
21094
+ snapshotCount?: number | null;
20915
21095
  summary?: string | null;
20916
21096
  customSummary?: string | null;
20917
21097
  keywords?: Array<string> | null;
@@ -21018,8 +21198,8 @@ export type GetConversationQuery = {
21018
21198
  inLast?: any | null;
21019
21199
  createdInLast?: any | null;
21020
21200
  types?: Array<ContentTypes> | null;
21021
- fileTypes?: Array<FileTypes | null> | null;
21022
- formats?: Array<string | null> | null;
21201
+ fileTypes?: Array<FileTypes> | null;
21202
+ formats?: Array<string> | null;
21023
21203
  fileExtensions?: Array<string> | null;
21024
21204
  hasObservations?: boolean | null;
21025
21205
  hasFeeds?: boolean | null;
@@ -21067,7 +21247,7 @@ export type GetConversationQuery = {
21067
21247
  observations?: Array<{
21068
21248
  __typename?: 'ObservationCriteria';
21069
21249
  type: ObservableTypes;
21070
- states?: Array<EntityState | null> | null;
21250
+ states?: Array<EntityState> | null;
21071
21251
  observable: {
21072
21252
  __typename?: 'EntityReference';
21073
21253
  id: string;
@@ -21094,7 +21274,7 @@ export type GetConversationQuery = {
21094
21274
  observations?: Array<{
21095
21275
  __typename?: 'ObservationCriteria';
21096
21276
  type: ObservableTypes;
21097
- states?: Array<EntityState | null> | null;
21277
+ states?: Array<EntityState> | null;
21098
21278
  observable: {
21099
21279
  __typename?: 'EntityReference';
21100
21280
  id: string;
@@ -21122,7 +21302,7 @@ export type GetConversationQuery = {
21122
21302
  observations?: Array<{
21123
21303
  __typename?: 'ObservationCriteria';
21124
21304
  type: ObservableTypes;
21125
- states?: Array<EntityState | null> | null;
21305
+ states?: Array<EntityState> | null;
21126
21306
  observable: {
21127
21307
  __typename?: 'EntityReference';
21128
21308
  id: string;
@@ -21135,8 +21315,8 @@ export type GetConversationQuery = {
21135
21315
  inLast?: any | null;
21136
21316
  createdInLast?: any | null;
21137
21317
  types?: Array<ContentTypes> | null;
21138
- fileTypes?: Array<FileTypes | null> | null;
21139
- formats?: Array<string | null> | null;
21318
+ fileTypes?: Array<FileTypes> | null;
21319
+ formats?: Array<string> | null;
21140
21320
  fileExtensions?: Array<string> | null;
21141
21321
  hasObservations?: boolean | null;
21142
21322
  hasFeeds?: boolean | null;
@@ -21184,7 +21364,7 @@ export type GetConversationQuery = {
21184
21364
  observations?: Array<{
21185
21365
  __typename?: 'ObservationCriteria';
21186
21366
  type: ObservableTypes;
21187
- states?: Array<EntityState | null> | null;
21367
+ states?: Array<EntityState> | null;
21188
21368
  observable: {
21189
21369
  __typename?: 'EntityReference';
21190
21370
  id: string;
@@ -21211,7 +21391,7 @@ export type GetConversationQuery = {
21211
21391
  observations?: Array<{
21212
21392
  __typename?: 'ObservationCriteria';
21213
21393
  type: ObservableTypes;
21214
- states?: Array<EntityState | null> | null;
21394
+ states?: Array<EntityState> | null;
21215
21395
  observable: {
21216
21396
  __typename?: 'EntityReference';
21217
21397
  id: string;
@@ -21239,7 +21419,7 @@ export type GetConversationQuery = {
21239
21419
  observations?: Array<{
21240
21420
  __typename?: 'ObservationCriteria';
21241
21421
  type: ObservableTypes;
21242
- states?: Array<EntityState | null> | null;
21422
+ states?: Array<EntityState> | null;
21243
21423
  observable: {
21244
21424
  __typename?: 'EntityReference';
21245
21425
  id: string;
@@ -21312,6 +21492,8 @@ export type PromptMutation = {
21312
21492
  textUri?: any | null;
21313
21493
  audioUri?: any | null;
21314
21494
  transcriptUri?: any | null;
21495
+ snapshotsUri?: any | null;
21496
+ snapshotCount?: number | null;
21315
21497
  summary?: string | null;
21316
21498
  customSummary?: string | null;
21317
21499
  keywords?: Array<string> | null;
@@ -21472,6 +21654,8 @@ export type PromptConversationMutation = {
21472
21654
  textUri?: any | null;
21473
21655
  audioUri?: any | null;
21474
21656
  transcriptUri?: any | null;
21657
+ snapshotsUri?: any | null;
21658
+ snapshotCount?: number | null;
21475
21659
  summary?: string | null;
21476
21660
  customSummary?: string | null;
21477
21661
  keywords?: Array<string> | null;
@@ -21668,6 +21852,8 @@ export type PromptConversationMutation = {
21668
21852
  textUri?: any | null;
21669
21853
  audioUri?: any | null;
21670
21854
  transcriptUri?: any | null;
21855
+ snapshotsUri?: any | null;
21856
+ snapshotCount?: number | null;
21671
21857
  summary?: string | null;
21672
21858
  customSummary?: string | null;
21673
21859
  keywords?: Array<string> | null;
@@ -21797,6 +21983,8 @@ export type PublishConversationMutation = {
21797
21983
  textUri?: any | null;
21798
21984
  audioUri?: any | null;
21799
21985
  transcriptUri?: any | null;
21986
+ snapshotsUri?: any | null;
21987
+ snapshotCount?: number | null;
21800
21988
  summary?: string | null;
21801
21989
  customSummary?: string | null;
21802
21990
  keywords?: Array<string> | null;
@@ -21963,6 +22151,8 @@ export type QueryConversationsQuery = {
21963
22151
  textUri?: any | null;
21964
22152
  audioUri?: any | null;
21965
22153
  transcriptUri?: any | null;
22154
+ snapshotsUri?: any | null;
22155
+ snapshotCount?: number | null;
21966
22156
  summary?: string | null;
21967
22157
  customSummary?: string | null;
21968
22158
  keywords?: Array<string> | null;
@@ -22069,8 +22259,8 @@ export type QueryConversationsQuery = {
22069
22259
  inLast?: any | null;
22070
22260
  createdInLast?: any | null;
22071
22261
  types?: Array<ContentTypes> | null;
22072
- fileTypes?: Array<FileTypes | null> | null;
22073
- formats?: Array<string | null> | null;
22262
+ fileTypes?: Array<FileTypes> | null;
22263
+ formats?: Array<string> | null;
22074
22264
  fileExtensions?: Array<string> | null;
22075
22265
  hasObservations?: boolean | null;
22076
22266
  hasFeeds?: boolean | null;
@@ -22118,7 +22308,7 @@ export type QueryConversationsQuery = {
22118
22308
  observations?: Array<{
22119
22309
  __typename?: 'ObservationCriteria';
22120
22310
  type: ObservableTypes;
22121
- states?: Array<EntityState | null> | null;
22311
+ states?: Array<EntityState> | null;
22122
22312
  observable: {
22123
22313
  __typename?: 'EntityReference';
22124
22314
  id: string;
@@ -22145,7 +22335,7 @@ export type QueryConversationsQuery = {
22145
22335
  observations?: Array<{
22146
22336
  __typename?: 'ObservationCriteria';
22147
22337
  type: ObservableTypes;
22148
- states?: Array<EntityState | null> | null;
22338
+ states?: Array<EntityState> | null;
22149
22339
  observable: {
22150
22340
  __typename?: 'EntityReference';
22151
22341
  id: string;
@@ -22173,7 +22363,7 @@ export type QueryConversationsQuery = {
22173
22363
  observations?: Array<{
22174
22364
  __typename?: 'ObservationCriteria';
22175
22365
  type: ObservableTypes;
22176
- states?: Array<EntityState | null> | null;
22366
+ states?: Array<EntityState> | null;
22177
22367
  observable: {
22178
22368
  __typename?: 'EntityReference';
22179
22369
  id: string;
@@ -22186,8 +22376,8 @@ export type QueryConversationsQuery = {
22186
22376
  inLast?: any | null;
22187
22377
  createdInLast?: any | null;
22188
22378
  types?: Array<ContentTypes> | null;
22189
- fileTypes?: Array<FileTypes | null> | null;
22190
- formats?: Array<string | null> | null;
22379
+ fileTypes?: Array<FileTypes> | null;
22380
+ formats?: Array<string> | null;
22191
22381
  fileExtensions?: Array<string> | null;
22192
22382
  hasObservations?: boolean | null;
22193
22383
  hasFeeds?: boolean | null;
@@ -22235,7 +22425,7 @@ export type QueryConversationsQuery = {
22235
22425
  observations?: Array<{
22236
22426
  __typename?: 'ObservationCriteria';
22237
22427
  type: ObservableTypes;
22238
- states?: Array<EntityState | null> | null;
22428
+ states?: Array<EntityState> | null;
22239
22429
  observable: {
22240
22430
  __typename?: 'EntityReference';
22241
22431
  id: string;
@@ -22262,7 +22452,7 @@ export type QueryConversationsQuery = {
22262
22452
  observations?: Array<{
22263
22453
  __typename?: 'ObservationCriteria';
22264
22454
  type: ObservableTypes;
22265
- states?: Array<EntityState | null> | null;
22455
+ states?: Array<EntityState> | null;
22266
22456
  observable: {
22267
22457
  __typename?: 'EntityReference';
22268
22458
  id: string;
@@ -22290,7 +22480,7 @@ export type QueryConversationsQuery = {
22290
22480
  observations?: Array<{
22291
22481
  __typename?: 'ObservationCriteria';
22292
22482
  type: ObservableTypes;
22293
- states?: Array<EntityState | null> | null;
22483
+ states?: Array<EntityState> | null;
22294
22484
  observable: {
22295
22485
  __typename?: 'EntityReference';
22296
22486
  id: string;
@@ -22420,6 +22610,8 @@ export type ReviseContentMutation = {
22420
22610
  textUri?: any | null;
22421
22611
  audioUri?: any | null;
22422
22612
  transcriptUri?: any | null;
22613
+ snapshotsUri?: any | null;
22614
+ snapshotCount?: number | null;
22423
22615
  summary?: string | null;
22424
22616
  customSummary?: string | null;
22425
22617
  keywords?: Array<string> | null;
@@ -22576,6 +22768,8 @@ export type ReviseEncodedImageMutation = {
22576
22768
  textUri?: any | null;
22577
22769
  audioUri?: any | null;
22578
22770
  transcriptUri?: any | null;
22771
+ snapshotsUri?: any | null;
22772
+ snapshotCount?: number | null;
22579
22773
  summary?: string | null;
22580
22774
  customSummary?: string | null;
22581
22775
  keywords?: Array<string> | null;
@@ -22731,6 +22925,8 @@ export type ReviseImageMutation = {
22731
22925
  textUri?: any | null;
22732
22926
  audioUri?: any | null;
22733
22927
  transcriptUri?: any | null;
22928
+ snapshotsUri?: any | null;
22929
+ snapshotCount?: number | null;
22734
22930
  summary?: string | null;
22735
22931
  customSummary?: string | null;
22736
22932
  keywords?: Array<string> | null;
@@ -22886,6 +23082,8 @@ export type ReviseTextMutation = {
22886
23082
  textUri?: any | null;
22887
23083
  audioUri?: any | null;
22888
23084
  transcriptUri?: any | null;
23085
+ snapshotsUri?: any | null;
23086
+ snapshotCount?: number | null;
22889
23087
  summary?: string | null;
22890
23088
  customSummary?: string | null;
22891
23089
  keywords?: Array<string> | null;
@@ -26969,6 +27167,8 @@ export type PromptSpecificationsMutation = {
26969
27167
  textUri?: any | null;
26970
27168
  audioUri?: any | null;
26971
27169
  transcriptUri?: any | null;
27170
+ snapshotsUri?: any | null;
27171
+ snapshotCount?: number | null;
26972
27172
  summary?: string | null;
26973
27173
  customSummary?: string | null;
26974
27174
  keywords?: Array<string> | null;
@@ -27724,8 +27924,8 @@ export type CreateViewMutation = {
27724
27924
  inLast?: any | null;
27725
27925
  createdInLast?: any | null;
27726
27926
  types?: Array<ContentTypes> | null;
27727
- fileTypes?: Array<FileTypes | null> | null;
27728
- formats?: Array<string | null> | null;
27927
+ fileTypes?: Array<FileTypes> | null;
27928
+ formats?: Array<string> | null;
27729
27929
  fileExtensions?: Array<string> | null;
27730
27930
  hasObservations?: boolean | null;
27731
27931
  hasFeeds?: boolean | null;
@@ -27773,7 +27973,7 @@ export type CreateViewMutation = {
27773
27973
  observations?: Array<{
27774
27974
  __typename?: 'ObservationCriteria';
27775
27975
  type: ObservableTypes;
27776
- states?: Array<EntityState | null> | null;
27976
+ states?: Array<EntityState> | null;
27777
27977
  observable: {
27778
27978
  __typename?: 'EntityReference';
27779
27979
  id: string;
@@ -27800,7 +28000,7 @@ export type CreateViewMutation = {
27800
28000
  observations?: Array<{
27801
28001
  __typename?: 'ObservationCriteria';
27802
28002
  type: ObservableTypes;
27803
- states?: Array<EntityState | null> | null;
28003
+ states?: Array<EntityState> | null;
27804
28004
  observable: {
27805
28005
  __typename?: 'EntityReference';
27806
28006
  id: string;
@@ -27828,7 +28028,7 @@ export type CreateViewMutation = {
27828
28028
  observations?: Array<{
27829
28029
  __typename?: 'ObservationCriteria';
27830
28030
  type: ObservableTypes;
27831
- states?: Array<EntityState | null> | null;
28031
+ states?: Array<EntityState> | null;
27832
28032
  observable: {
27833
28033
  __typename?: 'EntityReference';
27834
28034
  id: string;
@@ -27841,8 +28041,8 @@ export type CreateViewMutation = {
27841
28041
  inLast?: any | null;
27842
28042
  createdInLast?: any | null;
27843
28043
  types?: Array<ContentTypes> | null;
27844
- fileTypes?: Array<FileTypes | null> | null;
27845
- formats?: Array<string | null> | null;
28044
+ fileTypes?: Array<FileTypes> | null;
28045
+ formats?: Array<string> | null;
27846
28046
  fileExtensions?: Array<string> | null;
27847
28047
  hasObservations?: boolean | null;
27848
28048
  hasFeeds?: boolean | null;
@@ -27890,7 +28090,7 @@ export type CreateViewMutation = {
27890
28090
  observations?: Array<{
27891
28091
  __typename?: 'ObservationCriteria';
27892
28092
  type: ObservableTypes;
27893
- states?: Array<EntityState | null> | null;
28093
+ states?: Array<EntityState> | null;
27894
28094
  observable: {
27895
28095
  __typename?: 'EntityReference';
27896
28096
  id: string;
@@ -27917,7 +28117,7 @@ export type CreateViewMutation = {
27917
28117
  observations?: Array<{
27918
28118
  __typename?: 'ObservationCriteria';
27919
28119
  type: ObservableTypes;
27920
- states?: Array<EntityState | null> | null;
28120
+ states?: Array<EntityState> | null;
27921
28121
  observable: {
27922
28122
  __typename?: 'EntityReference';
27923
28123
  id: string;
@@ -27945,7 +28145,7 @@ export type CreateViewMutation = {
27945
28145
  observations?: Array<{
27946
28146
  __typename?: 'ObservationCriteria';
27947
28147
  type: ObservableTypes;
27948
- states?: Array<EntityState | null> | null;
28148
+ states?: Array<EntityState> | null;
27949
28149
  observable: {
27950
28150
  __typename?: 'EntityReference';
27951
28151
  id: string;
@@ -28014,8 +28214,8 @@ export type GetViewQuery = {
28014
28214
  inLast?: any | null;
28015
28215
  createdInLast?: any | null;
28016
28216
  types?: Array<ContentTypes> | null;
28017
- fileTypes?: Array<FileTypes | null> | null;
28018
- formats?: Array<string | null> | null;
28217
+ fileTypes?: Array<FileTypes> | null;
28218
+ formats?: Array<string> | null;
28019
28219
  fileExtensions?: Array<string> | null;
28020
28220
  hasObservations?: boolean | null;
28021
28221
  hasFeeds?: boolean | null;
@@ -28063,7 +28263,7 @@ export type GetViewQuery = {
28063
28263
  observations?: Array<{
28064
28264
  __typename?: 'ObservationCriteria';
28065
28265
  type: ObservableTypes;
28066
- states?: Array<EntityState | null> | null;
28266
+ states?: Array<EntityState> | null;
28067
28267
  observable: {
28068
28268
  __typename?: 'EntityReference';
28069
28269
  id: string;
@@ -28090,7 +28290,7 @@ export type GetViewQuery = {
28090
28290
  observations?: Array<{
28091
28291
  __typename?: 'ObservationCriteria';
28092
28292
  type: ObservableTypes;
28093
- states?: Array<EntityState | null> | null;
28293
+ states?: Array<EntityState> | null;
28094
28294
  observable: {
28095
28295
  __typename?: 'EntityReference';
28096
28296
  id: string;
@@ -28118,7 +28318,7 @@ export type GetViewQuery = {
28118
28318
  observations?: Array<{
28119
28319
  __typename?: 'ObservationCriteria';
28120
28320
  type: ObservableTypes;
28121
- states?: Array<EntityState | null> | null;
28321
+ states?: Array<EntityState> | null;
28122
28322
  observable: {
28123
28323
  __typename?: 'EntityReference';
28124
28324
  id: string;
@@ -28131,8 +28331,8 @@ export type GetViewQuery = {
28131
28331
  inLast?: any | null;
28132
28332
  createdInLast?: any | null;
28133
28333
  types?: Array<ContentTypes> | null;
28134
- fileTypes?: Array<FileTypes | null> | null;
28135
- formats?: Array<string | null> | null;
28334
+ fileTypes?: Array<FileTypes> | null;
28335
+ formats?: Array<string> | null;
28136
28336
  fileExtensions?: Array<string> | null;
28137
28337
  hasObservations?: boolean | null;
28138
28338
  hasFeeds?: boolean | null;
@@ -28180,7 +28380,7 @@ export type GetViewQuery = {
28180
28380
  observations?: Array<{
28181
28381
  __typename?: 'ObservationCriteria';
28182
28382
  type: ObservableTypes;
28183
- states?: Array<EntityState | null> | null;
28383
+ states?: Array<EntityState> | null;
28184
28384
  observable: {
28185
28385
  __typename?: 'EntityReference';
28186
28386
  id: string;
@@ -28207,7 +28407,7 @@ export type GetViewQuery = {
28207
28407
  observations?: Array<{
28208
28408
  __typename?: 'ObservationCriteria';
28209
28409
  type: ObservableTypes;
28210
- states?: Array<EntityState | null> | null;
28410
+ states?: Array<EntityState> | null;
28211
28411
  observable: {
28212
28412
  __typename?: 'EntityReference';
28213
28413
  id: string;
@@ -28235,7 +28435,7 @@ export type GetViewQuery = {
28235
28435
  observations?: Array<{
28236
28436
  __typename?: 'ObservationCriteria';
28237
28437
  type: ObservableTypes;
28238
- states?: Array<EntityState | null> | null;
28438
+ states?: Array<EntityState> | null;
28239
28439
  observable: {
28240
28440
  __typename?: 'EntityReference';
28241
28441
  id: string;
@@ -28270,8 +28470,8 @@ export type QueryViewsQuery = {
28270
28470
  inLast?: any | null;
28271
28471
  createdInLast?: any | null;
28272
28472
  types?: Array<ContentTypes> | null;
28273
- fileTypes?: Array<FileTypes | null> | null;
28274
- formats?: Array<string | null> | null;
28473
+ fileTypes?: Array<FileTypes> | null;
28474
+ formats?: Array<string> | null;
28275
28475
  fileExtensions?: Array<string> | null;
28276
28476
  hasObservations?: boolean | null;
28277
28477
  hasFeeds?: boolean | null;
@@ -28319,7 +28519,7 @@ export type QueryViewsQuery = {
28319
28519
  observations?: Array<{
28320
28520
  __typename?: 'ObservationCriteria';
28321
28521
  type: ObservableTypes;
28322
- states?: Array<EntityState | null> | null;
28522
+ states?: Array<EntityState> | null;
28323
28523
  observable: {
28324
28524
  __typename?: 'EntityReference';
28325
28525
  id: string;
@@ -28346,7 +28546,7 @@ export type QueryViewsQuery = {
28346
28546
  observations?: Array<{
28347
28547
  __typename?: 'ObservationCriteria';
28348
28548
  type: ObservableTypes;
28349
- states?: Array<EntityState | null> | null;
28549
+ states?: Array<EntityState> | null;
28350
28550
  observable: {
28351
28551
  __typename?: 'EntityReference';
28352
28552
  id: string;
@@ -28374,7 +28574,7 @@ export type QueryViewsQuery = {
28374
28574
  observations?: Array<{
28375
28575
  __typename?: 'ObservationCriteria';
28376
28576
  type: ObservableTypes;
28377
- states?: Array<EntityState | null> | null;
28577
+ states?: Array<EntityState> | null;
28378
28578
  observable: {
28379
28579
  __typename?: 'EntityReference';
28380
28580
  id: string;
@@ -28387,8 +28587,8 @@ export type QueryViewsQuery = {
28387
28587
  inLast?: any | null;
28388
28588
  createdInLast?: any | null;
28389
28589
  types?: Array<ContentTypes> | null;
28390
- fileTypes?: Array<FileTypes | null> | null;
28391
- formats?: Array<string | null> | null;
28590
+ fileTypes?: Array<FileTypes> | null;
28591
+ formats?: Array<string> | null;
28392
28592
  fileExtensions?: Array<string> | null;
28393
28593
  hasObservations?: boolean | null;
28394
28594
  hasFeeds?: boolean | null;
@@ -28436,7 +28636,7 @@ export type QueryViewsQuery = {
28436
28636
  observations?: Array<{
28437
28637
  __typename?: 'ObservationCriteria';
28438
28638
  type: ObservableTypes;
28439
- states?: Array<EntityState | null> | null;
28639
+ states?: Array<EntityState> | null;
28440
28640
  observable: {
28441
28641
  __typename?: 'EntityReference';
28442
28642
  id: string;
@@ -28463,7 +28663,7 @@ export type QueryViewsQuery = {
28463
28663
  observations?: Array<{
28464
28664
  __typename?: 'ObservationCriteria';
28465
28665
  type: ObservableTypes;
28466
- states?: Array<EntityState | null> | null;
28666
+ states?: Array<EntityState> | null;
28467
28667
  observable: {
28468
28668
  __typename?: 'EntityReference';
28469
28669
  id: string;
@@ -28491,7 +28691,7 @@ export type QueryViewsQuery = {
28491
28691
  observations?: Array<{
28492
28692
  __typename?: 'ObservationCriteria';
28493
28693
  type: ObservableTypes;
28494
- states?: Array<EntityState | null> | null;
28694
+ states?: Array<EntityState> | null;
28495
28695
  observable: {
28496
28696
  __typename?: 'EntityReference';
28497
28697
  id: string;
@@ -28518,8 +28718,8 @@ export type UpdateViewMutation = {
28518
28718
  inLast?: any | null;
28519
28719
  createdInLast?: any | null;
28520
28720
  types?: Array<ContentTypes> | null;
28521
- fileTypes?: Array<FileTypes | null> | null;
28522
- formats?: Array<string | null> | null;
28721
+ fileTypes?: Array<FileTypes> | null;
28722
+ formats?: Array<string> | null;
28523
28723
  fileExtensions?: Array<string> | null;
28524
28724
  hasObservations?: boolean | null;
28525
28725
  hasFeeds?: boolean | null;
@@ -28567,7 +28767,7 @@ export type UpdateViewMutation = {
28567
28767
  observations?: Array<{
28568
28768
  __typename?: 'ObservationCriteria';
28569
28769
  type: ObservableTypes;
28570
- states?: Array<EntityState | null> | null;
28770
+ states?: Array<EntityState> | null;
28571
28771
  observable: {
28572
28772
  __typename?: 'EntityReference';
28573
28773
  id: string;
@@ -28594,7 +28794,7 @@ export type UpdateViewMutation = {
28594
28794
  observations?: Array<{
28595
28795
  __typename?: 'ObservationCriteria';
28596
28796
  type: ObservableTypes;
28597
- states?: Array<EntityState | null> | null;
28797
+ states?: Array<EntityState> | null;
28598
28798
  observable: {
28599
28799
  __typename?: 'EntityReference';
28600
28800
  id: string;
@@ -28622,7 +28822,7 @@ export type UpdateViewMutation = {
28622
28822
  observations?: Array<{
28623
28823
  __typename?: 'ObservationCriteria';
28624
28824
  type: ObservableTypes;
28625
- states?: Array<EntityState | null> | null;
28825
+ states?: Array<EntityState> | null;
28626
28826
  observable: {
28627
28827
  __typename?: 'EntityReference';
28628
28828
  id: string;
@@ -28635,8 +28835,8 @@ export type UpdateViewMutation = {
28635
28835
  inLast?: any | null;
28636
28836
  createdInLast?: any | null;
28637
28837
  types?: Array<ContentTypes> | null;
28638
- fileTypes?: Array<FileTypes | null> | null;
28639
- formats?: Array<string | null> | null;
28838
+ fileTypes?: Array<FileTypes> | null;
28839
+ formats?: Array<string> | null;
28640
28840
  fileExtensions?: Array<string> | null;
28641
28841
  hasObservations?: boolean | null;
28642
28842
  hasFeeds?: boolean | null;
@@ -28684,7 +28884,7 @@ export type UpdateViewMutation = {
28684
28884
  observations?: Array<{
28685
28885
  __typename?: 'ObservationCriteria';
28686
28886
  type: ObservableTypes;
28687
- states?: Array<EntityState | null> | null;
28887
+ states?: Array<EntityState> | null;
28688
28888
  observable: {
28689
28889
  __typename?: 'EntityReference';
28690
28890
  id: string;
@@ -28711,7 +28911,7 @@ export type UpdateViewMutation = {
28711
28911
  observations?: Array<{
28712
28912
  __typename?: 'ObservationCriteria';
28713
28913
  type: ObservableTypes;
28714
- states?: Array<EntityState | null> | null;
28914
+ states?: Array<EntityState> | null;
28715
28915
  observable: {
28716
28916
  __typename?: 'EntityReference';
28717
28917
  id: string;
@@ -28739,7 +28939,7 @@ export type UpdateViewMutation = {
28739
28939
  observations?: Array<{
28740
28940
  __typename?: 'ObservationCriteria';
28741
28941
  type: ObservableTypes;
28742
- states?: Array<EntityState | null> | null;
28942
+ states?: Array<EntityState> | null;
28743
28943
  observable: {
28744
28944
  __typename?: 'EntityReference';
28745
28945
  id: string;
@@ -28765,8 +28965,8 @@ export type UpsertViewMutation = {
28765
28965
  inLast?: any | null;
28766
28966
  createdInLast?: any | null;
28767
28967
  types?: Array<ContentTypes> | null;
28768
- fileTypes?: Array<FileTypes | null> | null;
28769
- formats?: Array<string | null> | null;
28968
+ fileTypes?: Array<FileTypes> | null;
28969
+ formats?: Array<string> | null;
28770
28970
  fileExtensions?: Array<string> | null;
28771
28971
  hasObservations?: boolean | null;
28772
28972
  hasFeeds?: boolean | null;
@@ -28814,7 +29014,7 @@ export type UpsertViewMutation = {
28814
29014
  observations?: Array<{
28815
29015
  __typename?: 'ObservationCriteria';
28816
29016
  type: ObservableTypes;
28817
- states?: Array<EntityState | null> | null;
29017
+ states?: Array<EntityState> | null;
28818
29018
  observable: {
28819
29019
  __typename?: 'EntityReference';
28820
29020
  id: string;
@@ -28841,7 +29041,7 @@ export type UpsertViewMutation = {
28841
29041
  observations?: Array<{
28842
29042
  __typename?: 'ObservationCriteria';
28843
29043
  type: ObservableTypes;
28844
- states?: Array<EntityState | null> | null;
29044
+ states?: Array<EntityState> | null;
28845
29045
  observable: {
28846
29046
  __typename?: 'EntityReference';
28847
29047
  id: string;
@@ -28869,7 +29069,7 @@ export type UpsertViewMutation = {
28869
29069
  observations?: Array<{
28870
29070
  __typename?: 'ObservationCriteria';
28871
29071
  type: ObservableTypes;
28872
- states?: Array<EntityState | null> | null;
29072
+ states?: Array<EntityState> | null;
28873
29073
  observable: {
28874
29074
  __typename?: 'EntityReference';
28875
29075
  id: string;
@@ -28882,8 +29082,8 @@ export type UpsertViewMutation = {
28882
29082
  inLast?: any | null;
28883
29083
  createdInLast?: any | null;
28884
29084
  types?: Array<ContentTypes> | null;
28885
- fileTypes?: Array<FileTypes | null> | null;
28886
- formats?: Array<string | null> | null;
29085
+ fileTypes?: Array<FileTypes> | null;
29086
+ formats?: Array<string> | null;
28887
29087
  fileExtensions?: Array<string> | null;
28888
29088
  hasObservations?: boolean | null;
28889
29089
  hasFeeds?: boolean | null;
@@ -28931,7 +29131,7 @@ export type UpsertViewMutation = {
28931
29131
  observations?: Array<{
28932
29132
  __typename?: 'ObservationCriteria';
28933
29133
  type: ObservableTypes;
28934
- states?: Array<EntityState | null> | null;
29134
+ states?: Array<EntityState> | null;
28935
29135
  observable: {
28936
29136
  __typename?: 'EntityReference';
28937
29137
  id: string;
@@ -28958,7 +29158,7 @@ export type UpsertViewMutation = {
28958
29158
  observations?: Array<{
28959
29159
  __typename?: 'ObservationCriteria';
28960
29160
  type: ObservableTypes;
28961
- states?: Array<EntityState | null> | null;
29161
+ states?: Array<EntityState> | null;
28962
29162
  observable: {
28963
29163
  __typename?: 'EntityReference';
28964
29164
  id: string;
@@ -28986,7 +29186,7 @@ export type UpsertViewMutation = {
28986
29186
  observations?: Array<{
28987
29187
  __typename?: 'ObservationCriteria';
28988
29188
  type: ObservableTypes;
28989
- states?: Array<EntityState | null> | null;
29189
+ states?: Array<EntityState> | null;
28990
29190
  observable: {
28991
29191
  __typename?: 'EntityReference';
28992
29192
  id: string;
@@ -29244,7 +29444,7 @@ export type CreateWorkflowMutation = {
29244
29444
  connector?: {
29245
29445
  __typename?: 'EntityEnrichmentConnector';
29246
29446
  type?: EntityEnrichmentServiceTypes | null;
29247
- enrichedTypes?: Array<ObservableTypes | null> | null;
29447
+ enrichedTypes?: Array<ObservableTypes> | null;
29248
29448
  fhir?: {
29249
29449
  __typename?: 'FHIREnrichmentProperties';
29250
29450
  endpoint?: any | null;
@@ -29262,7 +29462,9 @@ export type CreateWorkflowMutation = {
29262
29462
  __typename?: 'StoragePolicy';
29263
29463
  type?: StoragePolicyTypes | null;
29264
29464
  allowDuplicates?: boolean | null;
29265
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
29465
+ embeddingTypes?: Array<EmbeddingTypes> | null;
29466
+ enableSnapshots?: boolean | null;
29467
+ snapshotCount?: number | null;
29266
29468
  } | null;
29267
29469
  } | null;
29268
29470
  actions?: Array<{
@@ -29567,7 +29769,7 @@ export type GetWorkflowQuery = {
29567
29769
  connector?: {
29568
29770
  __typename?: 'EntityEnrichmentConnector';
29569
29771
  type?: EntityEnrichmentServiceTypes | null;
29570
- enrichedTypes?: Array<ObservableTypes | null> | null;
29772
+ enrichedTypes?: Array<ObservableTypes> | null;
29571
29773
  fhir?: {
29572
29774
  __typename?: 'FHIREnrichmentProperties';
29573
29775
  endpoint?: any | null;
@@ -29585,7 +29787,9 @@ export type GetWorkflowQuery = {
29585
29787
  __typename?: 'StoragePolicy';
29586
29788
  type?: StoragePolicyTypes | null;
29587
29789
  allowDuplicates?: boolean | null;
29588
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
29790
+ embeddingTypes?: Array<EmbeddingTypes> | null;
29791
+ enableSnapshots?: boolean | null;
29792
+ snapshotCount?: number | null;
29589
29793
  } | null;
29590
29794
  } | null;
29591
29795
  actions?: Array<{
@@ -29856,7 +30060,7 @@ export type QueryWorkflowsQuery = {
29856
30060
  connector?: {
29857
30061
  __typename?: 'EntityEnrichmentConnector';
29858
30062
  type?: EntityEnrichmentServiceTypes | null;
29859
- enrichedTypes?: Array<ObservableTypes | null> | null;
30063
+ enrichedTypes?: Array<ObservableTypes> | null;
29860
30064
  fhir?: {
29861
30065
  __typename?: 'FHIREnrichmentProperties';
29862
30066
  endpoint?: any | null;
@@ -29874,7 +30078,9 @@ export type QueryWorkflowsQuery = {
29874
30078
  __typename?: 'StoragePolicy';
29875
30079
  type?: StoragePolicyTypes | null;
29876
30080
  allowDuplicates?: boolean | null;
29877
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
30081
+ embeddingTypes?: Array<EmbeddingTypes> | null;
30082
+ enableSnapshots?: boolean | null;
30083
+ snapshotCount?: number | null;
29878
30084
  } | null;
29879
30085
  } | null;
29880
30086
  actions?: Array<{
@@ -30137,7 +30343,7 @@ export type UpdateWorkflowMutation = {
30137
30343
  connector?: {
30138
30344
  __typename?: 'EntityEnrichmentConnector';
30139
30345
  type?: EntityEnrichmentServiceTypes | null;
30140
- enrichedTypes?: Array<ObservableTypes | null> | null;
30346
+ enrichedTypes?: Array<ObservableTypes> | null;
30141
30347
  fhir?: {
30142
30348
  __typename?: 'FHIREnrichmentProperties';
30143
30349
  endpoint?: any | null;
@@ -30155,7 +30361,9 @@ export type UpdateWorkflowMutation = {
30155
30361
  __typename?: 'StoragePolicy';
30156
30362
  type?: StoragePolicyTypes | null;
30157
30363
  allowDuplicates?: boolean | null;
30158
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
30364
+ embeddingTypes?: Array<EmbeddingTypes> | null;
30365
+ enableSnapshots?: boolean | null;
30366
+ snapshotCount?: number | null;
30159
30367
  } | null;
30160
30368
  } | null;
30161
30369
  actions?: Array<{
@@ -30417,7 +30625,7 @@ export type UpsertWorkflowMutation = {
30417
30625
  connector?: {
30418
30626
  __typename?: 'EntityEnrichmentConnector';
30419
30627
  type?: EntityEnrichmentServiceTypes | null;
30420
- enrichedTypes?: Array<ObservableTypes | null> | null;
30628
+ enrichedTypes?: Array<ObservableTypes> | null;
30421
30629
  fhir?: {
30422
30630
  __typename?: 'FHIREnrichmentProperties';
30423
30631
  endpoint?: any | null;
@@ -30435,7 +30643,9 @@ export type UpsertWorkflowMutation = {
30435
30643
  __typename?: 'StoragePolicy';
30436
30644
  type?: StoragePolicyTypes | null;
30437
30645
  allowDuplicates?: boolean | null;
30438
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
30646
+ embeddingTypes?: Array<EmbeddingTypes> | null;
30647
+ enableSnapshots?: boolean | null;
30648
+ snapshotCount?: number | null;
30439
30649
  } | null;
30440
30650
  } | null;
30441
30651
  actions?: Array<{