graphlit-client 1.0.20251201001 → 1.0.20251204001

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.
@@ -168,6 +168,8 @@ export const GetAlert = gql `
168
168
  hasFeeds
169
169
  hasCollections
170
170
  hasWorkflows
171
+ collectionMode
172
+ observationMode
171
173
  }
172
174
  integration {
173
175
  type
@@ -350,6 +352,8 @@ export const QueryAlerts = gql `
350
352
  hasFeeds
351
353
  hasCollections
352
354
  hasWorkflows
355
+ collectionMode
356
+ observationMode
353
357
  }
354
358
  integration {
355
359
  type
@@ -5277,6 +5281,8 @@ export const GetConversation = gql `
5277
5281
  hasFeeds
5278
5282
  hasCollections
5279
5283
  hasWorkflows
5284
+ collectionMode
5285
+ observationMode
5280
5286
  }
5281
5287
  augmentedFilter {
5282
5288
  dateRange {
@@ -5368,6 +5374,8 @@ export const GetConversation = gql `
5368
5374
  hasFeeds
5369
5375
  hasCollections
5370
5376
  hasWorkflows
5377
+ collectionMode
5378
+ observationMode
5371
5379
  }
5372
5380
  }
5373
5381
  }
@@ -6232,6 +6240,8 @@ export const QueryConversations = gql `
6232
6240
  hasFeeds
6233
6241
  hasCollections
6234
6242
  hasWorkflows
6243
+ collectionMode
6244
+ observationMode
6235
6245
  }
6236
6246
  augmentedFilter {
6237
6247
  dateRange {
@@ -6323,6 +6333,8 @@ export const QueryConversations = gql `
6323
6333
  hasFeeds
6324
6334
  hasCollections
6325
6335
  hasWorkflows
6336
+ collectionMode
6337
+ observationMode
6326
6338
  }
6327
6339
  }
6328
6340
  }
@@ -7386,6 +7398,7 @@ export const GetFeed = gql `
7386
7398
  accountName
7387
7399
  containerName
7388
7400
  prefix
7401
+ listType
7389
7402
  }
7390
7403
  azureFile {
7391
7404
  storageAccessKey
@@ -7803,6 +7816,7 @@ export const QueryFeeds = gql `
7803
7816
  accountName
7804
7817
  containerName
7805
7818
  prefix
7819
+ listType
7806
7820
  }
7807
7821
  azureFile {
7808
7822
  storageAccessKey
@@ -14995,6 +15009,8 @@ export const CreateView = gql `
14995
15009
  hasFeeds
14996
15010
  hasCollections
14997
15011
  hasWorkflows
15012
+ collectionMode
15013
+ observationMode
14998
15014
  }
14999
15015
  augmentedFilter {
15000
15016
  dateRange {
@@ -15086,6 +15102,8 @@ export const CreateView = gql `
15086
15102
  hasFeeds
15087
15103
  hasCollections
15088
15104
  hasWorkflows
15105
+ collectionMode
15106
+ observationMode
15089
15107
  }
15090
15108
  }
15091
15109
  }
@@ -15220,6 +15238,8 @@ export const GetView = gql `
15220
15238
  hasFeeds
15221
15239
  hasCollections
15222
15240
  hasWorkflows
15241
+ collectionMode
15242
+ observationMode
15223
15243
  }
15224
15244
  augmentedFilter {
15225
15245
  dateRange {
@@ -15311,6 +15331,8 @@ export const GetView = gql `
15311
15331
  hasFeeds
15312
15332
  hasCollections
15313
15333
  hasWorkflows
15334
+ collectionMode
15335
+ observationMode
15314
15336
  }
15315
15337
  }
15316
15338
  }
@@ -15419,6 +15441,8 @@ export const QueryViews = gql `
15419
15441
  hasFeeds
15420
15442
  hasCollections
15421
15443
  hasWorkflows
15444
+ collectionMode
15445
+ observationMode
15422
15446
  }
15423
15447
  augmentedFilter {
15424
15448
  dateRange {
@@ -15510,6 +15534,8 @@ export const QueryViews = gql `
15510
15534
  hasFeeds
15511
15535
  hasCollections
15512
15536
  hasWorkflows
15537
+ collectionMode
15538
+ observationMode
15513
15539
  }
15514
15540
  }
15515
15541
  }
@@ -15612,6 +15638,8 @@ export const UpdateView = gql `
15612
15638
  hasFeeds
15613
15639
  hasCollections
15614
15640
  hasWorkflows
15641
+ collectionMode
15642
+ observationMode
15615
15643
  }
15616
15644
  augmentedFilter {
15617
15645
  dateRange {
@@ -15703,6 +15731,8 @@ export const UpdateView = gql `
15703
15731
  hasFeeds
15704
15732
  hasCollections
15705
15733
  hasWorkflows
15734
+ collectionMode
15735
+ observationMode
15706
15736
  }
15707
15737
  }
15708
15738
  }
@@ -15804,6 +15834,8 @@ export const UpsertView = gql `
15804
15834
  hasFeeds
15805
15835
  hasCollections
15806
15836
  hasWorkflows
15837
+ collectionMode
15838
+ observationMode
15807
15839
  }
15808
15840
  augmentedFilter {
15809
15841
  dateRange {
@@ -15895,6 +15927,8 @@ export const UpsertView = gql `
15895
15927
  hasFeeds
15896
15928
  hasCollections
15897
15929
  hasWorkflows
15930
+ collectionMode
15931
+ observationMode
15898
15932
  }
15899
15933
  }
15900
15934
  }
@@ -800,6 +800,8 @@ export type AzureBlobFeedProperties = {
800
800
  accountName?: Maybe<Scalars['String']['output']>;
801
801
  /** Azure storage container name. */
802
802
  containerName?: Maybe<Scalars['String']['output']>;
803
+ /** Listing type: PAST for full listing, NEW for change feed. */
804
+ listType?: Maybe<BlobListingTypes>;
803
805
  /** Azure storage container prefix. */
804
806
  prefix?: Maybe<Scalars['String']['output']>;
805
807
  /** Azure storage access key. */
@@ -811,6 +813,8 @@ export type AzureBlobFeedPropertiesInput = {
811
813
  accountName: Scalars['String']['input'];
812
814
  /** Azure storage container name. */
813
815
  containerName: Scalars['String']['input'];
816
+ /** Listing type: PAST for full listing (default), NEW for change feed. */
817
+ listType?: InputMaybe<BlobListingTypes>;
814
818
  /** Azure storage container prefix. */
815
819
  prefix?: InputMaybe<Scalars['String']['input']>;
816
820
  /** Azure storage access key. */
@@ -822,6 +826,8 @@ export type AzureBlobFeedPropertiesUpdateInput = {
822
826
  accountName?: InputMaybe<Scalars['String']['input']>;
823
827
  /** Azure storage container name. */
824
828
  containerName?: InputMaybe<Scalars['String']['input']>;
829
+ /** Listing type: PAST for full listing (default), NEW for change feed. */
830
+ listType?: InputMaybe<BlobListingTypes>;
825
831
  /** Azure storage container prefix. */
826
832
  prefix?: InputMaybe<Scalars['String']['input']>;
827
833
  /** Azure storage access key. */
@@ -1144,6 +1150,13 @@ export declare enum BillableMetrics {
1144
1150
  Tokens = "TOKENS",
1145
1151
  Units = "UNITS"
1146
1152
  }
1153
+ /** Blob listing type */
1154
+ export declare enum BlobListingTypes {
1155
+ /** Read new/changed blobs via change feed */
1156
+ New = "NEW",
1157
+ /** Read all blobs (full listing) */
1158
+ Past = "PAST"
1159
+ }
1147
1160
  /** Represents a boolean result. */
1148
1161
  export type BooleanResult = {
1149
1162
  __typename?: 'BooleanResult';
@@ -2247,6 +2260,8 @@ export type ContentCriteria = {
2247
2260
  __typename?: 'ContentCriteria';
2248
2261
  /** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
2249
2262
  and?: Maybe<Array<ContentCriteriaLevel>>;
2263
+ /** Filter mode for collections. Any: match if in any listed collection. All: must be in all listed collections. Only: must be in listed collections and no others. Defaults to Any. */
2264
+ collectionMode?: Maybe<FilterMode>;
2250
2265
  /** Filter by collections. */
2251
2266
  collections?: Maybe<Array<EntityReference>>;
2252
2267
  /** Filter by contents. */
@@ -2277,6 +2292,8 @@ export type ContentCriteria = {
2277
2292
  hasWorkflows?: Maybe<Scalars['Boolean']['output']>;
2278
2293
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2279
2294
  inLast?: Maybe<Scalars['TimeSpan']['output']>;
2295
+ /** Filter mode for observations. Any: match if any observation matches. All: must have all listed observations. Only: must have only the listed observations. Defaults to All. */
2296
+ observationMode?: Maybe<FilterMode>;
2280
2297
  /** Filter by observations. */
2281
2298
  observations?: Maybe<Array<ObservationCriteria>>;
2282
2299
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
@@ -2294,6 +2311,8 @@ export type ContentCriteria = {
2294
2311
  export type ContentCriteriaInput = {
2295
2312
  /** List of additional content filters using conjunctive conditions, i.e. 'and' semantics between each filter in list. */
2296
2313
  and?: InputMaybe<Array<ContentCriteriaLevelInput>>;
2314
+ /** Filter mode for collections. Any: match if in any listed collection. All: must be in all listed collections. Only: must be in listed collections and no others. Defaults to Any. */
2315
+ collectionMode?: InputMaybe<FilterMode>;
2297
2316
  /** Filter by collections. */
2298
2317
  collections?: InputMaybe<Array<EntityReferenceInput>>;
2299
2318
  /** Filter by contents. */
@@ -2324,6 +2343,8 @@ export type ContentCriteriaInput = {
2324
2343
  hasWorkflows?: InputMaybe<Scalars['Boolean']['input']>;
2325
2344
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
2326
2345
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
2346
+ /** Filter mode for observations. Any: match if any observation matches. All: must have all listed observations. Only: must have only the listed observations. Defaults to All. */
2347
+ observationMode?: InputMaybe<FilterMode>;
2327
2348
  /** Filter by observations. */
2328
2349
  observations?: InputMaybe<Array<ObservationCriteriaInput>>;
2329
2350
  /** List of additional content filters using disjunctive conditions, i.e. 'or' semantics between each filter in list. */
@@ -2456,6 +2477,8 @@ export type ContentFilter = {
2456
2477
  boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
2457
2478
  /** Filter by content C4ID hash. */
2458
2479
  c4id?: InputMaybe<Scalars['String']['input']>;
2480
+ /** Filter mode for collections. Any: match if in any listed collection. All: must be in all listed collections. Only: must be in listed collections and no others. Defaults to Any. */
2481
+ collectionMode?: InputMaybe<FilterMode>;
2459
2482
  /** Filter by collections. */
2460
2483
  collections?: InputMaybe<Array<EntityReferenceFilter>>;
2461
2484
  /** Filter by contents. */
@@ -2510,6 +2533,8 @@ export type ContentFilter = {
2510
2533
  name?: InputMaybe<Scalars['String']['input']>;
2511
2534
  /** When using similarity search, the number of similar items to be returned. Defaults to 100. */
2512
2535
  numberSimilar?: InputMaybe<Scalars['Int']['input']>;
2536
+ /** Filter mode for observations. Any: match if any observation matches. All: must have all listed observations. Only: must have only the listed observations. Defaults to All. */
2537
+ observationMode?: InputMaybe<FilterMode>;
2513
2538
  /** Filter by observations. */
2514
2539
  observations?: InputMaybe<Array<ObservationReferenceFilter>>;
2515
2540
  /** Skip the specified number of content(s) from the beginning of the result set. Only supported on keyword search. */
@@ -4479,6 +4504,8 @@ export type EventFilter = {
4479
4504
  endDateRange?: InputMaybe<DateRangeFilter>;
4480
4505
  /** Filter by events. */
4481
4506
  events?: InputMaybe<Array<EntityReferenceFilter>>;
4507
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
4508
+ feedMode?: InputMaybe<FilterMode>;
4482
4509
  /** Filter by feed identifiers that created these observable entities. */
4483
4510
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
4484
4511
  /** Filter by observable H3 index. */
@@ -5307,6 +5334,15 @@ export declare enum FileTypes {
5307
5334
  /** Video file */
5308
5335
  Video = "VIDEO"
5309
5336
  }
5337
+ /** Filter matching mode for array fields */
5338
+ export declare enum FilterMode {
5339
+ /** Match only if the entity has ALL of the specified items (AND semantics). Entity can have additional items not in the filter list. */
5340
+ All = "ALL",
5341
+ /** Match if ANY of the specified items match (OR semantics). Entity can have additional items not in the filter list. */
5342
+ Any = "ANY",
5343
+ /** Match only if ALL items the entity has are within the specified list. Entity cannot have items outside the filter list. */
5344
+ Only = "ONLY"
5345
+ }
5310
5346
  /** Represents geometry metadata. */
5311
5347
  export type GeometryMetadata = {
5312
5348
  __typename?: 'GeometryMetadata';
@@ -6894,6 +6930,8 @@ export type InvestmentFilter = {
6894
6930
  direction?: InputMaybe<OrderDirectionTypes>;
6895
6931
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
6896
6932
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
6933
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
6934
+ feedMode?: InputMaybe<FilterMode>;
6897
6935
  /** Filter by feed identifiers that created these observable entities. */
6898
6936
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
6899
6937
  /** Filter by observable H3 index. */
@@ -7035,6 +7073,8 @@ export type InvestmentFundFilter = {
7035
7073
  direction?: InputMaybe<OrderDirectionTypes>;
7036
7074
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
7037
7075
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
7076
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
7077
+ feedMode?: InputMaybe<FilterMode>;
7038
7078
  /** Filter by feed identifiers that created these observable entities. */
7039
7079
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
7040
7080
  /** Filter by observable H3 index. */
@@ -7887,6 +7927,8 @@ export type MedicalConditionFilter = {
7887
7927
  direction?: InputMaybe<OrderDirectionTypes>;
7888
7928
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
7889
7929
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
7930
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
7931
+ feedMode?: InputMaybe<FilterMode>;
7890
7932
  /** Filter by feed identifiers that created these observable entities. */
7891
7933
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
7892
7934
  /** Filter by observable H3 index. */
@@ -8052,6 +8094,8 @@ export type MedicalContraindicationFilter = {
8052
8094
  direction?: InputMaybe<OrderDirectionTypes>;
8053
8095
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8054
8096
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8097
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8098
+ feedMode?: InputMaybe<FilterMode>;
8055
8099
  /** Filter by feed identifiers that created these observable entities. */
8056
8100
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8057
8101
  /** Filter by observable H3 index. */
@@ -8217,6 +8261,8 @@ export type MedicalDeviceFilter = {
8217
8261
  direction?: InputMaybe<OrderDirectionTypes>;
8218
8262
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8219
8263
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8264
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8265
+ feedMode?: InputMaybe<FilterMode>;
8220
8266
  /** Filter by feed identifiers that created these observable entities. */
8221
8267
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8222
8268
  /** Filter by observable H3 index. */
@@ -8426,6 +8472,8 @@ export type MedicalDrugClassFilter = {
8426
8472
  direction?: InputMaybe<OrderDirectionTypes>;
8427
8473
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8428
8474
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8475
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8476
+ feedMode?: InputMaybe<FilterMode>;
8429
8477
  /** Filter by feed identifiers that created these observable entities. */
8430
8478
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8431
8479
  /** Filter by observable H3 index. */
@@ -8547,6 +8595,8 @@ export type MedicalDrugFilter = {
8547
8595
  direction?: InputMaybe<OrderDirectionTypes>;
8548
8596
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8549
8597
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8598
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8599
+ feedMode?: InputMaybe<FilterMode>;
8550
8600
  /** Filter by feed identifiers that created these observable entities. */
8551
8601
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8552
8602
  /** Filter by observable H3 index. */
@@ -8712,6 +8762,8 @@ export type MedicalGuidelineFilter = {
8712
8762
  direction?: InputMaybe<OrderDirectionTypes>;
8713
8763
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8714
8764
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8765
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8766
+ feedMode?: InputMaybe<FilterMode>;
8715
8767
  /** Filter by feed identifiers that created these observable entities. */
8716
8768
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8717
8769
  /** Filter by observable H3 index. */
@@ -8877,6 +8929,8 @@ export type MedicalIndicationFilter = {
8877
8929
  direction?: InputMaybe<OrderDirectionTypes>;
8878
8930
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
8879
8931
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
8932
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
8933
+ feedMode?: InputMaybe<FilterMode>;
8880
8934
  /** Filter by feed identifiers that created these observable entities. */
8881
8935
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
8882
8936
  /** Filter by observable H3 index. */
@@ -9042,6 +9096,8 @@ export type MedicalProcedureFilter = {
9042
9096
  direction?: InputMaybe<OrderDirectionTypes>;
9043
9097
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
9044
9098
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
9099
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
9100
+ feedMode?: InputMaybe<FilterMode>;
9045
9101
  /** Filter by feed identifiers that created these observable entities. */
9046
9102
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
9047
9103
  /** Filter by observable H3 index. */
@@ -9209,6 +9265,8 @@ export type MedicalStudyFilter = {
9209
9265
  direction?: InputMaybe<OrderDirectionTypes>;
9210
9266
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
9211
9267
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
9268
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
9269
+ feedMode?: InputMaybe<FilterMode>;
9212
9270
  /** Filter by feed identifiers that created these observable entities. */
9213
9271
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
9214
9272
  /** Filter by observable H3 index. */
@@ -9378,6 +9436,8 @@ export type MedicalTestFilter = {
9378
9436
  direction?: InputMaybe<OrderDirectionTypes>;
9379
9437
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
9380
9438
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
9439
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
9440
+ feedMode?: InputMaybe<FilterMode>;
9381
9441
  /** Filter by feed identifiers that created these observable entities. */
9382
9442
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
9383
9443
  /** Filter by observable H3 index. */
@@ -9543,6 +9603,8 @@ export type MedicalTherapyFilter = {
9543
9603
  direction?: InputMaybe<OrderDirectionTypes>;
9544
9604
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
9545
9605
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
9606
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
9607
+ feedMode?: InputMaybe<FilterMode>;
9546
9608
  /** Filter by feed identifiers that created these observable entities. */
9547
9609
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
9548
9610
  /** Filter by observable H3 index. */
@@ -12785,6 +12847,8 @@ export type OrganizationFilter = {
12785
12847
  direction?: InputMaybe<OrderDirectionTypes>;
12786
12848
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
12787
12849
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
12850
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
12851
+ feedMode?: InputMaybe<FilterMode>;
12788
12852
  /** Filter by feed identifiers that created these observable entities. */
12789
12853
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
12790
12854
  /** Filter by observable H3 index. */
@@ -13173,6 +13237,8 @@ export type PersonFilter = {
13173
13237
  email?: InputMaybe<Scalars['String']['input']>;
13174
13238
  /** Filter by the family name of the person. */
13175
13239
  familyName?: InputMaybe<Scalars['String']['input']>;
13240
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
13241
+ feedMode?: InputMaybe<FilterMode>;
13176
13242
  /** Filter by feed identifiers that created these observable entities. */
13177
13243
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
13178
13244
  /** Filter by the given name of the person. */
@@ -13411,6 +13477,8 @@ export type PlaceFilter = {
13411
13477
  direction?: InputMaybe<OrderDirectionTypes>;
13412
13478
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
13413
13479
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
13480
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
13481
+ feedMode?: InputMaybe<FilterMode>;
13414
13482
  /** Filter by feed identifiers that created these observable entities. */
13415
13483
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
13416
13484
  /** Filter by observable H3 index. */
@@ -13744,6 +13812,8 @@ export type ProductFilter = {
13744
13812
  direction?: InputMaybe<OrderDirectionTypes>;
13745
13813
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
13746
13814
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
13815
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
13816
+ feedMode?: InputMaybe<FilterMode>;
13747
13817
  /** Filter by feed identifiers that created these observable entities. */
13748
13818
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
13749
13819
  /** Filter by observable H3 index. */
@@ -15674,6 +15744,8 @@ export type RepoFilter = {
15674
15744
  direction?: InputMaybe<OrderDirectionTypes>;
15675
15745
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
15676
15746
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
15747
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
15748
+ feedMode?: InputMaybe<FilterMode>;
15677
15749
  /** Filter by feed identifiers that created these observable entities. */
15678
15750
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
15679
15751
  /** Filter by observable H3 index. */
@@ -16430,6 +16502,8 @@ export type SoftwareFilter = {
16430
16502
  direction?: InputMaybe<OrderDirectionTypes>;
16431
16503
  /** Whether to disable inheritance from project to owner, upon observable entity retrieval. Defaults to False. */
16432
16504
  disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
16505
+ /** Filter mode for feeds. Any: match if from any listed feed. All: must be from all listed feeds. Only: must be from listed feeds and no others. Defaults to Any. */
16506
+ feedMode?: InputMaybe<FilterMode>;
16433
16507
  /** Filter by feed identifiers that created these observable entities. */
16434
16508
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
16435
16509
  /** Filter by observable H3 index. */
@@ -18032,6 +18106,8 @@ export type GetAlertQuery = {
18032
18106
  hasFeeds?: boolean | null;
18033
18107
  hasCollections?: boolean | null;
18034
18108
  hasWorkflows?: boolean | null;
18109
+ collectionMode?: FilterMode | null;
18110
+ observationMode?: FilterMode | null;
18035
18111
  dateRange?: {
18036
18112
  __typename?: 'DateRange';
18037
18113
  from?: any | null;
@@ -18264,6 +18340,8 @@ export type QueryAlertsQuery = {
18264
18340
  hasFeeds?: boolean | null;
18265
18341
  hasCollections?: boolean | null;
18266
18342
  hasWorkflows?: boolean | null;
18343
+ collectionMode?: FilterMode | null;
18344
+ observationMode?: FilterMode | null;
18267
18345
  dateRange?: {
18268
18346
  __typename?: 'DateRange';
18269
18347
  from?: any | null;
@@ -23866,6 +23944,8 @@ export type GetConversationQuery = {
23866
23944
  hasFeeds?: boolean | null;
23867
23945
  hasCollections?: boolean | null;
23868
23946
  hasWorkflows?: boolean | null;
23947
+ collectionMode?: FilterMode | null;
23948
+ observationMode?: FilterMode | null;
23869
23949
  dateRange?: {
23870
23950
  __typename?: 'DateRange';
23871
23951
  from?: any | null;
@@ -23983,6 +24063,8 @@ export type GetConversationQuery = {
23983
24063
  hasFeeds?: boolean | null;
23984
24064
  hasCollections?: boolean | null;
23985
24065
  hasWorkflows?: boolean | null;
24066
+ collectionMode?: FilterMode | null;
24067
+ observationMode?: FilterMode | null;
23986
24068
  dateRange?: {
23987
24069
  __typename?: 'DateRange';
23988
24070
  from?: any | null;
@@ -24933,6 +25015,8 @@ export type QueryConversationsQuery = {
24933
25015
  hasFeeds?: boolean | null;
24934
25016
  hasCollections?: boolean | null;
24935
25017
  hasWorkflows?: boolean | null;
25018
+ collectionMode?: FilterMode | null;
25019
+ observationMode?: FilterMode | null;
24936
25020
  dateRange?: {
24937
25021
  __typename?: 'DateRange';
24938
25022
  from?: any | null;
@@ -25050,6 +25134,8 @@ export type QueryConversationsQuery = {
25050
25134
  hasFeeds?: boolean | null;
25051
25135
  hasCollections?: boolean | null;
25052
25136
  hasWorkflows?: boolean | null;
25137
+ collectionMode?: FilterMode | null;
25138
+ observationMode?: FilterMode | null;
25053
25139
  dateRange?: {
25054
25140
  __typename?: 'DateRange';
25055
25141
  from?: any | null;
@@ -26363,6 +26449,7 @@ export type GetFeedQuery = {
26363
26449
  accountName?: string | null;
26364
26450
  containerName?: string | null;
26365
26451
  prefix?: string | null;
26452
+ listType?: BlobListingTypes | null;
26366
26453
  } | null;
26367
26454
  azureFile?: {
26368
26455
  __typename?: 'AzureFileFeedProperties';
@@ -26862,6 +26949,7 @@ export type QueryFeedsQuery = {
26862
26949
  accountName?: string | null;
26863
26950
  containerName?: string | null;
26864
26951
  prefix?: string | null;
26952
+ listType?: BlobListingTypes | null;
26865
26953
  } | null;
26866
26954
  azureFile?: {
26867
26955
  __typename?: 'AzureFileFeedProperties';
@@ -35442,6 +35530,8 @@ export type CreateViewMutation = {
35442
35530
  hasFeeds?: boolean | null;
35443
35531
  hasCollections?: boolean | null;
35444
35532
  hasWorkflows?: boolean | null;
35533
+ collectionMode?: FilterMode | null;
35534
+ observationMode?: FilterMode | null;
35445
35535
  dateRange?: {
35446
35536
  __typename?: 'DateRange';
35447
35537
  from?: any | null;
@@ -35559,6 +35649,8 @@ export type CreateViewMutation = {
35559
35649
  hasFeeds?: boolean | null;
35560
35650
  hasCollections?: boolean | null;
35561
35651
  hasWorkflows?: boolean | null;
35652
+ collectionMode?: FilterMode | null;
35653
+ observationMode?: FilterMode | null;
35562
35654
  dateRange?: {
35563
35655
  __typename?: 'DateRange';
35564
35656
  from?: any | null;
@@ -35732,6 +35824,8 @@ export type GetViewQuery = {
35732
35824
  hasFeeds?: boolean | null;
35733
35825
  hasCollections?: boolean | null;
35734
35826
  hasWorkflows?: boolean | null;
35827
+ collectionMode?: FilterMode | null;
35828
+ observationMode?: FilterMode | null;
35735
35829
  dateRange?: {
35736
35830
  __typename?: 'DateRange';
35737
35831
  from?: any | null;
@@ -35849,6 +35943,8 @@ export type GetViewQuery = {
35849
35943
  hasFeeds?: boolean | null;
35850
35944
  hasCollections?: boolean | null;
35851
35945
  hasWorkflows?: boolean | null;
35946
+ collectionMode?: FilterMode | null;
35947
+ observationMode?: FilterMode | null;
35852
35948
  dateRange?: {
35853
35949
  __typename?: 'DateRange';
35854
35950
  from?: any | null;
@@ -35989,6 +36085,8 @@ export type QueryViewsQuery = {
35989
36085
  hasFeeds?: boolean | null;
35990
36086
  hasCollections?: boolean | null;
35991
36087
  hasWorkflows?: boolean | null;
36088
+ collectionMode?: FilterMode | null;
36089
+ observationMode?: FilterMode | null;
35992
36090
  dateRange?: {
35993
36091
  __typename?: 'DateRange';
35994
36092
  from?: any | null;
@@ -36106,6 +36204,8 @@ export type QueryViewsQuery = {
36106
36204
  hasFeeds?: boolean | null;
36107
36205
  hasCollections?: boolean | null;
36108
36206
  hasWorkflows?: boolean | null;
36207
+ collectionMode?: FilterMode | null;
36208
+ observationMode?: FilterMode | null;
36109
36209
  dateRange?: {
36110
36210
  __typename?: 'DateRange';
36111
36211
  from?: any | null;
@@ -36237,6 +36337,8 @@ export type UpdateViewMutation = {
36237
36337
  hasFeeds?: boolean | null;
36238
36338
  hasCollections?: boolean | null;
36239
36339
  hasWorkflows?: boolean | null;
36340
+ collectionMode?: FilterMode | null;
36341
+ observationMode?: FilterMode | null;
36240
36342
  dateRange?: {
36241
36343
  __typename?: 'DateRange';
36242
36344
  from?: any | null;
@@ -36354,6 +36456,8 @@ export type UpdateViewMutation = {
36354
36456
  hasFeeds?: boolean | null;
36355
36457
  hasCollections?: boolean | null;
36356
36458
  hasWorkflows?: boolean | null;
36459
+ collectionMode?: FilterMode | null;
36460
+ observationMode?: FilterMode | null;
36357
36461
  dateRange?: {
36358
36462
  __typename?: 'DateRange';
36359
36463
  from?: any | null;
@@ -36484,6 +36588,8 @@ export type UpsertViewMutation = {
36484
36588
  hasFeeds?: boolean | null;
36485
36589
  hasCollections?: boolean | null;
36486
36590
  hasWorkflows?: boolean | null;
36591
+ collectionMode?: FilterMode | null;
36592
+ observationMode?: FilterMode | null;
36487
36593
  dateRange?: {
36488
36594
  __typename?: 'DateRange';
36489
36595
  from?: any | null;
@@ -36601,6 +36707,8 @@ export type UpsertViewMutation = {
36601
36707
  hasFeeds?: boolean | null;
36602
36708
  hasCollections?: boolean | null;
36603
36709
  hasWorkflows?: boolean | null;
36710
+ collectionMode?: FilterMode | null;
36711
+ observationMode?: FilterMode | null;
36604
36712
  dateRange?: {
36605
36713
  __typename?: 'DateRange';
36606
36714
  from?: any | null;
@@ -223,6 +223,14 @@ export var BillableMetrics;
223
223
  BillableMetrics["Tokens"] = "TOKENS";
224
224
  BillableMetrics["Units"] = "UNITS";
225
225
  })(BillableMetrics || (BillableMetrics = {}));
226
+ /** Blob listing type */
227
+ export var BlobListingTypes;
228
+ (function (BlobListingTypes) {
229
+ /** Read new/changed blobs via change feed */
230
+ BlobListingTypes["New"] = "NEW";
231
+ /** Read all blobs (full listing) */
232
+ BlobListingTypes["Past"] = "PAST";
233
+ })(BlobListingTypes || (BlobListingTypes = {}));
226
234
  /** Box authentication type */
227
235
  export var BoxAuthenticationTypes;
228
236
  (function (BoxAuthenticationTypes) {
@@ -1108,6 +1116,16 @@ export var FileTypes;
1108
1116
  /** Video file */
1109
1117
  FileTypes["Video"] = "VIDEO";
1110
1118
  })(FileTypes || (FileTypes = {}));
1119
+ /** Filter matching mode for array fields */
1120
+ export var FilterMode;
1121
+ (function (FilterMode) {
1122
+ /** Match only if the entity has ALL of the specified items (AND semantics). Entity can have additional items not in the filter list. */
1123
+ FilterMode["All"] = "ALL";
1124
+ /** Match if ANY of the specified items match (OR semantics). Entity can have additional items not in the filter list. */
1125
+ FilterMode["Any"] = "ANY";
1126
+ /** Match only if ALL items the entity has are within the specified list. Entity cannot have items outside the filter list. */
1127
+ FilterMode["Only"] = "ONLY";
1128
+ })(FilterMode || (FilterMode = {}));
1111
1129
  /** GitHub authentication type */
1112
1130
  export var GitHubAuthenticationTypes;
1113
1131
  (function (GitHubAuthenticationTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251201001",
3
+ "version": "1.0.20251204001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",