graphlit-client 1.0.20250114001 → 1.0.20250127001

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.
@@ -2382,10 +2382,15 @@ export type DeepseekModelPropertiesUpdateInput = {
2382
2382
  export declare enum DeepseekModels {
2383
2383
  /** Deepseek Chat */
2384
2384
  Chat = "CHAT",
2385
- /** Deepseek Coder */
2385
+ /**
2386
+ * Deepseek Coder
2387
+ * @deprecated Deepseek Coder has been merged with Deepseek Chat, as of v2.5. Use Deepseek Chat instead.
2388
+ */
2386
2389
  Coder = "CODER",
2387
2390
  /** Developer-specified model */
2388
- Custom = "CUSTOM"
2391
+ Custom = "CUSTOM",
2392
+ /** Deepseek Reasoner */
2393
+ Reasoner = "REASONER"
2389
2394
  }
2390
2395
  /** Capture device type */
2391
2396
  export declare enum DeviceTypes {
@@ -12824,6 +12829,7 @@ export type ZendeskTicketsFeedPropertiesUpdateInput = {
12824
12829
  };
12825
12830
  export type CountAlertsQueryVariables = Exact<{
12826
12831
  filter?: InputMaybe<AlertFilter>;
12832
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12827
12833
  }>;
12828
12834
  export type CountAlertsQuery = {
12829
12835
  __typename?: 'Query';
@@ -12906,6 +12912,7 @@ export type EnableAlertMutation = {
12906
12912
  };
12907
12913
  export type GetAlertQueryVariables = Exact<{
12908
12914
  id: Scalars['ID']['input'];
12915
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12909
12916
  }>;
12910
12917
  export type GetAlertQuery = {
12911
12918
  __typename?: 'Query';
@@ -13058,6 +13065,7 @@ export type GetAlertQuery = {
13058
13065
  };
13059
13066
  export type QueryAlertsQueryVariables = Exact<{
13060
13067
  filter?: InputMaybe<AlertFilter>;
13068
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13061
13069
  }>;
13062
13070
  export type QueryAlertsQuery = {
13063
13071
  __typename?: 'Query';
@@ -13226,6 +13234,7 @@ export type UpdateAlertMutation = {
13226
13234
  };
13227
13235
  export type CountCategoriesQueryVariables = Exact<{
13228
13236
  filter?: InputMaybe<CategoryFilter>;
13237
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13229
13238
  }>;
13230
13239
  export type CountCategoriesQuery = {
13231
13240
  __typename?: 'Query';
@@ -13283,6 +13292,7 @@ export type DeleteCategoryMutation = {
13283
13292
  };
13284
13293
  export type GetCategoryQueryVariables = Exact<{
13285
13294
  id: Scalars['ID']['input'];
13295
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13286
13296
  }>;
13287
13297
  export type GetCategoryQuery = {
13288
13298
  __typename?: 'Query';
@@ -13297,6 +13307,7 @@ export type GetCategoryQuery = {
13297
13307
  };
13298
13308
  export type QueryCategoriesQueryVariables = Exact<{
13299
13309
  filter?: InputMaybe<CategoryFilter>;
13310
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13300
13311
  }>;
13301
13312
  export type QueryCategoriesQuery = {
13302
13313
  __typename?: 'Query';
@@ -13344,6 +13355,7 @@ export type AddContentsToCollectionsMutation = {
13344
13355
  };
13345
13356
  export type CountCollectionsQueryVariables = Exact<{
13346
13357
  filter?: InputMaybe<CollectionFilter>;
13358
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13347
13359
  }>;
13348
13360
  export type CountCollectionsQuery = {
13349
13361
  __typename?: 'Query';
@@ -13403,6 +13415,7 @@ export type DeleteCollectionsMutation = {
13403
13415
  };
13404
13416
  export type GetCollectionQueryVariables = Exact<{
13405
13417
  id: Scalars['ID']['input'];
13418
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13406
13419
  }>;
13407
13420
  export type GetCollectionQuery = {
13408
13421
  __typename?: 'Query';
@@ -13427,6 +13440,7 @@ export type GetCollectionQuery = {
13427
13440
  };
13428
13441
  export type QueryCollectionsQueryVariables = Exact<{
13429
13442
  filter?: InputMaybe<CollectionFilter>;
13443
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13430
13444
  }>;
13431
13445
  export type QueryCollectionsQuery = {
13432
13446
  __typename?: 'Query';
@@ -13486,6 +13500,7 @@ export type UpdateCollectionMutation = {
13486
13500
  };
13487
13501
  export type CountContentsQueryVariables = Exact<{
13488
13502
  filter?: InputMaybe<ContentFilter>;
13503
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13489
13504
  }>;
13490
13505
  export type CountContentsQuery = {
13491
13506
  __typename?: 'Query';
@@ -13868,6 +13883,7 @@ export type ExtractTextMutation = {
13868
13883
  };
13869
13884
  export type GetContentQueryVariables = Exact<{
13870
13885
  id: Scalars['ID']['input'];
13886
+ correlationId?: InputMaybe<Scalars['String']['input']>;
13871
13887
  }>;
13872
13888
  export type GetContentQuery = {
13873
13889
  __typename?: 'Query';
@@ -14713,6 +14729,7 @@ export type PublishTextMutation = {
14713
14729
  };
14714
14730
  export type QueryContentsQueryVariables = Exact<{
14715
14731
  filter?: InputMaybe<ContentFilter>;
14732
+ correlationId?: InputMaybe<Scalars['String']['input']>;
14716
14733
  }>;
14717
14734
  export type QueryContentsQuery = {
14718
14735
  __typename?: 'Query';
@@ -14998,6 +15015,7 @@ export type QueryContentsQuery = {
14998
15015
  export type QueryContentsFacetsQueryVariables = Exact<{
14999
15016
  filter?: InputMaybe<ContentFilter>;
15000
15017
  facets?: InputMaybe<Array<ContentFacetInput> | ContentFacetInput>;
15018
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15001
15019
  }>;
15002
15020
  export type QueryContentsFacetsQuery = {
15003
15021
  __typename?: 'Query';
@@ -15304,6 +15322,7 @@ export type QueryContentsFacetsQuery = {
15304
15322
  export type QueryContentsGraphQueryVariables = Exact<{
15305
15323
  filter?: InputMaybe<ContentFilter>;
15306
15324
  graph?: InputMaybe<ContentGraphInput>;
15325
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15307
15326
  }>;
15308
15327
  export type QueryContentsGraphQuery = {
15309
15328
  __typename?: 'Query';
@@ -16348,6 +16367,7 @@ export type ContinueConversationMutation = {
16348
16367
  };
16349
16368
  export type CountConversationsQueryVariables = Exact<{
16350
16369
  filter?: InputMaybe<ConversationFilter>;
16370
+ correlationId?: InputMaybe<Scalars['String']['input']>;
16351
16371
  }>;
16352
16372
  export type CountConversationsQuery = {
16353
16373
  __typename?: 'Query';
@@ -16748,6 +16768,7 @@ export type FormatConversationMutation = {
16748
16768
  };
16749
16769
  export type GetConversationQueryVariables = Exact<{
16750
16770
  id: Scalars['ID']['input'];
16771
+ correlationId?: InputMaybe<Scalars['String']['input']>;
16751
16772
  }>;
16752
16773
  export type GetConversationQuery = {
16753
16774
  __typename?: 'Query';
@@ -17719,6 +17740,7 @@ export type PublishConversationMutation = {
17719
17740
  };
17720
17741
  export type QueryConversationsQueryVariables = Exact<{
17721
17742
  filter?: InputMaybe<ConversationFilter>;
17743
+ correlationId?: InputMaybe<Scalars['String']['input']>;
17722
17744
  }>;
17723
17745
  export type QueryConversationsQuery = {
17724
17746
  __typename?: 'Query';
@@ -18710,6 +18732,7 @@ export type UpdateConversationMutation = {
18710
18732
  };
18711
18733
  export type CountEventsQueryVariables = Exact<{
18712
18734
  filter?: InputMaybe<EventFilter>;
18735
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18713
18736
  }>;
18714
18737
  export type CountEventsQuery = {
18715
18738
  __typename?: 'Query';
@@ -18767,6 +18790,7 @@ export type DeleteEventsMutation = {
18767
18790
  };
18768
18791
  export type GetEventQueryVariables = Exact<{
18769
18792
  id: Scalars['ID']['input'];
18793
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18770
18794
  }>;
18771
18795
  export type GetEventQuery = {
18772
18796
  __typename?: 'Query';
@@ -18803,6 +18827,7 @@ export type GetEventQuery = {
18803
18827
  };
18804
18828
  export type QueryEventsQueryVariables = Exact<{
18805
18829
  filter?: InputMaybe<EventFilter>;
18830
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18806
18831
  }>;
18807
18832
  export type QueryEventsQuery = {
18808
18833
  __typename?: 'Query';
@@ -18853,6 +18878,7 @@ export type UpdateEventMutation = {
18853
18878
  };
18854
18879
  export type CountFeedsQueryVariables = Exact<{
18855
18880
  filter?: InputMaybe<FeedFilter>;
18881
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18856
18882
  }>;
18857
18883
  export type CountFeedsQuery = {
18858
18884
  __typename?: 'Query';
@@ -18935,6 +18961,7 @@ export type EnableFeedMutation = {
18935
18961
  };
18936
18962
  export type GetFeedQueryVariables = Exact<{
18937
18963
  id: Scalars['ID']['input'];
18964
+ correlationId?: InputMaybe<Scalars['String']['input']>;
18938
18965
  }>;
18939
18966
  export type GetFeedQuery = {
18940
18967
  __typename?: 'Query';
@@ -19216,6 +19243,7 @@ export type IsFeedDoneQuery = {
19216
19243
  };
19217
19244
  export type QueryFeedsQueryVariables = Exact<{
19218
19245
  filter?: InputMaybe<FeedFilter>;
19246
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19219
19247
  }>;
19220
19248
  export type QueryFeedsQuery = {
19221
19249
  __typename?: 'Query';
@@ -19571,6 +19599,7 @@ export type UpdateFeedMutation = {
19571
19599
  };
19572
19600
  export type CountLabelsQueryVariables = Exact<{
19573
19601
  filter?: InputMaybe<LabelFilter>;
19602
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19574
19603
  }>;
19575
19604
  export type CountLabelsQuery = {
19576
19605
  __typename?: 'Query';
@@ -19628,6 +19657,7 @@ export type DeleteLabelsMutation = {
19628
19657
  };
19629
19658
  export type GetLabelQueryVariables = Exact<{
19630
19659
  id: Scalars['ID']['input'];
19660
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19631
19661
  }>;
19632
19662
  export type GetLabelQuery = {
19633
19663
  __typename?: 'Query';
@@ -19642,6 +19672,7 @@ export type GetLabelQuery = {
19642
19672
  };
19643
19673
  export type QueryLabelsQueryVariables = Exact<{
19644
19674
  filter?: InputMaybe<LabelFilter>;
19675
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19645
19676
  }>;
19646
19677
  export type QueryLabelsQuery = {
19647
19678
  __typename?: 'Query';
@@ -19670,6 +19701,7 @@ export type UpdateLabelMutation = {
19670
19701
  };
19671
19702
  export type CountMedicalConditionsQueryVariables = Exact<{
19672
19703
  filter?: InputMaybe<MedicalConditionFilter>;
19704
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19673
19705
  }>;
19674
19706
  export type CountMedicalConditionsQuery = {
19675
19707
  __typename?: 'Query';
@@ -19727,6 +19759,7 @@ export type DeleteMedicalConditionsMutation = {
19727
19759
  };
19728
19760
  export type GetMedicalConditionQueryVariables = Exact<{
19729
19761
  id: Scalars['ID']['input'];
19762
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19730
19763
  }>;
19731
19764
  export type GetMedicalConditionQuery = {
19732
19765
  __typename?: 'Query';
@@ -19745,6 +19778,7 @@ export type GetMedicalConditionQuery = {
19745
19778
  };
19746
19779
  export type QueryMedicalConditionsQueryVariables = Exact<{
19747
19780
  filter?: InputMaybe<MedicalConditionFilter>;
19781
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19748
19782
  }>;
19749
19783
  export type QueryMedicalConditionsQuery = {
19750
19784
  __typename?: 'Query';
@@ -19777,6 +19811,7 @@ export type UpdateMedicalConditionMutation = {
19777
19811
  };
19778
19812
  export type CountMedicalContraindicationsQueryVariables = Exact<{
19779
19813
  filter?: InputMaybe<MedicalContraindicationFilter>;
19814
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19780
19815
  }>;
19781
19816
  export type CountMedicalContraindicationsQuery = {
19782
19817
  __typename?: 'Query';
@@ -19834,6 +19869,7 @@ export type DeleteMedicalContraindicationsMutation = {
19834
19869
  };
19835
19870
  export type GetMedicalContraindicationQueryVariables = Exact<{
19836
19871
  id: Scalars['ID']['input'];
19872
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19837
19873
  }>;
19838
19874
  export type GetMedicalContraindicationQuery = {
19839
19875
  __typename?: 'Query';
@@ -19852,6 +19888,7 @@ export type GetMedicalContraindicationQuery = {
19852
19888
  };
19853
19889
  export type QueryMedicalContraindicationsQueryVariables = Exact<{
19854
19890
  filter?: InputMaybe<MedicalContraindicationFilter>;
19891
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19855
19892
  }>;
19856
19893
  export type QueryMedicalContraindicationsQuery = {
19857
19894
  __typename?: 'Query';
@@ -19884,6 +19921,7 @@ export type UpdateMedicalContraindicationMutation = {
19884
19921
  };
19885
19922
  export type CountMedicalDevicesQueryVariables = Exact<{
19886
19923
  filter?: InputMaybe<MedicalDeviceFilter>;
19924
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19887
19925
  }>;
19888
19926
  export type CountMedicalDevicesQuery = {
19889
19927
  __typename?: 'Query';
@@ -19941,6 +19979,7 @@ export type DeleteMedicalDevicesMutation = {
19941
19979
  };
19942
19980
  export type GetMedicalDeviceQueryVariables = Exact<{
19943
19981
  id: Scalars['ID']['input'];
19982
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19944
19983
  }>;
19945
19984
  export type GetMedicalDeviceQuery = {
19946
19985
  __typename?: 'Query';
@@ -19959,6 +19998,7 @@ export type GetMedicalDeviceQuery = {
19959
19998
  };
19960
19999
  export type QueryMedicalDevicesQueryVariables = Exact<{
19961
20000
  filter?: InputMaybe<MedicalDeviceFilter>;
20001
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19962
20002
  }>;
19963
20003
  export type QueryMedicalDevicesQuery = {
19964
20004
  __typename?: 'Query';
@@ -19991,6 +20031,7 @@ export type UpdateMedicalDeviceMutation = {
19991
20031
  };
19992
20032
  export type CountMedicalDrugsQueryVariables = Exact<{
19993
20033
  filter?: InputMaybe<MedicalDrugFilter>;
20034
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19994
20035
  }>;
19995
20036
  export type CountMedicalDrugsQuery = {
19996
20037
  __typename?: 'Query';
@@ -20048,6 +20089,7 @@ export type DeleteMedicalDrugsMutation = {
20048
20089
  };
20049
20090
  export type GetMedicalDrugQueryVariables = Exact<{
20050
20091
  id: Scalars['ID']['input'];
20092
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20051
20093
  }>;
20052
20094
  export type GetMedicalDrugQuery = {
20053
20095
  __typename?: 'Query';
@@ -20066,6 +20108,7 @@ export type GetMedicalDrugQuery = {
20066
20108
  };
20067
20109
  export type QueryMedicalDrugsQueryVariables = Exact<{
20068
20110
  filter?: InputMaybe<MedicalDrugFilter>;
20111
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20069
20112
  }>;
20070
20113
  export type QueryMedicalDrugsQuery = {
20071
20114
  __typename?: 'Query';
@@ -20098,6 +20141,7 @@ export type UpdateMedicalDrugMutation = {
20098
20141
  };
20099
20142
  export type CountMedicalDrugClassesQueryVariables = Exact<{
20100
20143
  filter?: InputMaybe<MedicalDrugClassFilter>;
20144
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20101
20145
  }>;
20102
20146
  export type CountMedicalDrugClassesQuery = {
20103
20147
  __typename?: 'Query';
@@ -20155,6 +20199,7 @@ export type DeleteMedicalDrugClassesMutation = {
20155
20199
  };
20156
20200
  export type GetMedicalDrugClassQueryVariables = Exact<{
20157
20201
  id: Scalars['ID']['input'];
20202
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20158
20203
  }>;
20159
20204
  export type GetMedicalDrugClassQuery = {
20160
20205
  __typename?: 'Query';
@@ -20173,6 +20218,7 @@ export type GetMedicalDrugClassQuery = {
20173
20218
  };
20174
20219
  export type QueryMedicalDrugClassesQueryVariables = Exact<{
20175
20220
  filter?: InputMaybe<MedicalDrugClassFilter>;
20221
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20176
20222
  }>;
20177
20223
  export type QueryMedicalDrugClassesQuery = {
20178
20224
  __typename?: 'Query';
@@ -20205,6 +20251,7 @@ export type UpdateMedicalDrugClassMutation = {
20205
20251
  };
20206
20252
  export type CountMedicalGuidelinesQueryVariables = Exact<{
20207
20253
  filter?: InputMaybe<MedicalGuidelineFilter>;
20254
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20208
20255
  }>;
20209
20256
  export type CountMedicalGuidelinesQuery = {
20210
20257
  __typename?: 'Query';
@@ -20262,6 +20309,7 @@ export type DeleteMedicalGuidelinesMutation = {
20262
20309
  };
20263
20310
  export type GetMedicalGuidelineQueryVariables = Exact<{
20264
20311
  id: Scalars['ID']['input'];
20312
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20265
20313
  }>;
20266
20314
  export type GetMedicalGuidelineQuery = {
20267
20315
  __typename?: 'Query';
@@ -20280,6 +20328,7 @@ export type GetMedicalGuidelineQuery = {
20280
20328
  };
20281
20329
  export type QueryMedicalGuidelinesQueryVariables = Exact<{
20282
20330
  filter?: InputMaybe<MedicalGuidelineFilter>;
20331
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20283
20332
  }>;
20284
20333
  export type QueryMedicalGuidelinesQuery = {
20285
20334
  __typename?: 'Query';
@@ -20312,6 +20361,7 @@ export type UpdateMedicalGuidelineMutation = {
20312
20361
  };
20313
20362
  export type CountMedicalIndicationsQueryVariables = Exact<{
20314
20363
  filter?: InputMaybe<MedicalIndicationFilter>;
20364
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20315
20365
  }>;
20316
20366
  export type CountMedicalIndicationsQuery = {
20317
20367
  __typename?: 'Query';
@@ -20369,6 +20419,7 @@ export type DeleteMedicalIndicationsMutation = {
20369
20419
  };
20370
20420
  export type GetMedicalIndicationQueryVariables = Exact<{
20371
20421
  id: Scalars['ID']['input'];
20422
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20372
20423
  }>;
20373
20424
  export type GetMedicalIndicationQuery = {
20374
20425
  __typename?: 'Query';
@@ -20387,6 +20438,7 @@ export type GetMedicalIndicationQuery = {
20387
20438
  };
20388
20439
  export type QueryMedicalIndicationsQueryVariables = Exact<{
20389
20440
  filter?: InputMaybe<MedicalIndicationFilter>;
20441
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20390
20442
  }>;
20391
20443
  export type QueryMedicalIndicationsQuery = {
20392
20444
  __typename?: 'Query';
@@ -20419,6 +20471,7 @@ export type UpdateMedicalIndicationMutation = {
20419
20471
  };
20420
20472
  export type CountMedicalProceduresQueryVariables = Exact<{
20421
20473
  filter?: InputMaybe<MedicalProcedureFilter>;
20474
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20422
20475
  }>;
20423
20476
  export type CountMedicalProceduresQuery = {
20424
20477
  __typename?: 'Query';
@@ -20476,6 +20529,7 @@ export type DeleteMedicalProceduresMutation = {
20476
20529
  };
20477
20530
  export type GetMedicalProcedureQueryVariables = Exact<{
20478
20531
  id: Scalars['ID']['input'];
20532
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20479
20533
  }>;
20480
20534
  export type GetMedicalProcedureQuery = {
20481
20535
  __typename?: 'Query';
@@ -20494,6 +20548,7 @@ export type GetMedicalProcedureQuery = {
20494
20548
  };
20495
20549
  export type QueryMedicalProceduresQueryVariables = Exact<{
20496
20550
  filter?: InputMaybe<MedicalProcedureFilter>;
20551
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20497
20552
  }>;
20498
20553
  export type QueryMedicalProceduresQuery = {
20499
20554
  __typename?: 'Query';
@@ -20583,6 +20638,7 @@ export type DeleteMedicalStudyMutation = {
20583
20638
  };
20584
20639
  export type GetMedicalStudyQueryVariables = Exact<{
20585
20640
  id: Scalars['ID']['input'];
20641
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20586
20642
  }>;
20587
20643
  export type GetMedicalStudyQuery = {
20588
20644
  __typename?: 'Query';
@@ -20609,6 +20665,7 @@ export type GetMedicalStudyQuery = {
20609
20665
  };
20610
20666
  export type QueryMedicalStudiesQueryVariables = Exact<{
20611
20667
  filter?: InputMaybe<MedicalStudyFilter>;
20668
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20612
20669
  }>;
20613
20670
  export type QueryMedicalStudiesQuery = {
20614
20671
  __typename?: 'Query';
@@ -20649,6 +20706,7 @@ export type UpdateMedicalStudyMutation = {
20649
20706
  };
20650
20707
  export type CountMedicalTestsQueryVariables = Exact<{
20651
20708
  filter?: InputMaybe<MedicalTestFilter>;
20709
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20652
20710
  }>;
20653
20711
  export type CountMedicalTestsQuery = {
20654
20712
  __typename?: 'Query';
@@ -20706,6 +20764,7 @@ export type DeleteMedicalTestsMutation = {
20706
20764
  };
20707
20765
  export type GetMedicalTestQueryVariables = Exact<{
20708
20766
  id: Scalars['ID']['input'];
20767
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20709
20768
  }>;
20710
20769
  export type GetMedicalTestQuery = {
20711
20770
  __typename?: 'Query';
@@ -20724,6 +20783,7 @@ export type GetMedicalTestQuery = {
20724
20783
  };
20725
20784
  export type QueryMedicalTestsQueryVariables = Exact<{
20726
20785
  filter?: InputMaybe<MedicalTestFilter>;
20786
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20727
20787
  }>;
20728
20788
  export type QueryMedicalTestsQuery = {
20729
20789
  __typename?: 'Query';
@@ -20756,6 +20816,7 @@ export type UpdateMedicalTestMutation = {
20756
20816
  };
20757
20817
  export type CountMedicalTherapiesQueryVariables = Exact<{
20758
20818
  filter?: InputMaybe<MedicalTherapyFilter>;
20819
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20759
20820
  }>;
20760
20821
  export type CountMedicalTherapiesQuery = {
20761
20822
  __typename?: 'Query';
@@ -20813,6 +20874,7 @@ export type DeleteMedicalTherapyMutation = {
20813
20874
  };
20814
20875
  export type GetMedicalTherapyQueryVariables = Exact<{
20815
20876
  id: Scalars['ID']['input'];
20877
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20816
20878
  }>;
20817
20879
  export type GetMedicalTherapyQuery = {
20818
20880
  __typename?: 'Query';
@@ -20831,6 +20893,7 @@ export type GetMedicalTherapyQuery = {
20831
20893
  };
20832
20894
  export type QueryMedicalTherapiesQueryVariables = Exact<{
20833
20895
  filter?: InputMaybe<MedicalTherapyFilter>;
20896
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20834
20897
  }>;
20835
20898
  export type QueryMedicalTherapiesQuery = {
20836
20899
  __typename?: 'Query';
@@ -20896,6 +20959,7 @@ export type UpdateObservationMutation = {
20896
20959
  };
20897
20960
  export type CountOrganizationsQueryVariables = Exact<{
20898
20961
  filter?: InputMaybe<OrganizationFilter>;
20962
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20899
20963
  }>;
20900
20964
  export type CountOrganizationsQuery = {
20901
20965
  __typename?: 'Query';
@@ -20953,6 +21017,7 @@ export type DeleteOrganizationsMutation = {
20953
21017
  };
20954
21018
  export type GetOrganizationQueryVariables = Exact<{
20955
21019
  id: Scalars['ID']['input'];
21020
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20956
21021
  }>;
20957
21022
  export type GetOrganizationQuery = {
20958
21023
  __typename?: 'Query';
@@ -20985,6 +21050,7 @@ export type GetOrganizationQuery = {
20985
21050
  };
20986
21051
  export type QueryOrganizationsQueryVariables = Exact<{
20987
21052
  filter?: InputMaybe<OrganizationFilter>;
21053
+ correlationId?: InputMaybe<Scalars['String']['input']>;
20988
21054
  }>;
20989
21055
  export type QueryOrganizationsQuery = {
20990
21056
  __typename?: 'Query';
@@ -21031,6 +21097,7 @@ export type UpdateOrganizationMutation = {
21031
21097
  };
21032
21098
  export type CountPersonsQueryVariables = Exact<{
21033
21099
  filter?: InputMaybe<PersonFilter>;
21100
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21034
21101
  }>;
21035
21102
  export type CountPersonsQuery = {
21036
21103
  __typename?: 'Query';
@@ -21088,6 +21155,7 @@ export type DeletePersonsMutation = {
21088
21155
  };
21089
21156
  export type GetPersonQueryVariables = Exact<{
21090
21157
  id: Scalars['ID']['input'];
21158
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21091
21159
  }>;
21092
21160
  export type GetPersonQuery = {
21093
21161
  __typename?: 'Query';
@@ -21122,6 +21190,7 @@ export type GetPersonQuery = {
21122
21190
  };
21123
21191
  export type QueryPersonsQueryVariables = Exact<{
21124
21192
  filter?: InputMaybe<PersonFilter>;
21193
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21125
21194
  }>;
21126
21195
  export type QueryPersonsQuery = {
21127
21196
  __typename?: 'Query';
@@ -21170,6 +21239,7 @@ export type UpdatePersonMutation = {
21170
21239
  };
21171
21240
  export type CountPlacesQueryVariables = Exact<{
21172
21241
  filter?: InputMaybe<PlaceFilter>;
21242
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21173
21243
  }>;
21174
21244
  export type CountPlacesQuery = {
21175
21245
  __typename?: 'Query';
@@ -21227,6 +21297,7 @@ export type DeletePlacesMutation = {
21227
21297
  };
21228
21298
  export type GetPlaceQueryVariables = Exact<{
21229
21299
  id: Scalars['ID']['input'];
21300
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21230
21301
  }>;
21231
21302
  export type GetPlaceQuery = {
21232
21303
  __typename?: 'Query';
@@ -21253,6 +21324,7 @@ export type GetPlaceQuery = {
21253
21324
  };
21254
21325
  export type QueryPlacesQueryVariables = Exact<{
21255
21326
  filter?: InputMaybe<PlaceFilter>;
21327
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21256
21328
  }>;
21257
21329
  export type QueryPlacesQuery = {
21258
21330
  __typename?: 'Query';
@@ -21293,6 +21365,7 @@ export type UpdatePlaceMutation = {
21293
21365
  };
21294
21366
  export type CountProductsQueryVariables = Exact<{
21295
21367
  filter?: InputMaybe<ProductFilter>;
21368
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21296
21369
  }>;
21297
21370
  export type CountProductsQuery = {
21298
21371
  __typename?: 'Query';
@@ -21350,6 +21423,7 @@ export type DeleteProductsMutation = {
21350
21423
  };
21351
21424
  export type GetProductQueryVariables = Exact<{
21352
21425
  id: Scalars['ID']['input'];
21426
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21353
21427
  }>;
21354
21428
  export type GetProductQuery = {
21355
21429
  __typename?: 'Query';
@@ -21383,6 +21457,7 @@ export type GetProductQuery = {
21383
21457
  };
21384
21458
  export type QueryProductsQueryVariables = Exact<{
21385
21459
  filter?: InputMaybe<ProductFilter>;
21460
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21386
21461
  }>;
21387
21462
  export type QueryProductsQuery = {
21388
21463
  __typename?: 'Query';
@@ -21622,6 +21697,7 @@ export type UpdateProjectMutation = {
21622
21697
  };
21623
21698
  export type CountReposQueryVariables = Exact<{
21624
21699
  filter?: InputMaybe<RepoFilter>;
21700
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21625
21701
  }>;
21626
21702
  export type CountReposQuery = {
21627
21703
  __typename?: 'Query';
@@ -21679,6 +21755,7 @@ export type DeleteReposMutation = {
21679
21755
  };
21680
21756
  export type GetRepoQueryVariables = Exact<{
21681
21757
  id: Scalars['ID']['input'];
21758
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21682
21759
  }>;
21683
21760
  export type GetRepoQuery = {
21684
21761
  __typename?: 'Query';
@@ -21697,6 +21774,7 @@ export type GetRepoQuery = {
21697
21774
  };
21698
21775
  export type QueryReposQueryVariables = Exact<{
21699
21776
  filter?: InputMaybe<RepoFilter>;
21777
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21700
21778
  }>;
21701
21779
  export type QueryReposQuery = {
21702
21780
  __typename?: 'Query';
@@ -21761,6 +21839,7 @@ export type SearchWebQuery = {
21761
21839
  };
21762
21840
  export type CountSoftwaresQueryVariables = Exact<{
21763
21841
  filter?: InputMaybe<SoftwareFilter>;
21842
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21764
21843
  }>;
21765
21844
  export type CountSoftwaresQuery = {
21766
21845
  __typename?: 'Query';
@@ -21818,6 +21897,7 @@ export type DeleteSoftwaresMutation = {
21818
21897
  };
21819
21898
  export type GetSoftwareQueryVariables = Exact<{
21820
21899
  id: Scalars['ID']['input'];
21900
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21821
21901
  }>;
21822
21902
  export type GetSoftwareQuery = {
21823
21903
  __typename?: 'Query';
@@ -21838,6 +21918,7 @@ export type GetSoftwareQuery = {
21838
21918
  };
21839
21919
  export type QuerySoftwaresQueryVariables = Exact<{
21840
21920
  filter?: InputMaybe<SoftwareFilter>;
21921
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21841
21922
  }>;
21842
21923
  export type QuerySoftwaresQuery = {
21843
21924
  __typename?: 'Query';
@@ -21872,6 +21953,7 @@ export type UpdateSoftwareMutation = {
21872
21953
  };
21873
21954
  export type CountSpecificationsQueryVariables = Exact<{
21874
21955
  filter?: InputMaybe<SpecificationFilter>;
21956
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21875
21957
  }>;
21876
21958
  export type CountSpecificationsQuery = {
21877
21959
  __typename?: 'Query';
@@ -21932,6 +22014,7 @@ export type DeleteSpecificationsMutation = {
21932
22014
  };
21933
22015
  export type GetSpecificationQueryVariables = Exact<{
21934
22016
  id: Scalars['ID']['input'];
22017
+ correlationId?: InputMaybe<Scalars['String']['input']>;
21935
22018
  }>;
21936
22019
  export type GetSpecificationQuery = {
21937
22020
  __typename?: 'Query';
@@ -22312,6 +22395,7 @@ export type QueryModelsQuery = {
22312
22395
  };
22313
22396
  export type QuerySpecificationsQueryVariables = Exact<{
22314
22397
  filter?: InputMaybe<SpecificationFilter>;
22398
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22315
22399
  }>;
22316
22400
  export type QuerySpecificationsQuery = {
22317
22401
  __typename?: 'Query';
@@ -22525,6 +22609,7 @@ export type UpdateSpecificationMutation = {
22525
22609
  };
22526
22610
  export type CountUsersQueryVariables = Exact<{
22527
22611
  filter?: InputMaybe<UserFilter>;
22612
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22528
22613
  }>;
22529
22614
  export type CountUsersQuery = {
22530
22615
  __typename?: 'Query';
@@ -22634,6 +22719,7 @@ export type GetUserQuery = {
22634
22719
  };
22635
22720
  export type QueryUsersQueryVariables = Exact<{
22636
22721
  filter?: InputMaybe<UserFilter>;
22722
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22637
22723
  }>;
22638
22724
  export type QueryUsersQuery = {
22639
22725
  __typename?: 'Query';
@@ -22703,6 +22789,7 @@ export type UpdateUserMutation = {
22703
22789
  };
22704
22790
  export type CountWorkflowsQueryVariables = Exact<{
22705
22791
  filter?: InputMaybe<WorkflowFilter>;
22792
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22706
22793
  }>;
22707
22794
  export type CountWorkflowsQuery = {
22708
22795
  __typename?: 'Query';
@@ -22942,6 +23029,7 @@ export type DeleteWorkflowsMutation = {
22942
23029
  };
22943
23030
  export type GetWorkflowQueryVariables = Exact<{
22944
23031
  id: Scalars['ID']['input'];
23032
+ correlationId?: InputMaybe<Scalars['String']['input']>;
22945
23033
  }>;
22946
23034
  export type GetWorkflowQuery = {
22947
23035
  __typename?: 'Query';
@@ -23141,6 +23229,7 @@ export type GetWorkflowQuery = {
23141
23229
  };
23142
23230
  export type QueryWorkflowsQueryVariables = Exact<{
23143
23231
  filter?: InputMaybe<WorkflowFilter>;
23232
+ correlationId?: InputMaybe<Scalars['String']['input']>;
23144
23233
  }>;
23145
23234
  export type QueryWorkflowsQuery = {
23146
23235
  __typename?: 'Query';
@@ -384,10 +384,15 @@ var DeepseekModels;
384
384
  (function (DeepseekModels) {
385
385
  /** Deepseek Chat */
386
386
  DeepseekModels["Chat"] = "CHAT";
387
- /** Deepseek Coder */
387
+ /**
388
+ * Deepseek Coder
389
+ * @deprecated Deepseek Coder has been merged with Deepseek Chat, as of v2.5. Use Deepseek Chat instead.
390
+ */
388
391
  DeepseekModels["Coder"] = "CODER";
389
392
  /** Developer-specified model */
390
393
  DeepseekModels["Custom"] = "CUSTOM";
394
+ /** Deepseek Reasoner */
395
+ DeepseekModels["Reasoner"] = "REASONER";
391
396
  })(DeepseekModels || (exports.DeepseekModels = DeepseekModels = {}));
392
397
  /** Capture device type */
393
398
  var DeviceTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250114001",
3
+ "version": "1.0.20250127001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",