graphlit-client 1.0.20260309002 → 1.0.20260309003

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.
@@ -7093,6 +7093,8 @@ export type FeedPreviewResult = {
7093
7093
  isComplete: Scalars['Boolean']['output'];
7094
7094
  /** The total number of items found. */
7095
7095
  itemCount: Scalars['Long']['output'];
7096
+ /** The observable type histogram. */
7097
+ observableTypeSummary?: Maybe<Array<ObservableTypeSummary>>;
7096
7098
  /** Any warnings generated during the preview scan. */
7097
7099
  warnings?: Maybe<Array<Scalars['String']['output']>>;
7098
7100
  };
@@ -16455,6 +16457,14 @@ export type ObservableResults = {
16455
16457
  /** The retrieved observables. */
16456
16458
  results?: Maybe<Array<Maybe<ObservationReference>>>;
16457
16459
  };
16460
+ /** Represents an observable type summary. */
16461
+ export type ObservableTypeSummary = {
16462
+ __typename?: 'ObservableTypeSummary';
16463
+ /** The item count. */
16464
+ itemCount: Scalars['Long']['output'];
16465
+ /** The observable type. */
16466
+ observableType: ObservableTypes;
16467
+ };
16458
16468
  /** Observable type */
16459
16469
  export declare enum ObservableTypes {
16460
16470
  /** Category */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260309002",
3
+ "version": "1.0.20260309003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",