graphlit-client 1.0.20260104001-dev → 1.0.20260107001

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.
@@ -7710,8 +7710,8 @@ export const CreateFeed = gql `
7710
7710
  id
7711
7711
  name
7712
7712
  state
7713
+ identifier
7713
7714
  type
7714
- syncMode
7715
7715
  }
7716
7716
  }
7717
7717
  `;
@@ -7777,6 +7777,8 @@ export const GetFeed = gql `
7777
7777
  id
7778
7778
  }
7779
7779
  state
7780
+ identifier
7781
+ description
7780
7782
  correlationId
7781
7783
  type
7782
7784
  syncMode
@@ -8296,6 +8298,8 @@ export const QueryFeeds = gql `
8296
8298
  id
8297
8299
  }
8298
8300
  state
8301
+ identifier
8302
+ description
8299
8303
  correlationId
8300
8304
  type
8301
8305
  syncMode
@@ -8907,8 +8911,8 @@ export const UpdateFeed = gql `
8907
8911
  id
8908
8912
  name
8909
8913
  state
8914
+ identifier
8910
8915
  type
8911
- syncMode
8912
8916
  }
8913
8917
  }
8914
8918
  `;
@@ -5163,6 +5163,8 @@ export type Feed = {
5163
5163
  error?: Maybe<Scalars['String']['output']>;
5164
5164
  /** The ID of the feed. */
5165
5165
  id: Scalars['ID']['output'];
5166
+ /** The feed external identifier. */
5167
+ identifier?: Maybe<Scalars['String']['output']>;
5166
5168
  /** The Intercom feed properties. */
5167
5169
  intercom?: Maybe<IntercomFeedProperties>;
5168
5170
  /** The issue feed properties. */
@@ -5286,6 +5288,8 @@ export type FeedFilter = {
5286
5288
  direction?: InputMaybe<OrderDirectionTypes>;
5287
5289
  /** Filter feed(s) by their unique ID. */
5288
5290
  id?: InputMaybe<Scalars['ID']['input']>;
5291
+ /** Filter by feed external identifier. */
5292
+ identifier?: InputMaybe<Scalars['String']['input']>;
5289
5293
  /** Limit the number of feed(s) to be returned. Defaults to 100. */
5290
5294
  limit?: InputMaybe<Scalars['Int']['input']>;
5291
5295
  /** Filter feed(s) by their modified date range. */
@@ -5325,6 +5329,8 @@ export type FeedInput = {
5325
5329
  email?: InputMaybe<EmailFeedPropertiesInput>;
5326
5330
  /** The Entity discovery feed properties. */
5327
5331
  entity?: InputMaybe<EntityFeedPropertiesInput>;
5332
+ /** The feed external identifier. */
5333
+ identifier?: InputMaybe<Scalars['String']['input']>;
5328
5334
  /** The Intercom feed properties. */
5329
5335
  intercom?: InputMaybe<IntercomFeedPropertiesInput>;
5330
5336
  /** The issue feed properties. */
@@ -5553,6 +5559,8 @@ export type FeedUpdateInput = {
5553
5559
  entity?: InputMaybe<EntityFeedPropertiesUpdateInput>;
5554
5560
  /** The ID of the feed to update. */
5555
5561
  id: Scalars['ID']['input'];
5562
+ /** The feed external identifier. */
5563
+ identifier?: InputMaybe<Scalars['String']['input']>;
5556
5564
  /** The Intercom feed properties. */
5557
5565
  intercom?: InputMaybe<IntercomFeedPropertiesUpdateInput>;
5558
5566
  /** The issue feed properties. */
@@ -27872,8 +27880,8 @@ export type CreateFeedMutation = {
27872
27880
  id: string;
27873
27881
  name: string;
27874
27882
  state: EntityState;
27883
+ identifier?: string | null;
27875
27884
  type: FeedTypes;
27876
- syncMode?: FeedSyncMode | null;
27877
27885
  } | null;
27878
27886
  };
27879
27887
  export type DeleteAllFeedsMutationVariables = Exact<{
@@ -27958,6 +27966,8 @@ export type GetFeedQuery = {
27958
27966
  creationDate: any;
27959
27967
  modifiedDate?: any | null;
27960
27968
  state: EntityState;
27969
+ identifier?: string | null;
27970
+ description?: string | null;
27961
27971
  correlationId?: string | null;
27962
27972
  type: FeedTypes;
27963
27973
  syncMode?: FeedSyncMode | null;
@@ -28586,6 +28596,8 @@ export type QueryFeedsQuery = {
28586
28596
  modifiedDate?: any | null;
28587
28597
  relevance?: number | null;
28588
28598
  state: EntityState;
28599
+ identifier?: string | null;
28600
+ description?: string | null;
28589
28601
  correlationId?: string | null;
28590
28602
  type: FeedTypes;
28591
28603
  syncMode?: FeedSyncMode | null;
@@ -29339,8 +29351,8 @@ export type UpdateFeedMutation = {
29339
29351
  id: string;
29340
29352
  name: string;
29341
29353
  state: EntityState;
29354
+ identifier?: string | null;
29342
29355
  type: FeedTypes;
29343
- syncMode?: FeedSyncMode | null;
29344
29356
  } | null;
29345
29357
  };
29346
29358
  export type CountInvestmentsQueryVariables = Exact<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260104001-dev",
3
+ "version": "1.0.20260107001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",