graphlit-client 1.0.20260202003 → 1.0.20260204001
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. */
|
|
@@ -14552,7 +14567,9 @@ export declare enum OpenAiReasoningEffortLevels {
|
|
|
14552
14567
|
/** Low effort */
|
|
14553
14568
|
Low = "LOW",
|
|
14554
14569
|
/** Medium effort */
|
|
14555
|
-
Medium = "MEDIUM"
|
|
14570
|
+
Medium = "MEDIUM",
|
|
14571
|
+
/** Minimal effort */
|
|
14572
|
+
Minimal = "MINIMAL"
|
|
14556
14573
|
}
|
|
14557
14574
|
/** OpenAI Video model type */
|
|
14558
14575
|
export declare enum OpenAiVideoModels {
|
|
@@ -30438,6 +30455,7 @@ export type GetFeedQuery = {
|
|
|
30438
30455
|
meeting?: {
|
|
30439
30456
|
__typename?: 'MeetingFeedProperties';
|
|
30440
30457
|
type: FeedServiceTypes;
|
|
30458
|
+
contentType?: MeetingContentTypes | null;
|
|
30441
30459
|
readLimit?: number | null;
|
|
30442
30460
|
fireflies?: {
|
|
30443
30461
|
__typename?: 'FirefliesFeedProperties';
|
|
@@ -31272,6 +31290,7 @@ export type QueryFeedsQuery = {
|
|
|
31272
31290
|
meeting?: {
|
|
31273
31291
|
__typename?: 'MeetingFeedProperties';
|
|
31274
31292
|
type: FeedServiceTypes;
|
|
31293
|
+
contentType?: MeetingContentTypes | null;
|
|
31275
31294
|
readLimit?: number | null;
|
|
31276
31295
|
fireflies?: {
|
|
31277
31296
|
__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) {
|
|
@@ -2213,6 +2223,8 @@ export var OpenAiReasoningEffortLevels;
|
|
|
2213
2223
|
OpenAiReasoningEffortLevels["Low"] = "LOW";
|
|
2214
2224
|
/** Medium effort */
|
|
2215
2225
|
OpenAiReasoningEffortLevels["Medium"] = "MEDIUM";
|
|
2226
|
+
/** Minimal effort */
|
|
2227
|
+
OpenAiReasoningEffortLevels["Minimal"] = "MINIMAL";
|
|
2216
2228
|
})(OpenAiReasoningEffortLevels || (OpenAiReasoningEffortLevels = {}));
|
|
2217
2229
|
/** OpenAI Video model type */
|
|
2218
2230
|
export var OpenAiVideoModels;
|