graphlit-client 1.0.20260202002 → 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.
|
@@ -1188,6 +1188,10 @@ export const ExtractObservables = gql `
|
|
|
1188
1188
|
name
|
|
1189
1189
|
metadata
|
|
1190
1190
|
}
|
|
1191
|
+
emotions {
|
|
1192
|
+
name
|
|
1193
|
+
metadata
|
|
1194
|
+
}
|
|
1191
1195
|
persons {
|
|
1192
1196
|
name
|
|
1193
1197
|
metadata
|
|
@@ -8747,6 +8751,7 @@ export const GetFeed = gql `
|
|
|
8747
8751
|
}
|
|
8748
8752
|
meeting {
|
|
8749
8753
|
type
|
|
8754
|
+
contentType
|
|
8750
8755
|
readLimit
|
|
8751
8756
|
fireflies {
|
|
8752
8757
|
apiKey
|
|
@@ -9429,6 +9434,7 @@ export const QueryFeeds = gql `
|
|
|
9429
9434
|
}
|
|
9430
9435
|
meeting {
|
|
9431
9436
|
type
|
|
9437
|
+
contentType
|
|
9432
9438
|
readLimit
|
|
9433
9439
|
fireflies {
|
|
9434
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. */
|
|
@@ -21801,6 +21816,11 @@ export type ExtractObservablesMutation = {
|
|
|
21801
21816
|
name?: string | null;
|
|
21802
21817
|
metadata?: string | null;
|
|
21803
21818
|
} | null> | null;
|
|
21819
|
+
emotions?: Array<{
|
|
21820
|
+
__typename?: 'Observable';
|
|
21821
|
+
name?: string | null;
|
|
21822
|
+
metadata?: string | null;
|
|
21823
|
+
} | null> | null;
|
|
21804
21824
|
persons?: Array<{
|
|
21805
21825
|
__typename?: 'Observable';
|
|
21806
21826
|
name?: string | null;
|
|
@@ -30433,6 +30453,7 @@ export type GetFeedQuery = {
|
|
|
30433
30453
|
meeting?: {
|
|
30434
30454
|
__typename?: 'MeetingFeedProperties';
|
|
30435
30455
|
type: FeedServiceTypes;
|
|
30456
|
+
contentType?: MeetingContentTypes | null;
|
|
30436
30457
|
readLimit?: number | null;
|
|
30437
30458
|
fireflies?: {
|
|
30438
30459
|
__typename?: 'FirefliesFeedProperties';
|
|
@@ -31267,6 +31288,7 @@ export type QueryFeedsQuery = {
|
|
|
31267
31288
|
meeting?: {
|
|
31268
31289
|
__typename?: 'MeetingFeedProperties';
|
|
31269
31290
|
type: FeedServiceTypes;
|
|
31291
|
+
contentType?: MeetingContentTypes | null;
|
|
31270
31292
|
readLimit?: number | null;
|
|
31271
31293
|
fireflies?: {
|
|
31272
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) {
|