graphlit-client 1.0.20260202003 → 1.0.20260203003

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.
@@ -8751,6 +8751,7 @@ export const GetFeed = gql `
8751
8751
  }
8752
8752
  meeting {
8753
8753
  type
8754
+ contentType
8754
8755
  readLimit
8755
8756
  fireflies {
8756
8757
  apiKey
@@ -9433,6 +9434,7 @@ export const QueryFeeds = gql `
9433
9434
  }
9434
9435
  meeting {
9435
9436
  type
9437
+ contentType
9436
9438
  readLimit
9437
9439
  fireflies {
9438
9440
  apiKey
@@ -11278,6 +11278,15 @@ export type MedicalTherapyUpdateInput = {
11278
11278
  /** The medicaltherapy URI. */
11279
11279
  uri?: InputMaybe<Scalars['URL']['input']>;
11280
11280
  };
11281
+ /** Meeting feed content type */
11282
+ export declare enum MeetingContentTypes {
11283
+ /** Prefer recording, fall back to transcript if unavailable */
11284
+ Preferred = "PREFERRED",
11285
+ /** Ingest recording from meeting service */
11286
+ Recording = "RECORDING",
11287
+ /** Ingest transcript from meeting service */
11288
+ Transcript = "TRANSCRIPT"
11289
+ }
11281
11290
  /** Represents meeting transcript feed properties. */
11282
11291
  export type MeetingFeedProperties = {
11283
11292
  __typename?: 'MeetingFeedProperties';
@@ -11285,6 +11294,8 @@ export type MeetingFeedProperties = {
11285
11294
  attio?: Maybe<AttioMeetingProperties>;
11286
11295
  /** Feed connector type. */
11287
11296
  connectorType: FeedConnectorTypes;
11297
+ /** Content type to ingest: transcript, recording, or preferred. */
11298
+ contentType?: Maybe<MeetingContentTypes>;
11288
11299
  /** Fathom meeting properties. */
11289
11300
  fathom?: Maybe<FathomProperties>;
11290
11301
  /** Fireflies.ai properties. */
@@ -11302,6 +11313,8 @@ export type MeetingFeedProperties = {
11302
11313
  export type MeetingFeedPropertiesInput = {
11303
11314
  /** Attio meeting transcript properties. */
11304
11315
  attio?: InputMaybe<AttioMeetingPropertiesInput>;
11316
+ /** Content type to ingest: transcript, recording, or preferred. */
11317
+ contentType?: InputMaybe<MeetingContentTypes>;
11305
11318
  /** Fathom meeting properties. */
11306
11319
  fathom?: InputMaybe<FathomPropertiesInput>;
11307
11320
  /** Fireflies.ai properties. */
@@ -11319,6 +11332,8 @@ export type MeetingFeedPropertiesInput = {
11319
11332
  export type MeetingFeedPropertiesUpdateInput = {
11320
11333
  /** Attio meeting transcript properties. */
11321
11334
  attio?: InputMaybe<AttioMeetingPropertiesUpdateInput>;
11335
+ /** Content type to ingest: transcript, recording, or preferred. */
11336
+ contentType?: InputMaybe<MeetingContentTypes>;
11322
11337
  /** Fathom meeting properties. */
11323
11338
  fathom?: InputMaybe<FathomPropertiesUpdateInput>;
11324
11339
  /** Fireflies.ai properties. */
@@ -30438,6 +30453,7 @@ export type GetFeedQuery = {
30438
30453
  meeting?: {
30439
30454
  __typename?: 'MeetingFeedProperties';
30440
30455
  type: FeedServiceTypes;
30456
+ contentType?: MeetingContentTypes | null;
30441
30457
  readLimit?: number | null;
30442
30458
  fireflies?: {
30443
30459
  __typename?: 'FirefliesFeedProperties';
@@ -31272,6 +31288,7 @@ export type QueryFeedsQuery = {
31272
31288
  meeting?: {
31273
31289
  __typename?: 'MeetingFeedProperties';
31274
31290
  type: FeedServiceTypes;
31291
+ contentType?: MeetingContentTypes | null;
31275
31292
  readLimit?: number | null;
31276
31293
  fireflies?: {
31277
31294
  __typename?: 'FirefliesFeedProperties';
@@ -1836,6 +1836,16 @@ export var MedicalTherapyFacetTypes;
1836
1836
  /** Creation Date */
1837
1837
  MedicalTherapyFacetTypes["CreationDate"] = "CREATION_DATE";
1838
1838
  })(MedicalTherapyFacetTypes || (MedicalTherapyFacetTypes = {}));
1839
+ /** Meeting feed content type */
1840
+ export var MeetingContentTypes;
1841
+ (function (MeetingContentTypes) {
1842
+ /** Prefer recording, fall back to transcript if unavailable */
1843
+ MeetingContentTypes["Preferred"] = "PREFERRED";
1844
+ /** Ingest recording from meeting service */
1845
+ MeetingContentTypes["Recording"] = "RECORDING";
1846
+ /** Ingest transcript from meeting service */
1847
+ MeetingContentTypes["Transcript"] = "TRANSCRIPT";
1848
+ })(MeetingContentTypes || (MeetingContentTypes = {}));
1839
1849
  /** Metadata type */
1840
1850
  export var MetadataTypes;
1841
1851
  (function (MetadataTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260202003",
3
+ "version": "1.0.20260203003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",