graphlit-client 1.0.20251008001 → 1.0.20251021001

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.
@@ -171,7 +171,7 @@ export type AlertFilter = {
171
171
  /** Filter alert(s) by their states. */
172
172
  states?: InputMaybe<Array<EntityState>>;
173
173
  /** Filter by alert types. */
174
- types?: InputMaybe<Array<InputMaybe<AlertTypes>>>;
174
+ types?: InputMaybe<Array<AlertTypes>>;
175
175
  };
176
176
  /** Represents an alert. */
177
177
  export type AlertInput = {
@@ -379,11 +379,11 @@ export declare enum AnthropicModels {
379
379
  Claude_3_5Haiku = "CLAUDE_3_5_HAIKU",
380
380
  /** Claude 3.5 Haiku (10-22-2024 version) */
381
381
  Claude_3_5Haiku_20241022 = "CLAUDE_3_5_HAIKU_20241022",
382
- /** Claude 3.5 Sonnet (Latest) */
382
+ /** @deprecated Use Claude 4.5 Sonnet instead. */
383
383
  Claude_3_5Sonnet = "CLAUDE_3_5_SONNET",
384
- /** @deprecated Use Claude 4.x instead. */
384
+ /** @deprecated Use Claude 4.5 Sonnet instead. */
385
385
  Claude_3_5Sonnet_20240620 = "CLAUDE_3_5_SONNET_20240620",
386
- /** Claude 3.5 Sonnet (10-22-2024 version) */
386
+ /** @deprecated Use Claude 4.5 Sonnet instead. */
387
387
  Claude_3_5Sonnet_20241022 = "CLAUDE_3_5_SONNET_20241022",
388
388
  /** Claude 3.7 Sonnet (Latest) */
389
389
  Claude_3_7Sonnet = "CLAUDE_3_7_SONNET",
@@ -405,6 +405,10 @@ export declare enum AnthropicModels {
405
405
  Claude_4_1Opus = "CLAUDE_4_1_OPUS",
406
406
  /** Claude 4.1 Opus (08-05-2025 version) */
407
407
  Claude_4_1Opus_20250805 = "CLAUDE_4_1_OPUS_20250805",
408
+ /** Claude 4.5 Haiku (Latest) */
409
+ Claude_4_5Haiku = "CLAUDE_4_5_HAIKU",
410
+ /** Claude 4.5 Haiku (10-01-2025 version) */
411
+ Claude_4_5Haiku_20251001 = "CLAUDE_4_5_HAIKU_20251001",
408
412
  /** Claude 4.5 Sonnet (Latest) */
409
413
  Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
410
414
  /** Claude 4.5 Sonnet (09-29-2025 version) */
@@ -1976,6 +1980,10 @@ export type Content = {
1976
1980
  segments?: Maybe<Array<TextSegment>>;
1977
1981
  /** The content shape metadata. */
1978
1982
  shape?: Maybe<ShapeMetadata>;
1983
+ /** The number of snapshots stored for this content. Reflects the rolling window configured in workflow storage policy. */
1984
+ snapshotCount?: Maybe<Scalars['Int']['output']>;
1985
+ /** 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. */
1986
+ snapshotsUri?: Maybe<Scalars['URL']['output']>;
1979
1987
  /** The started date of the content workflow. */
1980
1988
  startedDate?: Maybe<Scalars['DateTime']['output']>;
1981
1989
  /** The state of the content (i.e. created, finished). */
@@ -2054,9 +2062,9 @@ export type ContentCriteria = {
2054
2062
  /** Filter by file size range. */
2055
2063
  fileSizeRange?: Maybe<Int64Range>;
2056
2064
  /** Filter by file types. */
2057
- fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
2065
+ fileTypes?: Maybe<Array<FileTypes>>;
2058
2066
  /** Filter by file formats. */
2059
- formats?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2067
+ formats?: Maybe<Array<Scalars['String']['output']>>;
2060
2068
  /** Filter by presence or absence of associated collections. */
2061
2069
  hasCollections?: Maybe<Scalars['Boolean']['output']>;
2062
2070
  /** Filter by presence or absence of associated feeds. */
@@ -2341,7 +2349,7 @@ export type ContentFilterLevel = {
2341
2349
  /** Represents the configuration for retrieving the knowledge graph. */
2342
2350
  export type ContentGraphInput = {
2343
2351
  /** The observable types. */
2344
- types?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
2352
+ types?: InputMaybe<Array<ObservableTypes>>;
2345
2353
  };
2346
2354
  /** Represents a content indexing connector. */
2347
2355
  export type ContentIndexingConnector = {
@@ -3693,7 +3701,7 @@ export type EntityEnrichmentConnector = {
3693
3701
  /** The specific properties for Diffbot entity enrichment. */
3694
3702
  diffbot?: Maybe<DiffbotEnrichmentProperties>;
3695
3703
  /** The observable entity types to be enriched. */
3696
- enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
3704
+ enrichedTypes?: Maybe<Array<ObservableTypes>>;
3697
3705
  /** The specific properties for FHIR medical entity enrichment. */
3698
3706
  fhir?: Maybe<FhirEnrichmentProperties>;
3699
3707
  /** The entity enrichment service type. */
@@ -3704,7 +3712,7 @@ export type EntityEnrichmentConnectorInput = {
3704
3712
  /** The specific properties for Diffbot entity enrichment. */
3705
3713
  diffbot?: InputMaybe<DiffbotEnrichmentPropertiesInput>;
3706
3714
  /** The observable entity types to be enriched. */
3707
- enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
3715
+ enrichedTypes?: InputMaybe<Array<ObservableTypes>>;
3708
3716
  /** The specific properties for FHIR medical entity enrichment. */
3709
3717
  fhir?: InputMaybe<FhirEnrichmentPropertiesInput>;
3710
3718
  /** The entity enrichment service type. */
@@ -4446,7 +4454,7 @@ export type FeedFilter = {
4446
4454
  /** Filter feed(s) by their states. */
4447
4455
  states?: InputMaybe<Array<EntityState>>;
4448
4456
  /** Filter by feed types. */
4449
- types?: InputMaybe<Array<InputMaybe<FeedTypes>>>;
4457
+ types?: InputMaybe<Array<FeedTypes>>;
4450
4458
  };
4451
4459
  /** Represents a feed. */
4452
4460
  export type FeedInput = {
@@ -8228,7 +8236,7 @@ export type MetadataFilter = {
8228
8236
  /** Limit the number of metadata(s) to be returned. Defaults to 100. */
8229
8237
  limit?: InputMaybe<Scalars['Int']['input']>;
8230
8238
  /** Filter by metadata types. */
8231
- metadataTypes?: InputMaybe<Array<InputMaybe<MetadataTypes>>>;
8239
+ metadataTypes?: InputMaybe<Array<MetadataTypes>>;
8232
8240
  /** Filter metadata(s) by their name. */
8233
8241
  name?: InputMaybe<Scalars['String']['input']>;
8234
8242
  /** Skip the specified number of metadata(s) from the beginning of the result set. Only supported on keyword search. */
@@ -8736,9 +8744,9 @@ export type ModelFeatures = {
8736
8744
  /** Represents a filter for LLM models. */
8737
8745
  export type ModelFilter = {
8738
8746
  /** Filter by LLM service types. */
8739
- serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
8747
+ serviceTypes?: InputMaybe<Array<ModelServiceTypes>>;
8740
8748
  /** Filter by LLM model types. */
8741
- types?: InputMaybe<Array<InputMaybe<ModelTypes>>>;
8749
+ types?: InputMaybe<Array<ModelTypes>>;
8742
8750
  };
8743
8751
  /** Represents an LLM image entity extraction connector. */
8744
8752
  export type ModelImageExtractionProperties = {
@@ -10386,7 +10394,7 @@ export type ObservationCriteria = {
10386
10394
  /** The observed entity. */
10387
10395
  observable: EntityReference;
10388
10396
  /** The observation states. */
10389
- states?: Maybe<Array<Maybe<EntityState>>>;
10397
+ states?: Maybe<Array<EntityState>>;
10390
10398
  /** The observed entity type. */
10391
10399
  type: ObservableTypes;
10392
10400
  };
@@ -10395,7 +10403,7 @@ export type ObservationCriteriaInput = {
10395
10403
  /** The observed entity. */
10396
10404
  observable?: InputMaybe<EntityReferenceInput>;
10397
10405
  /** The observation states. */
10398
- states?: InputMaybe<Array<InputMaybe<EntityState>>>;
10406
+ states?: InputMaybe<Array<EntityState>>;
10399
10407
  /** The observed entity type. */
10400
10408
  type?: InputMaybe<ObservableTypes>;
10401
10409
  };
@@ -10460,7 +10468,7 @@ export type ObservationReferenceFilter = {
10460
10468
  /** Filter by observed entity. */
10461
10469
  observable: EntityReferenceFilter;
10462
10470
  /** Filter observation(s) by their states. */
10463
- states?: InputMaybe<Array<InputMaybe<EntityState>>>;
10471
+ states?: InputMaybe<Array<EntityState>>;
10464
10472
  /** Filter by observed entity type. */
10465
10473
  type: ObservableTypes;
10466
10474
  };
@@ -14329,11 +14337,11 @@ export type SpecificationFilter = {
14329
14337
  /** Filter specification(s) by searching for similar text. */
14330
14338
  search?: InputMaybe<Scalars['String']['input']>;
14331
14339
  /** Filter by LLM service types. */
14332
- serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
14340
+ serviceTypes?: InputMaybe<Array<ModelServiceTypes>>;
14333
14341
  /** Filter specification(s) by their states. */
14334
14342
  states?: InputMaybe<Array<EntityState>>;
14335
14343
  /** Filter by LLM specification types. */
14336
- types?: InputMaybe<Array<InputMaybe<SpecificationTypes>>>;
14344
+ types?: InputMaybe<Array<SpecificationTypes>>;
14337
14345
  };
14338
14346
  /** Represents an LLM specification. */
14339
14347
  export type SpecificationInput = {
@@ -14488,7 +14496,11 @@ export type StoragePolicy = {
14488
14496
  /** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
14489
14497
  allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
14490
14498
  /** The types of embeddings to generate during enrichment. Defaults to all types if not specified. Specify an empty array to disable all embeddings. */
14491
- embeddingTypes?: Maybe<Array<Maybe<EmbeddingTypes>>>;
14499
+ embeddingTypes?: Maybe<Array<EmbeddingTypes>>;
14500
+ /** Enables content snapshots on restart. When enabled, preserves content state and files before re-ingestion. */
14501
+ enableSnapshots?: Maybe<Scalars['Boolean']['output']>;
14502
+ /** Number of rolling snapshots to retain. Defaults to 5. Older snapshots are automatically deleted. */
14503
+ snapshotCount?: Maybe<Scalars['Int']['output']>;
14492
14504
  /** The storage policy type. */
14493
14505
  type?: Maybe<StoragePolicyTypes>;
14494
14506
  };
@@ -14497,7 +14509,11 @@ export type StoragePolicyInput = {
14497
14509
  /** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
14498
14510
  allowDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
14499
14511
  /** The types of embeddings to generate during enrichment. Defaults to all types if not specified. Specify an empty array to disable all embeddings. */
14500
- embeddingTypes?: InputMaybe<Array<InputMaybe<EmbeddingTypes>>>;
14512
+ embeddingTypes?: InputMaybe<Array<EmbeddingTypes>>;
14513
+ /** Enables content snapshots on restart. When enabled, preserves content state and files before re-ingestion, defaults to False. */
14514
+ enableSnapshots?: InputMaybe<Scalars['Boolean']['input']>;
14515
+ /** Number of rolling snapshots to retain. Defaults to 5. Older snapshots are automatically deleted. */
14516
+ snapshotCount?: InputMaybe<Scalars['Int']['input']>;
14501
14517
  /** The storage policy type. */
14502
14518
  type?: InputMaybe<StoragePolicyTypes>;
14503
14519
  };
@@ -15710,8 +15726,8 @@ export type GetAlertQuery = {
15710
15726
  inLast?: any | null;
15711
15727
  createdInLast?: any | null;
15712
15728
  types?: Array<ContentTypes> | null;
15713
- fileTypes?: Array<FileTypes | null> | null;
15714
- formats?: Array<string | null> | null;
15729
+ fileTypes?: Array<FileTypes> | null;
15730
+ formats?: Array<string> | null;
15715
15731
  fileExtensions?: Array<string> | null;
15716
15732
  hasObservations?: boolean | null;
15717
15733
  hasFeeds?: boolean | null;
@@ -15759,7 +15775,7 @@ export type GetAlertQuery = {
15759
15775
  observations?: Array<{
15760
15776
  __typename?: 'ObservationCriteria';
15761
15777
  type: ObservableTypes;
15762
- states?: Array<EntityState | null> | null;
15778
+ states?: Array<EntityState> | null;
15763
15779
  observable: {
15764
15780
  __typename?: 'EntityReference';
15765
15781
  id: string;
@@ -15786,7 +15802,7 @@ export type GetAlertQuery = {
15786
15802
  observations?: Array<{
15787
15803
  __typename?: 'ObservationCriteria';
15788
15804
  type: ObservableTypes;
15789
- states?: Array<EntityState | null> | null;
15805
+ states?: Array<EntityState> | null;
15790
15806
  observable: {
15791
15807
  __typename?: 'EntityReference';
15792
15808
  id: string;
@@ -15814,7 +15830,7 @@ export type GetAlertQuery = {
15814
15830
  observations?: Array<{
15815
15831
  __typename?: 'ObservationCriteria';
15816
15832
  type: ObservableTypes;
15817
- states?: Array<EntityState | null> | null;
15833
+ states?: Array<EntityState> | null;
15818
15834
  observable: {
15819
15835
  __typename?: 'EntityReference';
15820
15836
  id: string;
@@ -15937,8 +15953,8 @@ export type QueryAlertsQuery = {
15937
15953
  inLast?: any | null;
15938
15954
  createdInLast?: any | null;
15939
15955
  types?: Array<ContentTypes> | null;
15940
- fileTypes?: Array<FileTypes | null> | null;
15941
- formats?: Array<string | null> | null;
15956
+ fileTypes?: Array<FileTypes> | null;
15957
+ formats?: Array<string> | null;
15942
15958
  fileExtensions?: Array<string> | null;
15943
15959
  hasObservations?: boolean | null;
15944
15960
  hasFeeds?: boolean | null;
@@ -15986,7 +16002,7 @@ export type QueryAlertsQuery = {
15986
16002
  observations?: Array<{
15987
16003
  __typename?: 'ObservationCriteria';
15988
16004
  type: ObservableTypes;
15989
- states?: Array<EntityState | null> | null;
16005
+ states?: Array<EntityState> | null;
15990
16006
  observable: {
15991
16007
  __typename?: 'EntityReference';
15992
16008
  id: string;
@@ -16013,7 +16029,7 @@ export type QueryAlertsQuery = {
16013
16029
  observations?: Array<{
16014
16030
  __typename?: 'ObservationCriteria';
16015
16031
  type: ObservableTypes;
16016
- states?: Array<EntityState | null> | null;
16032
+ states?: Array<EntityState> | null;
16017
16033
  observable: {
16018
16034
  __typename?: 'EntityReference';
16019
16035
  id: string;
@@ -16041,7 +16057,7 @@ export type QueryAlertsQuery = {
16041
16057
  observations?: Array<{
16042
16058
  __typename?: 'ObservationCriteria';
16043
16059
  type: ObservableTypes;
16044
- states?: Array<EntityState | null> | null;
16060
+ states?: Array<EntityState> | null;
16045
16061
  observable: {
16046
16062
  __typename?: 'EntityReference';
16047
16063
  id: string;
@@ -16732,6 +16748,8 @@ export type DescribeEncodedImageMutation = {
16732
16748
  textUri?: any | null;
16733
16749
  audioUri?: any | null;
16734
16750
  transcriptUri?: any | null;
16751
+ snapshotsUri?: any | null;
16752
+ snapshotCount?: number | null;
16735
16753
  summary?: string | null;
16736
16754
  customSummary?: string | null;
16737
16755
  keywords?: Array<string> | null;
@@ -16878,6 +16896,8 @@ export type DescribeImageMutation = {
16878
16896
  textUri?: any | null;
16879
16897
  audioUri?: any | null;
16880
16898
  transcriptUri?: any | null;
16899
+ snapshotsUri?: any | null;
16900
+ snapshotCount?: number | null;
16881
16901
  summary?: string | null;
16882
16902
  customSummary?: string | null;
16883
16903
  keywords?: Array<string> | null;
@@ -17066,6 +17086,8 @@ export type GetContentQuery = {
17066
17086
  textUri?: any | null;
17067
17087
  audioUri?: any | null;
17068
17088
  transcriptUri?: any | null;
17089
+ snapshotsUri?: any | null;
17090
+ snapshotCount?: number | null;
17069
17091
  summary?: string | null;
17070
17092
  customSummary?: string | null;
17071
17093
  keywords?: Array<string> | null;
@@ -17931,6 +17953,8 @@ export type LookupContentsQuery = {
17931
17953
  textUri?: any | null;
17932
17954
  audioUri?: any | null;
17933
17955
  transcriptUri?: any | null;
17956
+ snapshotsUri?: any | null;
17957
+ snapshotCount?: number | null;
17934
17958
  summary?: string | null;
17935
17959
  customSummary?: string | null;
17936
17960
  keywords?: Array<string> | null;
@@ -18347,6 +18371,8 @@ export type PublishContentsMutation = {
18347
18371
  textUri?: any | null;
18348
18372
  audioUri?: any | null;
18349
18373
  transcriptUri?: any | null;
18374
+ snapshotsUri?: any | null;
18375
+ snapshotCount?: number | null;
18350
18376
  summary?: string | null;
18351
18377
  customSummary?: string | null;
18352
18378
  keywords?: Array<string> | null;
@@ -18482,6 +18508,8 @@ export type PublishTextMutation = {
18482
18508
  textUri?: any | null;
18483
18509
  audioUri?: any | null;
18484
18510
  transcriptUri?: any | null;
18511
+ snapshotsUri?: any | null;
18512
+ snapshotCount?: number | null;
18485
18513
  summary?: string | null;
18486
18514
  customSummary?: string | null;
18487
18515
  keywords?: Array<string> | null;
@@ -18617,6 +18645,8 @@ export type QueryContentsQuery = {
18617
18645
  textUri?: any | null;
18618
18646
  audioUri?: any | null;
18619
18647
  transcriptUri?: any | null;
18648
+ snapshotsUri?: any | null;
18649
+ snapshotCount?: number | null;
18620
18650
  summary?: string | null;
18621
18651
  customSummary?: string | null;
18622
18652
  quotes?: Array<string> | null;
@@ -19010,6 +19040,8 @@ export type QueryContentsObservationsQuery = {
19010
19040
  textUri?: any | null;
19011
19041
  audioUri?: any | null;
19012
19042
  transcriptUri?: any | null;
19043
+ snapshotsUri?: any | null;
19044
+ snapshotCount?: number | null;
19013
19045
  summary?: string | null;
19014
19046
  customSummary?: string | null;
19015
19047
  quotes?: Array<string> | null;
@@ -19593,6 +19625,8 @@ export type AskGraphlitMutation = {
19593
19625
  textUri?: any | null;
19594
19626
  audioUri?: any | null;
19595
19627
  transcriptUri?: any | null;
19628
+ snapshotsUri?: any | null;
19629
+ snapshotCount?: number | null;
19596
19630
  summary?: string | null;
19597
19631
  customSummary?: string | null;
19598
19632
  keywords?: Array<string> | null;
@@ -19788,6 +19822,8 @@ export type CompleteConversationMutation = {
19788
19822
  textUri?: any | null;
19789
19823
  audioUri?: any | null;
19790
19824
  transcriptUri?: any | null;
19825
+ snapshotsUri?: any | null;
19826
+ snapshotCount?: number | null;
19791
19827
  summary?: string | null;
19792
19828
  customSummary?: string | null;
19793
19829
  keywords?: Array<string> | null;
@@ -19984,6 +20020,8 @@ export type CompleteConversationMutation = {
19984
20020
  textUri?: any | null;
19985
20021
  audioUri?: any | null;
19986
20022
  transcriptUri?: any | null;
20023
+ snapshotsUri?: any | null;
20024
+ snapshotCount?: number | null;
19987
20025
  summary?: string | null;
19988
20026
  customSummary?: string | null;
19989
20027
  keywords?: Array<string> | null;
@@ -20138,6 +20176,8 @@ export type ContinueConversationMutation = {
20138
20176
  textUri?: any | null;
20139
20177
  audioUri?: any | null;
20140
20178
  transcriptUri?: any | null;
20179
+ snapshotsUri?: any | null;
20180
+ snapshotCount?: number | null;
20141
20181
  summary?: string | null;
20142
20182
  customSummary?: string | null;
20143
20183
  keywords?: Array<string> | null;
@@ -20334,6 +20374,8 @@ export type ContinueConversationMutation = {
20334
20374
  textUri?: any | null;
20335
20375
  audioUri?: any | null;
20336
20376
  transcriptUri?: any | null;
20377
+ snapshotsUri?: any | null;
20378
+ snapshotCount?: number | null;
20337
20379
  summary?: string | null;
20338
20380
  customSummary?: string | null;
20339
20381
  keywords?: Array<string> | null;
@@ -20553,6 +20595,8 @@ export type FormatConversationMutation = {
20553
20595
  textUri?: any | null;
20554
20596
  audioUri?: any | null;
20555
20597
  transcriptUri?: any | null;
20598
+ snapshotsUri?: any | null;
20599
+ snapshotCount?: number | null;
20556
20600
  summary?: string | null;
20557
20601
  customSummary?: string | null;
20558
20602
  keywords?: Array<string> | null;
@@ -20749,6 +20793,8 @@ export type FormatConversationMutation = {
20749
20793
  textUri?: any | null;
20750
20794
  audioUri?: any | null;
20751
20795
  transcriptUri?: any | null;
20796
+ snapshotsUri?: any | null;
20797
+ snapshotCount?: number | null;
20752
20798
  summary?: string | null;
20753
20799
  customSummary?: string | null;
20754
20800
  keywords?: Array<string> | null;
@@ -20908,6 +20954,8 @@ export type GetConversationQuery = {
20908
20954
  textUri?: any | null;
20909
20955
  audioUri?: any | null;
20910
20956
  transcriptUri?: any | null;
20957
+ snapshotsUri?: any | null;
20958
+ snapshotCount?: number | null;
20911
20959
  summary?: string | null;
20912
20960
  customSummary?: string | null;
20913
20961
  keywords?: Array<string> | null;
@@ -21014,8 +21062,8 @@ export type GetConversationQuery = {
21014
21062
  inLast?: any | null;
21015
21063
  createdInLast?: any | null;
21016
21064
  types?: Array<ContentTypes> | null;
21017
- fileTypes?: Array<FileTypes | null> | null;
21018
- formats?: Array<string | null> | null;
21065
+ fileTypes?: Array<FileTypes> | null;
21066
+ formats?: Array<string> | null;
21019
21067
  fileExtensions?: Array<string> | null;
21020
21068
  hasObservations?: boolean | null;
21021
21069
  hasFeeds?: boolean | null;
@@ -21063,7 +21111,7 @@ export type GetConversationQuery = {
21063
21111
  observations?: Array<{
21064
21112
  __typename?: 'ObservationCriteria';
21065
21113
  type: ObservableTypes;
21066
- states?: Array<EntityState | null> | null;
21114
+ states?: Array<EntityState> | null;
21067
21115
  observable: {
21068
21116
  __typename?: 'EntityReference';
21069
21117
  id: string;
@@ -21090,7 +21138,7 @@ export type GetConversationQuery = {
21090
21138
  observations?: Array<{
21091
21139
  __typename?: 'ObservationCriteria';
21092
21140
  type: ObservableTypes;
21093
- states?: Array<EntityState | null> | null;
21141
+ states?: Array<EntityState> | null;
21094
21142
  observable: {
21095
21143
  __typename?: 'EntityReference';
21096
21144
  id: string;
@@ -21118,7 +21166,7 @@ export type GetConversationQuery = {
21118
21166
  observations?: Array<{
21119
21167
  __typename?: 'ObservationCriteria';
21120
21168
  type: ObservableTypes;
21121
- states?: Array<EntityState | null> | null;
21169
+ states?: Array<EntityState> | null;
21122
21170
  observable: {
21123
21171
  __typename?: 'EntityReference';
21124
21172
  id: string;
@@ -21131,8 +21179,8 @@ export type GetConversationQuery = {
21131
21179
  inLast?: any | null;
21132
21180
  createdInLast?: any | null;
21133
21181
  types?: Array<ContentTypes> | null;
21134
- fileTypes?: Array<FileTypes | null> | null;
21135
- formats?: Array<string | null> | null;
21182
+ fileTypes?: Array<FileTypes> | null;
21183
+ formats?: Array<string> | null;
21136
21184
  fileExtensions?: Array<string> | null;
21137
21185
  hasObservations?: boolean | null;
21138
21186
  hasFeeds?: boolean | null;
@@ -21180,7 +21228,7 @@ export type GetConversationQuery = {
21180
21228
  observations?: Array<{
21181
21229
  __typename?: 'ObservationCriteria';
21182
21230
  type: ObservableTypes;
21183
- states?: Array<EntityState | null> | null;
21231
+ states?: Array<EntityState> | null;
21184
21232
  observable: {
21185
21233
  __typename?: 'EntityReference';
21186
21234
  id: string;
@@ -21207,7 +21255,7 @@ export type GetConversationQuery = {
21207
21255
  observations?: Array<{
21208
21256
  __typename?: 'ObservationCriteria';
21209
21257
  type: ObservableTypes;
21210
- states?: Array<EntityState | null> | null;
21258
+ states?: Array<EntityState> | null;
21211
21259
  observable: {
21212
21260
  __typename?: 'EntityReference';
21213
21261
  id: string;
@@ -21235,7 +21283,7 @@ export type GetConversationQuery = {
21235
21283
  observations?: Array<{
21236
21284
  __typename?: 'ObservationCriteria';
21237
21285
  type: ObservableTypes;
21238
- states?: Array<EntityState | null> | null;
21286
+ states?: Array<EntityState> | null;
21239
21287
  observable: {
21240
21288
  __typename?: 'EntityReference';
21241
21289
  id: string;
@@ -21308,6 +21356,8 @@ export type PromptMutation = {
21308
21356
  textUri?: any | null;
21309
21357
  audioUri?: any | null;
21310
21358
  transcriptUri?: any | null;
21359
+ snapshotsUri?: any | null;
21360
+ snapshotCount?: number | null;
21311
21361
  summary?: string | null;
21312
21362
  customSummary?: string | null;
21313
21363
  keywords?: Array<string> | null;
@@ -21468,6 +21518,8 @@ export type PromptConversationMutation = {
21468
21518
  textUri?: any | null;
21469
21519
  audioUri?: any | null;
21470
21520
  transcriptUri?: any | null;
21521
+ snapshotsUri?: any | null;
21522
+ snapshotCount?: number | null;
21471
21523
  summary?: string | null;
21472
21524
  customSummary?: string | null;
21473
21525
  keywords?: Array<string> | null;
@@ -21664,6 +21716,8 @@ export type PromptConversationMutation = {
21664
21716
  textUri?: any | null;
21665
21717
  audioUri?: any | null;
21666
21718
  transcriptUri?: any | null;
21719
+ snapshotsUri?: any | null;
21720
+ snapshotCount?: number | null;
21667
21721
  summary?: string | null;
21668
21722
  customSummary?: string | null;
21669
21723
  keywords?: Array<string> | null;
@@ -21793,6 +21847,8 @@ export type PublishConversationMutation = {
21793
21847
  textUri?: any | null;
21794
21848
  audioUri?: any | null;
21795
21849
  transcriptUri?: any | null;
21850
+ snapshotsUri?: any | null;
21851
+ snapshotCount?: number | null;
21796
21852
  summary?: string | null;
21797
21853
  customSummary?: string | null;
21798
21854
  keywords?: Array<string> | null;
@@ -21959,6 +22015,8 @@ export type QueryConversationsQuery = {
21959
22015
  textUri?: any | null;
21960
22016
  audioUri?: any | null;
21961
22017
  transcriptUri?: any | null;
22018
+ snapshotsUri?: any | null;
22019
+ snapshotCount?: number | null;
21962
22020
  summary?: string | null;
21963
22021
  customSummary?: string | null;
21964
22022
  keywords?: Array<string> | null;
@@ -22065,8 +22123,8 @@ export type QueryConversationsQuery = {
22065
22123
  inLast?: any | null;
22066
22124
  createdInLast?: any | null;
22067
22125
  types?: Array<ContentTypes> | null;
22068
- fileTypes?: Array<FileTypes | null> | null;
22069
- formats?: Array<string | null> | null;
22126
+ fileTypes?: Array<FileTypes> | null;
22127
+ formats?: Array<string> | null;
22070
22128
  fileExtensions?: Array<string> | null;
22071
22129
  hasObservations?: boolean | null;
22072
22130
  hasFeeds?: boolean | null;
@@ -22114,7 +22172,7 @@ export type QueryConversationsQuery = {
22114
22172
  observations?: Array<{
22115
22173
  __typename?: 'ObservationCriteria';
22116
22174
  type: ObservableTypes;
22117
- states?: Array<EntityState | null> | null;
22175
+ states?: Array<EntityState> | null;
22118
22176
  observable: {
22119
22177
  __typename?: 'EntityReference';
22120
22178
  id: string;
@@ -22141,7 +22199,7 @@ export type QueryConversationsQuery = {
22141
22199
  observations?: Array<{
22142
22200
  __typename?: 'ObservationCriteria';
22143
22201
  type: ObservableTypes;
22144
- states?: Array<EntityState | null> | null;
22202
+ states?: Array<EntityState> | null;
22145
22203
  observable: {
22146
22204
  __typename?: 'EntityReference';
22147
22205
  id: string;
@@ -22169,7 +22227,7 @@ export type QueryConversationsQuery = {
22169
22227
  observations?: Array<{
22170
22228
  __typename?: 'ObservationCriteria';
22171
22229
  type: ObservableTypes;
22172
- states?: Array<EntityState | null> | null;
22230
+ states?: Array<EntityState> | null;
22173
22231
  observable: {
22174
22232
  __typename?: 'EntityReference';
22175
22233
  id: string;
@@ -22182,8 +22240,8 @@ export type QueryConversationsQuery = {
22182
22240
  inLast?: any | null;
22183
22241
  createdInLast?: any | null;
22184
22242
  types?: Array<ContentTypes> | null;
22185
- fileTypes?: Array<FileTypes | null> | null;
22186
- formats?: Array<string | null> | null;
22243
+ fileTypes?: Array<FileTypes> | null;
22244
+ formats?: Array<string> | null;
22187
22245
  fileExtensions?: Array<string> | null;
22188
22246
  hasObservations?: boolean | null;
22189
22247
  hasFeeds?: boolean | null;
@@ -22231,7 +22289,7 @@ export type QueryConversationsQuery = {
22231
22289
  observations?: Array<{
22232
22290
  __typename?: 'ObservationCriteria';
22233
22291
  type: ObservableTypes;
22234
- states?: Array<EntityState | null> | null;
22292
+ states?: Array<EntityState> | null;
22235
22293
  observable: {
22236
22294
  __typename?: 'EntityReference';
22237
22295
  id: string;
@@ -22258,7 +22316,7 @@ export type QueryConversationsQuery = {
22258
22316
  observations?: Array<{
22259
22317
  __typename?: 'ObservationCriteria';
22260
22318
  type: ObservableTypes;
22261
- states?: Array<EntityState | null> | null;
22319
+ states?: Array<EntityState> | null;
22262
22320
  observable: {
22263
22321
  __typename?: 'EntityReference';
22264
22322
  id: string;
@@ -22286,7 +22344,7 @@ export type QueryConversationsQuery = {
22286
22344
  observations?: Array<{
22287
22345
  __typename?: 'ObservationCriteria';
22288
22346
  type: ObservableTypes;
22289
- states?: Array<EntityState | null> | null;
22347
+ states?: Array<EntityState> | null;
22290
22348
  observable: {
22291
22349
  __typename?: 'EntityReference';
22292
22350
  id: string;
@@ -22416,6 +22474,8 @@ export type ReviseContentMutation = {
22416
22474
  textUri?: any | null;
22417
22475
  audioUri?: any | null;
22418
22476
  transcriptUri?: any | null;
22477
+ snapshotsUri?: any | null;
22478
+ snapshotCount?: number | null;
22419
22479
  summary?: string | null;
22420
22480
  customSummary?: string | null;
22421
22481
  keywords?: Array<string> | null;
@@ -22572,6 +22632,8 @@ export type ReviseEncodedImageMutation = {
22572
22632
  textUri?: any | null;
22573
22633
  audioUri?: any | null;
22574
22634
  transcriptUri?: any | null;
22635
+ snapshotsUri?: any | null;
22636
+ snapshotCount?: number | null;
22575
22637
  summary?: string | null;
22576
22638
  customSummary?: string | null;
22577
22639
  keywords?: Array<string> | null;
@@ -22727,6 +22789,8 @@ export type ReviseImageMutation = {
22727
22789
  textUri?: any | null;
22728
22790
  audioUri?: any | null;
22729
22791
  transcriptUri?: any | null;
22792
+ snapshotsUri?: any | null;
22793
+ snapshotCount?: number | null;
22730
22794
  summary?: string | null;
22731
22795
  customSummary?: string | null;
22732
22796
  keywords?: Array<string> | null;
@@ -22882,6 +22946,8 @@ export type ReviseTextMutation = {
22882
22946
  textUri?: any | null;
22883
22947
  audioUri?: any | null;
22884
22948
  transcriptUri?: any | null;
22949
+ snapshotsUri?: any | null;
22950
+ snapshotCount?: number | null;
22885
22951
  summary?: string | null;
22886
22952
  customSummary?: string | null;
22887
22953
  keywords?: Array<string> | null;
@@ -26965,6 +27031,8 @@ export type PromptSpecificationsMutation = {
26965
27031
  textUri?: any | null;
26966
27032
  audioUri?: any | null;
26967
27033
  transcriptUri?: any | null;
27034
+ snapshotsUri?: any | null;
27035
+ snapshotCount?: number | null;
26968
27036
  summary?: string | null;
26969
27037
  customSummary?: string | null;
26970
27038
  keywords?: Array<string> | null;
@@ -27720,8 +27788,8 @@ export type CreateViewMutation = {
27720
27788
  inLast?: any | null;
27721
27789
  createdInLast?: any | null;
27722
27790
  types?: Array<ContentTypes> | null;
27723
- fileTypes?: Array<FileTypes | null> | null;
27724
- formats?: Array<string | null> | null;
27791
+ fileTypes?: Array<FileTypes> | null;
27792
+ formats?: Array<string> | null;
27725
27793
  fileExtensions?: Array<string> | null;
27726
27794
  hasObservations?: boolean | null;
27727
27795
  hasFeeds?: boolean | null;
@@ -27769,7 +27837,7 @@ export type CreateViewMutation = {
27769
27837
  observations?: Array<{
27770
27838
  __typename?: 'ObservationCriteria';
27771
27839
  type: ObservableTypes;
27772
- states?: Array<EntityState | null> | null;
27840
+ states?: Array<EntityState> | null;
27773
27841
  observable: {
27774
27842
  __typename?: 'EntityReference';
27775
27843
  id: string;
@@ -27796,7 +27864,7 @@ export type CreateViewMutation = {
27796
27864
  observations?: Array<{
27797
27865
  __typename?: 'ObservationCriteria';
27798
27866
  type: ObservableTypes;
27799
- states?: Array<EntityState | null> | null;
27867
+ states?: Array<EntityState> | null;
27800
27868
  observable: {
27801
27869
  __typename?: 'EntityReference';
27802
27870
  id: string;
@@ -27824,7 +27892,7 @@ export type CreateViewMutation = {
27824
27892
  observations?: Array<{
27825
27893
  __typename?: 'ObservationCriteria';
27826
27894
  type: ObservableTypes;
27827
- states?: Array<EntityState | null> | null;
27895
+ states?: Array<EntityState> | null;
27828
27896
  observable: {
27829
27897
  __typename?: 'EntityReference';
27830
27898
  id: string;
@@ -27837,8 +27905,8 @@ export type CreateViewMutation = {
27837
27905
  inLast?: any | null;
27838
27906
  createdInLast?: any | null;
27839
27907
  types?: Array<ContentTypes> | null;
27840
- fileTypes?: Array<FileTypes | null> | null;
27841
- formats?: Array<string | null> | null;
27908
+ fileTypes?: Array<FileTypes> | null;
27909
+ formats?: Array<string> | null;
27842
27910
  fileExtensions?: Array<string> | null;
27843
27911
  hasObservations?: boolean | null;
27844
27912
  hasFeeds?: boolean | null;
@@ -27886,7 +27954,7 @@ export type CreateViewMutation = {
27886
27954
  observations?: Array<{
27887
27955
  __typename?: 'ObservationCriteria';
27888
27956
  type: ObservableTypes;
27889
- states?: Array<EntityState | null> | null;
27957
+ states?: Array<EntityState> | null;
27890
27958
  observable: {
27891
27959
  __typename?: 'EntityReference';
27892
27960
  id: string;
@@ -27913,7 +27981,7 @@ export type CreateViewMutation = {
27913
27981
  observations?: Array<{
27914
27982
  __typename?: 'ObservationCriteria';
27915
27983
  type: ObservableTypes;
27916
- states?: Array<EntityState | null> | null;
27984
+ states?: Array<EntityState> | null;
27917
27985
  observable: {
27918
27986
  __typename?: 'EntityReference';
27919
27987
  id: string;
@@ -27941,7 +28009,7 @@ export type CreateViewMutation = {
27941
28009
  observations?: Array<{
27942
28010
  __typename?: 'ObservationCriteria';
27943
28011
  type: ObservableTypes;
27944
- states?: Array<EntityState | null> | null;
28012
+ states?: Array<EntityState> | null;
27945
28013
  observable: {
27946
28014
  __typename?: 'EntityReference';
27947
28015
  id: string;
@@ -28010,8 +28078,8 @@ export type GetViewQuery = {
28010
28078
  inLast?: any | null;
28011
28079
  createdInLast?: any | null;
28012
28080
  types?: Array<ContentTypes> | null;
28013
- fileTypes?: Array<FileTypes | null> | null;
28014
- formats?: Array<string | null> | null;
28081
+ fileTypes?: Array<FileTypes> | null;
28082
+ formats?: Array<string> | null;
28015
28083
  fileExtensions?: Array<string> | null;
28016
28084
  hasObservations?: boolean | null;
28017
28085
  hasFeeds?: boolean | null;
@@ -28059,7 +28127,7 @@ export type GetViewQuery = {
28059
28127
  observations?: Array<{
28060
28128
  __typename?: 'ObservationCriteria';
28061
28129
  type: ObservableTypes;
28062
- states?: Array<EntityState | null> | null;
28130
+ states?: Array<EntityState> | null;
28063
28131
  observable: {
28064
28132
  __typename?: 'EntityReference';
28065
28133
  id: string;
@@ -28086,7 +28154,7 @@ export type GetViewQuery = {
28086
28154
  observations?: Array<{
28087
28155
  __typename?: 'ObservationCriteria';
28088
28156
  type: ObservableTypes;
28089
- states?: Array<EntityState | null> | null;
28157
+ states?: Array<EntityState> | null;
28090
28158
  observable: {
28091
28159
  __typename?: 'EntityReference';
28092
28160
  id: string;
@@ -28114,7 +28182,7 @@ export type GetViewQuery = {
28114
28182
  observations?: Array<{
28115
28183
  __typename?: 'ObservationCriteria';
28116
28184
  type: ObservableTypes;
28117
- states?: Array<EntityState | null> | null;
28185
+ states?: Array<EntityState> | null;
28118
28186
  observable: {
28119
28187
  __typename?: 'EntityReference';
28120
28188
  id: string;
@@ -28127,8 +28195,8 @@ export type GetViewQuery = {
28127
28195
  inLast?: any | null;
28128
28196
  createdInLast?: any | null;
28129
28197
  types?: Array<ContentTypes> | null;
28130
- fileTypes?: Array<FileTypes | null> | null;
28131
- formats?: Array<string | null> | null;
28198
+ fileTypes?: Array<FileTypes> | null;
28199
+ formats?: Array<string> | null;
28132
28200
  fileExtensions?: Array<string> | null;
28133
28201
  hasObservations?: boolean | null;
28134
28202
  hasFeeds?: boolean | null;
@@ -28176,7 +28244,7 @@ export type GetViewQuery = {
28176
28244
  observations?: Array<{
28177
28245
  __typename?: 'ObservationCriteria';
28178
28246
  type: ObservableTypes;
28179
- states?: Array<EntityState | null> | null;
28247
+ states?: Array<EntityState> | null;
28180
28248
  observable: {
28181
28249
  __typename?: 'EntityReference';
28182
28250
  id: string;
@@ -28203,7 +28271,7 @@ export type GetViewQuery = {
28203
28271
  observations?: Array<{
28204
28272
  __typename?: 'ObservationCriteria';
28205
28273
  type: ObservableTypes;
28206
- states?: Array<EntityState | null> | null;
28274
+ states?: Array<EntityState> | null;
28207
28275
  observable: {
28208
28276
  __typename?: 'EntityReference';
28209
28277
  id: string;
@@ -28231,7 +28299,7 @@ export type GetViewQuery = {
28231
28299
  observations?: Array<{
28232
28300
  __typename?: 'ObservationCriteria';
28233
28301
  type: ObservableTypes;
28234
- states?: Array<EntityState | null> | null;
28302
+ states?: Array<EntityState> | null;
28235
28303
  observable: {
28236
28304
  __typename?: 'EntityReference';
28237
28305
  id: string;
@@ -28266,8 +28334,8 @@ export type QueryViewsQuery = {
28266
28334
  inLast?: any | null;
28267
28335
  createdInLast?: any | null;
28268
28336
  types?: Array<ContentTypes> | null;
28269
- fileTypes?: Array<FileTypes | null> | null;
28270
- formats?: Array<string | null> | null;
28337
+ fileTypes?: Array<FileTypes> | null;
28338
+ formats?: Array<string> | null;
28271
28339
  fileExtensions?: Array<string> | null;
28272
28340
  hasObservations?: boolean | null;
28273
28341
  hasFeeds?: boolean | null;
@@ -28315,7 +28383,7 @@ export type QueryViewsQuery = {
28315
28383
  observations?: Array<{
28316
28384
  __typename?: 'ObservationCriteria';
28317
28385
  type: ObservableTypes;
28318
- states?: Array<EntityState | null> | null;
28386
+ states?: Array<EntityState> | null;
28319
28387
  observable: {
28320
28388
  __typename?: 'EntityReference';
28321
28389
  id: string;
@@ -28342,7 +28410,7 @@ export type QueryViewsQuery = {
28342
28410
  observations?: Array<{
28343
28411
  __typename?: 'ObservationCriteria';
28344
28412
  type: ObservableTypes;
28345
- states?: Array<EntityState | null> | null;
28413
+ states?: Array<EntityState> | null;
28346
28414
  observable: {
28347
28415
  __typename?: 'EntityReference';
28348
28416
  id: string;
@@ -28370,7 +28438,7 @@ export type QueryViewsQuery = {
28370
28438
  observations?: Array<{
28371
28439
  __typename?: 'ObservationCriteria';
28372
28440
  type: ObservableTypes;
28373
- states?: Array<EntityState | null> | null;
28441
+ states?: Array<EntityState> | null;
28374
28442
  observable: {
28375
28443
  __typename?: 'EntityReference';
28376
28444
  id: string;
@@ -28383,8 +28451,8 @@ export type QueryViewsQuery = {
28383
28451
  inLast?: any | null;
28384
28452
  createdInLast?: any | null;
28385
28453
  types?: Array<ContentTypes> | null;
28386
- fileTypes?: Array<FileTypes | null> | null;
28387
- formats?: Array<string | null> | null;
28454
+ fileTypes?: Array<FileTypes> | null;
28455
+ formats?: Array<string> | null;
28388
28456
  fileExtensions?: Array<string> | null;
28389
28457
  hasObservations?: boolean | null;
28390
28458
  hasFeeds?: boolean | null;
@@ -28432,7 +28500,7 @@ export type QueryViewsQuery = {
28432
28500
  observations?: Array<{
28433
28501
  __typename?: 'ObservationCriteria';
28434
28502
  type: ObservableTypes;
28435
- states?: Array<EntityState | null> | null;
28503
+ states?: Array<EntityState> | null;
28436
28504
  observable: {
28437
28505
  __typename?: 'EntityReference';
28438
28506
  id: string;
@@ -28459,7 +28527,7 @@ export type QueryViewsQuery = {
28459
28527
  observations?: Array<{
28460
28528
  __typename?: 'ObservationCriteria';
28461
28529
  type: ObservableTypes;
28462
- states?: Array<EntityState | null> | null;
28530
+ states?: Array<EntityState> | null;
28463
28531
  observable: {
28464
28532
  __typename?: 'EntityReference';
28465
28533
  id: string;
@@ -28487,7 +28555,7 @@ export type QueryViewsQuery = {
28487
28555
  observations?: Array<{
28488
28556
  __typename?: 'ObservationCriteria';
28489
28557
  type: ObservableTypes;
28490
- states?: Array<EntityState | null> | null;
28558
+ states?: Array<EntityState> | null;
28491
28559
  observable: {
28492
28560
  __typename?: 'EntityReference';
28493
28561
  id: string;
@@ -28514,8 +28582,8 @@ export type UpdateViewMutation = {
28514
28582
  inLast?: any | null;
28515
28583
  createdInLast?: any | null;
28516
28584
  types?: Array<ContentTypes> | null;
28517
- fileTypes?: Array<FileTypes | null> | null;
28518
- formats?: Array<string | null> | null;
28585
+ fileTypes?: Array<FileTypes> | null;
28586
+ formats?: Array<string> | null;
28519
28587
  fileExtensions?: Array<string> | null;
28520
28588
  hasObservations?: boolean | null;
28521
28589
  hasFeeds?: boolean | null;
@@ -28563,7 +28631,7 @@ export type UpdateViewMutation = {
28563
28631
  observations?: Array<{
28564
28632
  __typename?: 'ObservationCriteria';
28565
28633
  type: ObservableTypes;
28566
- states?: Array<EntityState | null> | null;
28634
+ states?: Array<EntityState> | null;
28567
28635
  observable: {
28568
28636
  __typename?: 'EntityReference';
28569
28637
  id: string;
@@ -28590,7 +28658,7 @@ export type UpdateViewMutation = {
28590
28658
  observations?: Array<{
28591
28659
  __typename?: 'ObservationCriteria';
28592
28660
  type: ObservableTypes;
28593
- states?: Array<EntityState | null> | null;
28661
+ states?: Array<EntityState> | null;
28594
28662
  observable: {
28595
28663
  __typename?: 'EntityReference';
28596
28664
  id: string;
@@ -28618,7 +28686,7 @@ export type UpdateViewMutation = {
28618
28686
  observations?: Array<{
28619
28687
  __typename?: 'ObservationCriteria';
28620
28688
  type: ObservableTypes;
28621
- states?: Array<EntityState | null> | null;
28689
+ states?: Array<EntityState> | null;
28622
28690
  observable: {
28623
28691
  __typename?: 'EntityReference';
28624
28692
  id: string;
@@ -28631,8 +28699,8 @@ export type UpdateViewMutation = {
28631
28699
  inLast?: any | null;
28632
28700
  createdInLast?: any | null;
28633
28701
  types?: Array<ContentTypes> | null;
28634
- fileTypes?: Array<FileTypes | null> | null;
28635
- formats?: Array<string | null> | null;
28702
+ fileTypes?: Array<FileTypes> | null;
28703
+ formats?: Array<string> | null;
28636
28704
  fileExtensions?: Array<string> | null;
28637
28705
  hasObservations?: boolean | null;
28638
28706
  hasFeeds?: boolean | null;
@@ -28680,7 +28748,7 @@ export type UpdateViewMutation = {
28680
28748
  observations?: Array<{
28681
28749
  __typename?: 'ObservationCriteria';
28682
28750
  type: ObservableTypes;
28683
- states?: Array<EntityState | null> | null;
28751
+ states?: Array<EntityState> | null;
28684
28752
  observable: {
28685
28753
  __typename?: 'EntityReference';
28686
28754
  id: string;
@@ -28707,7 +28775,7 @@ export type UpdateViewMutation = {
28707
28775
  observations?: Array<{
28708
28776
  __typename?: 'ObservationCriteria';
28709
28777
  type: ObservableTypes;
28710
- states?: Array<EntityState | null> | null;
28778
+ states?: Array<EntityState> | null;
28711
28779
  observable: {
28712
28780
  __typename?: 'EntityReference';
28713
28781
  id: string;
@@ -28735,7 +28803,7 @@ export type UpdateViewMutation = {
28735
28803
  observations?: Array<{
28736
28804
  __typename?: 'ObservationCriteria';
28737
28805
  type: ObservableTypes;
28738
- states?: Array<EntityState | null> | null;
28806
+ states?: Array<EntityState> | null;
28739
28807
  observable: {
28740
28808
  __typename?: 'EntityReference';
28741
28809
  id: string;
@@ -28761,8 +28829,8 @@ export type UpsertViewMutation = {
28761
28829
  inLast?: any | null;
28762
28830
  createdInLast?: any | null;
28763
28831
  types?: Array<ContentTypes> | null;
28764
- fileTypes?: Array<FileTypes | null> | null;
28765
- formats?: Array<string | null> | null;
28832
+ fileTypes?: Array<FileTypes> | null;
28833
+ formats?: Array<string> | null;
28766
28834
  fileExtensions?: Array<string> | null;
28767
28835
  hasObservations?: boolean | null;
28768
28836
  hasFeeds?: boolean | null;
@@ -28810,7 +28878,7 @@ export type UpsertViewMutation = {
28810
28878
  observations?: Array<{
28811
28879
  __typename?: 'ObservationCriteria';
28812
28880
  type: ObservableTypes;
28813
- states?: Array<EntityState | null> | null;
28881
+ states?: Array<EntityState> | null;
28814
28882
  observable: {
28815
28883
  __typename?: 'EntityReference';
28816
28884
  id: string;
@@ -28837,7 +28905,7 @@ export type UpsertViewMutation = {
28837
28905
  observations?: Array<{
28838
28906
  __typename?: 'ObservationCriteria';
28839
28907
  type: ObservableTypes;
28840
- states?: Array<EntityState | null> | null;
28908
+ states?: Array<EntityState> | null;
28841
28909
  observable: {
28842
28910
  __typename?: 'EntityReference';
28843
28911
  id: string;
@@ -28865,7 +28933,7 @@ export type UpsertViewMutation = {
28865
28933
  observations?: Array<{
28866
28934
  __typename?: 'ObservationCriteria';
28867
28935
  type: ObservableTypes;
28868
- states?: Array<EntityState | null> | null;
28936
+ states?: Array<EntityState> | null;
28869
28937
  observable: {
28870
28938
  __typename?: 'EntityReference';
28871
28939
  id: string;
@@ -28878,8 +28946,8 @@ export type UpsertViewMutation = {
28878
28946
  inLast?: any | null;
28879
28947
  createdInLast?: any | null;
28880
28948
  types?: Array<ContentTypes> | null;
28881
- fileTypes?: Array<FileTypes | null> | null;
28882
- formats?: Array<string | null> | null;
28949
+ fileTypes?: Array<FileTypes> | null;
28950
+ formats?: Array<string> | null;
28883
28951
  fileExtensions?: Array<string> | null;
28884
28952
  hasObservations?: boolean | null;
28885
28953
  hasFeeds?: boolean | null;
@@ -28927,7 +28995,7 @@ export type UpsertViewMutation = {
28927
28995
  observations?: Array<{
28928
28996
  __typename?: 'ObservationCriteria';
28929
28997
  type: ObservableTypes;
28930
- states?: Array<EntityState | null> | null;
28998
+ states?: Array<EntityState> | null;
28931
28999
  observable: {
28932
29000
  __typename?: 'EntityReference';
28933
29001
  id: string;
@@ -28954,7 +29022,7 @@ export type UpsertViewMutation = {
28954
29022
  observations?: Array<{
28955
29023
  __typename?: 'ObservationCriteria';
28956
29024
  type: ObservableTypes;
28957
- states?: Array<EntityState | null> | null;
29025
+ states?: Array<EntityState> | null;
28958
29026
  observable: {
28959
29027
  __typename?: 'EntityReference';
28960
29028
  id: string;
@@ -28982,7 +29050,7 @@ export type UpsertViewMutation = {
28982
29050
  observations?: Array<{
28983
29051
  __typename?: 'ObservationCriteria';
28984
29052
  type: ObservableTypes;
28985
- states?: Array<EntityState | null> | null;
29053
+ states?: Array<EntityState> | null;
28986
29054
  observable: {
28987
29055
  __typename?: 'EntityReference';
28988
29056
  id: string;
@@ -29240,7 +29308,7 @@ export type CreateWorkflowMutation = {
29240
29308
  connector?: {
29241
29309
  __typename?: 'EntityEnrichmentConnector';
29242
29310
  type?: EntityEnrichmentServiceTypes | null;
29243
- enrichedTypes?: Array<ObservableTypes | null> | null;
29311
+ enrichedTypes?: Array<ObservableTypes> | null;
29244
29312
  fhir?: {
29245
29313
  __typename?: 'FHIREnrichmentProperties';
29246
29314
  endpoint?: any | null;
@@ -29258,7 +29326,9 @@ export type CreateWorkflowMutation = {
29258
29326
  __typename?: 'StoragePolicy';
29259
29327
  type?: StoragePolicyTypes | null;
29260
29328
  allowDuplicates?: boolean | null;
29261
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
29329
+ embeddingTypes?: Array<EmbeddingTypes> | null;
29330
+ enableSnapshots?: boolean | null;
29331
+ snapshotCount?: number | null;
29262
29332
  } | null;
29263
29333
  } | null;
29264
29334
  actions?: Array<{
@@ -29563,7 +29633,7 @@ export type GetWorkflowQuery = {
29563
29633
  connector?: {
29564
29634
  __typename?: 'EntityEnrichmentConnector';
29565
29635
  type?: EntityEnrichmentServiceTypes | null;
29566
- enrichedTypes?: Array<ObservableTypes | null> | null;
29636
+ enrichedTypes?: Array<ObservableTypes> | null;
29567
29637
  fhir?: {
29568
29638
  __typename?: 'FHIREnrichmentProperties';
29569
29639
  endpoint?: any | null;
@@ -29581,7 +29651,9 @@ export type GetWorkflowQuery = {
29581
29651
  __typename?: 'StoragePolicy';
29582
29652
  type?: StoragePolicyTypes | null;
29583
29653
  allowDuplicates?: boolean | null;
29584
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
29654
+ embeddingTypes?: Array<EmbeddingTypes> | null;
29655
+ enableSnapshots?: boolean | null;
29656
+ snapshotCount?: number | null;
29585
29657
  } | null;
29586
29658
  } | null;
29587
29659
  actions?: Array<{
@@ -29852,7 +29924,7 @@ export type QueryWorkflowsQuery = {
29852
29924
  connector?: {
29853
29925
  __typename?: 'EntityEnrichmentConnector';
29854
29926
  type?: EntityEnrichmentServiceTypes | null;
29855
- enrichedTypes?: Array<ObservableTypes | null> | null;
29927
+ enrichedTypes?: Array<ObservableTypes> | null;
29856
29928
  fhir?: {
29857
29929
  __typename?: 'FHIREnrichmentProperties';
29858
29930
  endpoint?: any | null;
@@ -29870,7 +29942,9 @@ export type QueryWorkflowsQuery = {
29870
29942
  __typename?: 'StoragePolicy';
29871
29943
  type?: StoragePolicyTypes | null;
29872
29944
  allowDuplicates?: boolean | null;
29873
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
29945
+ embeddingTypes?: Array<EmbeddingTypes> | null;
29946
+ enableSnapshots?: boolean | null;
29947
+ snapshotCount?: number | null;
29874
29948
  } | null;
29875
29949
  } | null;
29876
29950
  actions?: Array<{
@@ -30133,7 +30207,7 @@ export type UpdateWorkflowMutation = {
30133
30207
  connector?: {
30134
30208
  __typename?: 'EntityEnrichmentConnector';
30135
30209
  type?: EntityEnrichmentServiceTypes | null;
30136
- enrichedTypes?: Array<ObservableTypes | null> | null;
30210
+ enrichedTypes?: Array<ObservableTypes> | null;
30137
30211
  fhir?: {
30138
30212
  __typename?: 'FHIREnrichmentProperties';
30139
30213
  endpoint?: any | null;
@@ -30151,7 +30225,9 @@ export type UpdateWorkflowMutation = {
30151
30225
  __typename?: 'StoragePolicy';
30152
30226
  type?: StoragePolicyTypes | null;
30153
30227
  allowDuplicates?: boolean | null;
30154
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
30228
+ embeddingTypes?: Array<EmbeddingTypes> | null;
30229
+ enableSnapshots?: boolean | null;
30230
+ snapshotCount?: number | null;
30155
30231
  } | null;
30156
30232
  } | null;
30157
30233
  actions?: Array<{
@@ -30413,7 +30489,7 @@ export type UpsertWorkflowMutation = {
30413
30489
  connector?: {
30414
30490
  __typename?: 'EntityEnrichmentConnector';
30415
30491
  type?: EntityEnrichmentServiceTypes | null;
30416
- enrichedTypes?: Array<ObservableTypes | null> | null;
30492
+ enrichedTypes?: Array<ObservableTypes> | null;
30417
30493
  fhir?: {
30418
30494
  __typename?: 'FHIREnrichmentProperties';
30419
30495
  endpoint?: any | null;
@@ -30431,7 +30507,9 @@ export type UpsertWorkflowMutation = {
30431
30507
  __typename?: 'StoragePolicy';
30432
30508
  type?: StoragePolicyTypes | null;
30433
30509
  allowDuplicates?: boolean | null;
30434
- embeddingTypes?: Array<EmbeddingTypes | null> | null;
30510
+ embeddingTypes?: Array<EmbeddingTypes> | null;
30511
+ enableSnapshots?: boolean | null;
30512
+ snapshotCount?: number | null;
30435
30513
  } | null;
30436
30514
  } | null;
30437
30515
  actions?: Array<{