graphlit-client 1.0.20241227002 → 1.0.20241228002
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.
- package/dist/client.d.ts +1 -1
- package/dist/client.js +2 -2
- package/dist/generated/graphql-documents.js +291 -101
- package/dist/generated/graphql-types.d.ts +343 -125
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
@@ -53,7 +53,7 @@ declare class Graphlit {
|
|
53
53
|
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
54
54
|
extractText(prompt: string, text: string, tools: Types.ToolDefinitionInput[], specification?: Types.EntityReferenceInput, textType?: Types.TextTypes, correlationId?: string): Promise<Types.ExtractTextMutation>;
|
55
55
|
extractContents(prompt: string, tools: Types.ToolDefinitionInput[], specification?: Types.EntityReferenceInput, filter?: Types.ContentFilter, correlationId?: string): Promise<Types.ExtractContentsMutation>;
|
56
|
-
publishContents(publishPrompt: string, connector: Types.ContentPublishingConnectorInput, summaryPrompt?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishContentsMutation>;
|
56
|
+
publishContents(publishPrompt: string, connector: Types.ContentPublishingConnectorInput, summaryPrompt?: string, summarySpecification?: Types.EntityReferenceInput, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, includeDetails?: string, correlationId?: string): Promise<Types.PublishContentsMutation>;
|
57
57
|
publishText(text: string, textType: Types.TextTypes, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishTextMutation>;
|
58
58
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
59
59
|
queryContents(filter?: Types.ContentFilter): Promise<Types.QueryContentsQuery>;
|
package/dist/client.js
CHANGED
@@ -323,9 +323,9 @@ class Graphlit {
|
|
323
323
|
return this.mutateAndCheckError(Documents.ExtractContents, { prompt: prompt, filter: filter, specification: specification, tools: tools, correlationId: correlationId });
|
324
324
|
});
|
325
325
|
}
|
326
|
-
publishContents(publishPrompt, connector, summaryPrompt, summarySpecification, publishSpecification, name, filter, workflow, isSynchronous, correlationId) {
|
326
|
+
publishContents(publishPrompt, connector, summaryPrompt, summarySpecification, publishSpecification, name, filter, workflow, isSynchronous, includeDetails, correlationId) {
|
327
327
|
return __awaiter(this, void 0, void 0, function* () {
|
328
|
-
return this.mutateAndCheckError(Documents.PublishContents, { summaryPrompt: summaryPrompt, summarySpecification: summarySpecification, connector: connector, publishPrompt: publishPrompt, publishSpecification: publishSpecification, name: name, filter: filter, workflow: workflow, isSynchronous: isSynchronous, correlationId: correlationId });
|
328
|
+
return this.mutateAndCheckError(Documents.PublishContents, { summaryPrompt: summaryPrompt, summarySpecification: summarySpecification, connector: connector, publishPrompt: publishPrompt, publishSpecification: publishSpecification, name: name, filter: filter, workflow: workflow, isSynchronous: isSynchronous, includeDetails: includeDetails, correlationId: correlationId });
|
329
329
|
});
|
330
330
|
}
|
331
331
|
publishText(text, textType, connector, name, workflow, isSynchronous, correlationId) {
|
@@ -1380,48 +1380,129 @@ exports.PublishContents = (0, graphql_tag_1.default) `
|
|
1380
1380
|
publishSpecification: $publishSpecification
|
1381
1381
|
workflow: $workflow
|
1382
1382
|
) {
|
1383
|
-
|
1384
|
-
name
|
1385
|
-
state
|
1386
|
-
type
|
1387
|
-
fileType
|
1388
|
-
mimeType
|
1389
|
-
uri
|
1390
|
-
collections {
|
1383
|
+
content {
|
1391
1384
|
id
|
1392
1385
|
name
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1386
|
+
state
|
1387
|
+
originalDate
|
1388
|
+
identifier
|
1389
|
+
markdown
|
1390
|
+
uri
|
1396
1391
|
type
|
1397
|
-
|
1398
|
-
|
1399
|
-
|
1392
|
+
fileType
|
1393
|
+
mimeType
|
1394
|
+
format
|
1395
|
+
formatName
|
1396
|
+
fileExtension
|
1397
|
+
fileName
|
1398
|
+
fileSize
|
1399
|
+
masterUri
|
1400
|
+
imageUri
|
1401
|
+
textUri
|
1402
|
+
audioUri
|
1403
|
+
transcriptUri
|
1404
|
+
summary
|
1405
|
+
customSummary
|
1406
|
+
keywords
|
1407
|
+
bullets
|
1408
|
+
headlines
|
1409
|
+
posts
|
1410
|
+
chapters
|
1411
|
+
questions
|
1412
|
+
video {
|
1413
|
+
width
|
1414
|
+
height
|
1415
|
+
duration
|
1416
|
+
make
|
1417
|
+
model
|
1418
|
+
software
|
1419
|
+
title
|
1420
|
+
description
|
1421
|
+
keywords
|
1422
|
+
author
|
1400
1423
|
}
|
1401
|
-
|
1424
|
+
audio {
|
1425
|
+
keywords
|
1426
|
+
author
|
1427
|
+
series
|
1428
|
+
episode
|
1429
|
+
episodeType
|
1430
|
+
season
|
1431
|
+
publisher
|
1432
|
+
copyright
|
1433
|
+
genre
|
1434
|
+
title
|
1435
|
+
description
|
1436
|
+
bitrate
|
1437
|
+
channels
|
1438
|
+
sampleRate
|
1439
|
+
bitsPerSample
|
1440
|
+
duration
|
1441
|
+
}
|
1442
|
+
image {
|
1443
|
+
width
|
1444
|
+
height
|
1445
|
+
resolutionX
|
1446
|
+
resolutionY
|
1447
|
+
bitsPerComponent
|
1448
|
+
components
|
1449
|
+
projectionType
|
1450
|
+
orientation
|
1451
|
+
description
|
1452
|
+
make
|
1453
|
+
model
|
1454
|
+
software
|
1455
|
+
lens
|
1456
|
+
focalLength
|
1457
|
+
exposureTime
|
1458
|
+
fNumber
|
1459
|
+
iso
|
1460
|
+
heading
|
1461
|
+
pitch
|
1462
|
+
}
|
1463
|
+
document {
|
1464
|
+
title
|
1465
|
+
subject
|
1466
|
+
summary
|
1467
|
+
author
|
1468
|
+
publisher
|
1469
|
+
description
|
1470
|
+
keywords
|
1471
|
+
pageCount
|
1472
|
+
worksheetCount
|
1473
|
+
slideCount
|
1474
|
+
wordCount
|
1475
|
+
lineCount
|
1476
|
+
paragraphCount
|
1477
|
+
isEncrypted
|
1478
|
+
hasDigitalSignature
|
1479
|
+
}
|
1480
|
+
}
|
1481
|
+
details {
|
1482
|
+
contents {
|
1402
1483
|
id
|
1403
|
-
name
|
1404
1484
|
}
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
height
|
1485
|
+
summaries {
|
1486
|
+
index
|
1487
|
+
relevance
|
1488
|
+
chunks {
|
1489
|
+
index
|
1490
|
+
pageIndex
|
1491
|
+
rowIndex
|
1492
|
+
columnIndex
|
1493
|
+
confidence
|
1494
|
+
text
|
1495
|
+
role
|
1496
|
+
relevance
|
1418
1497
|
}
|
1419
1498
|
}
|
1420
|
-
|
1499
|
+
text
|
1500
|
+
textType
|
1501
|
+
summarySpecification
|
1502
|
+
publishSpecification
|
1503
|
+
summaryTime
|
1504
|
+
publishTime
|
1421
1505
|
}
|
1422
|
-
textUri
|
1423
|
-
audioUri
|
1424
|
-
markdown
|
1425
1506
|
}
|
1426
1507
|
}
|
1427
1508
|
`;
|
@@ -1439,45 +1520,99 @@ exports.PublishText = (0, graphql_tag_1.default) `
|
|
1439
1520
|
id
|
1440
1521
|
name
|
1441
1522
|
state
|
1523
|
+
originalDate
|
1524
|
+
identifier
|
1525
|
+
markdown
|
1526
|
+
uri
|
1442
1527
|
type
|
1443
1528
|
fileType
|
1444
1529
|
mimeType
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
type
|
1453
|
-
observable {
|
1454
|
-
id
|
1455
|
-
name
|
1456
|
-
}
|
1457
|
-
related {
|
1458
|
-
id
|
1459
|
-
name
|
1460
|
-
}
|
1461
|
-
relatedType
|
1462
|
-
relation
|
1463
|
-
occurrences {
|
1464
|
-
type
|
1465
|
-
confidence
|
1466
|
-
startTime
|
1467
|
-
endTime
|
1468
|
-
pageIndex
|
1469
|
-
boundingBox {
|
1470
|
-
left
|
1471
|
-
top
|
1472
|
-
width
|
1473
|
-
height
|
1474
|
-
}
|
1475
|
-
}
|
1476
|
-
state
|
1477
|
-
}
|
1530
|
+
format
|
1531
|
+
formatName
|
1532
|
+
fileExtension
|
1533
|
+
fileName
|
1534
|
+
fileSize
|
1535
|
+
masterUri
|
1536
|
+
imageUri
|
1478
1537
|
textUri
|
1479
1538
|
audioUri
|
1480
|
-
|
1539
|
+
transcriptUri
|
1540
|
+
summary
|
1541
|
+
customSummary
|
1542
|
+
keywords
|
1543
|
+
bullets
|
1544
|
+
headlines
|
1545
|
+
posts
|
1546
|
+
chapters
|
1547
|
+
questions
|
1548
|
+
video {
|
1549
|
+
width
|
1550
|
+
height
|
1551
|
+
duration
|
1552
|
+
make
|
1553
|
+
model
|
1554
|
+
software
|
1555
|
+
title
|
1556
|
+
description
|
1557
|
+
keywords
|
1558
|
+
author
|
1559
|
+
}
|
1560
|
+
audio {
|
1561
|
+
keywords
|
1562
|
+
author
|
1563
|
+
series
|
1564
|
+
episode
|
1565
|
+
episodeType
|
1566
|
+
season
|
1567
|
+
publisher
|
1568
|
+
copyright
|
1569
|
+
genre
|
1570
|
+
title
|
1571
|
+
description
|
1572
|
+
bitrate
|
1573
|
+
channels
|
1574
|
+
sampleRate
|
1575
|
+
bitsPerSample
|
1576
|
+
duration
|
1577
|
+
}
|
1578
|
+
image {
|
1579
|
+
width
|
1580
|
+
height
|
1581
|
+
resolutionX
|
1582
|
+
resolutionY
|
1583
|
+
bitsPerComponent
|
1584
|
+
components
|
1585
|
+
projectionType
|
1586
|
+
orientation
|
1587
|
+
description
|
1588
|
+
make
|
1589
|
+
model
|
1590
|
+
software
|
1591
|
+
lens
|
1592
|
+
focalLength
|
1593
|
+
exposureTime
|
1594
|
+
fNumber
|
1595
|
+
iso
|
1596
|
+
heading
|
1597
|
+
pitch
|
1598
|
+
}
|
1599
|
+
document {
|
1600
|
+
title
|
1601
|
+
subject
|
1602
|
+
summary
|
1603
|
+
author
|
1604
|
+
publisher
|
1605
|
+
description
|
1606
|
+
keywords
|
1607
|
+
pageCount
|
1608
|
+
worksheetCount
|
1609
|
+
slideCount
|
1610
|
+
wordCount
|
1611
|
+
lineCount
|
1612
|
+
paragraphCount
|
1613
|
+
isEncrypted
|
1614
|
+
hasDigitalSignature
|
1615
|
+
}
|
1481
1616
|
}
|
1482
1617
|
}
|
1483
1618
|
`;
|
@@ -3894,45 +4029,99 @@ exports.PublishConversation = (0, graphql_tag_1.default) `
|
|
3894
4029
|
id
|
3895
4030
|
name
|
3896
4031
|
state
|
4032
|
+
originalDate
|
4033
|
+
identifier
|
4034
|
+
markdown
|
4035
|
+
uri
|
3897
4036
|
type
|
3898
4037
|
fileType
|
3899
4038
|
mimeType
|
3900
|
-
|
3901
|
-
|
3902
|
-
|
3903
|
-
|
3904
|
-
|
3905
|
-
|
3906
|
-
|
3907
|
-
type
|
3908
|
-
observable {
|
3909
|
-
id
|
3910
|
-
name
|
3911
|
-
}
|
3912
|
-
related {
|
3913
|
-
id
|
3914
|
-
name
|
3915
|
-
}
|
3916
|
-
relatedType
|
3917
|
-
relation
|
3918
|
-
occurrences {
|
3919
|
-
type
|
3920
|
-
confidence
|
3921
|
-
startTime
|
3922
|
-
endTime
|
3923
|
-
pageIndex
|
3924
|
-
boundingBox {
|
3925
|
-
left
|
3926
|
-
top
|
3927
|
-
width
|
3928
|
-
height
|
3929
|
-
}
|
3930
|
-
}
|
3931
|
-
state
|
3932
|
-
}
|
4039
|
+
format
|
4040
|
+
formatName
|
4041
|
+
fileExtension
|
4042
|
+
fileName
|
4043
|
+
fileSize
|
4044
|
+
masterUri
|
4045
|
+
imageUri
|
3933
4046
|
textUri
|
3934
4047
|
audioUri
|
3935
|
-
|
4048
|
+
transcriptUri
|
4049
|
+
summary
|
4050
|
+
customSummary
|
4051
|
+
keywords
|
4052
|
+
bullets
|
4053
|
+
headlines
|
4054
|
+
posts
|
4055
|
+
chapters
|
4056
|
+
questions
|
4057
|
+
video {
|
4058
|
+
width
|
4059
|
+
height
|
4060
|
+
duration
|
4061
|
+
make
|
4062
|
+
model
|
4063
|
+
software
|
4064
|
+
title
|
4065
|
+
description
|
4066
|
+
keywords
|
4067
|
+
author
|
4068
|
+
}
|
4069
|
+
audio {
|
4070
|
+
keywords
|
4071
|
+
author
|
4072
|
+
series
|
4073
|
+
episode
|
4074
|
+
episodeType
|
4075
|
+
season
|
4076
|
+
publisher
|
4077
|
+
copyright
|
4078
|
+
genre
|
4079
|
+
title
|
4080
|
+
description
|
4081
|
+
bitrate
|
4082
|
+
channels
|
4083
|
+
sampleRate
|
4084
|
+
bitsPerSample
|
4085
|
+
duration
|
4086
|
+
}
|
4087
|
+
image {
|
4088
|
+
width
|
4089
|
+
height
|
4090
|
+
resolutionX
|
4091
|
+
resolutionY
|
4092
|
+
bitsPerComponent
|
4093
|
+
components
|
4094
|
+
projectionType
|
4095
|
+
orientation
|
4096
|
+
description
|
4097
|
+
make
|
4098
|
+
model
|
4099
|
+
software
|
4100
|
+
lens
|
4101
|
+
focalLength
|
4102
|
+
exposureTime
|
4103
|
+
fNumber
|
4104
|
+
iso
|
4105
|
+
heading
|
4106
|
+
pitch
|
4107
|
+
}
|
4108
|
+
document {
|
4109
|
+
title
|
4110
|
+
subject
|
4111
|
+
summary
|
4112
|
+
author
|
4113
|
+
publisher
|
4114
|
+
description
|
4115
|
+
keywords
|
4116
|
+
pageCount
|
4117
|
+
worksheetCount
|
4118
|
+
slideCount
|
4119
|
+
wordCount
|
4120
|
+
lineCount
|
4121
|
+
paragraphCount
|
4122
|
+
isEncrypted
|
4123
|
+
hasDigitalSignature
|
4124
|
+
}
|
3936
4125
|
}
|
3937
4126
|
}
|
3938
4127
|
`;
|
@@ -7664,6 +7853,7 @@ exports.QueryModels = (0, graphql_tag_1.default) `
|
|
7664
7853
|
query QueryModels {
|
7665
7854
|
models {
|
7666
7855
|
results {
|
7856
|
+
name
|
7667
7857
|
type
|
7668
7858
|
serviceType
|
7669
7859
|
model
|
@@ -7183,7 +7183,7 @@ export type Mutation = {
|
|
7183
7183
|
/** Prompts one or more LLM specifications, 10 maximum. */
|
7184
7184
|
promptSpecifications?: Maybe<Array<Maybe<PromptCompletion>>>;
|
7185
7185
|
/** Publish contents based on the provided filter criteria into different content format. */
|
7186
|
-
publishContents?: Maybe<
|
7186
|
+
publishContents?: Maybe<PublishContents>;
|
7187
7187
|
/** Publish conversation. */
|
7188
7188
|
publishConversation?: Maybe<Content>;
|
7189
7189
|
/** Publish text into different content format. */
|
@@ -7858,6 +7858,7 @@ export type MutationPublishContentsArgs = {
|
|
7858
7858
|
connector: ContentPublishingConnectorInput;
|
7859
7859
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7860
7860
|
filter?: InputMaybe<ContentFilter>;
|
7861
|
+
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
7861
7862
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7862
7863
|
name?: InputMaybe<Scalars['String']['input']>;
|
7863
7864
|
publishPrompt: Scalars['String']['input'];
|
@@ -9883,6 +9884,34 @@ export type PromptSummarization = {
|
|
9883
9884
|
/** The summarization type. */
|
9884
9885
|
type: SummarizationTypes;
|
9885
9886
|
};
|
9887
|
+
/** Represents a publish contents result. */
|
9888
|
+
export type PublishContents = {
|
9889
|
+
__typename?: 'PublishContents';
|
9890
|
+
/** The published content. */
|
9891
|
+
content?: Maybe<Content>;
|
9892
|
+
/** The publishing details for debugging purposes. */
|
9893
|
+
details?: Maybe<PublishingDetails>;
|
9894
|
+
};
|
9895
|
+
/** Represents the publishing details. */
|
9896
|
+
export type PublishingDetails = {
|
9897
|
+
__typename?: 'PublishingDetails';
|
9898
|
+
/** The retrieved contents. */
|
9899
|
+
contents?: Maybe<Array<Maybe<EntityReference>>>;
|
9900
|
+
/** JSON representation of the LLM publish specification. */
|
9901
|
+
publishSpecification?: Maybe<Scalars['String']['output']>;
|
9902
|
+
/** The time to publish the summaries. */
|
9903
|
+
publishTime?: Maybe<Scalars['TimeSpan']['output']>;
|
9904
|
+
/** The list of content summaries. */
|
9905
|
+
summaries?: Maybe<Array<Maybe<TextPage>>>;
|
9906
|
+
/** JSON representation of the LLM summary specification. */
|
9907
|
+
summarySpecification?: Maybe<Scalars['String']['output']>;
|
9908
|
+
/** The time to summarize the retrieved contents. */
|
9909
|
+
summaryTime?: Maybe<Scalars['TimeSpan']['output']>;
|
9910
|
+
/** The published text. */
|
9911
|
+
text?: Maybe<Scalars['String']['output']>;
|
9912
|
+
/** The published text type. */
|
9913
|
+
textType?: Maybe<TextTypes>;
|
9914
|
+
};
|
9886
9915
|
export type Query = {
|
9887
9916
|
__typename?: 'Query';
|
9888
9917
|
/** Lookup an alert given its ID. */
|
@@ -13960,55 +13989,139 @@ export type PublishContentsMutationVariables = Exact<{
|
|
13960
13989
|
export type PublishContentsMutation = {
|
13961
13990
|
__typename?: 'Mutation';
|
13962
13991
|
publishContents?: {
|
13963
|
-
__typename?: '
|
13964
|
-
|
13965
|
-
|
13966
|
-
state: EntityState;
|
13967
|
-
type?: ContentTypes | null;
|
13968
|
-
fileType?: FileTypes | null;
|
13969
|
-
mimeType?: string | null;
|
13970
|
-
uri?: any | null;
|
13971
|
-
textUri?: any | null;
|
13972
|
-
audioUri?: any | null;
|
13973
|
-
markdown?: string | null;
|
13974
|
-
collections?: Array<{
|
13975
|
-
__typename?: 'Collection';
|
13992
|
+
__typename?: 'PublishContents';
|
13993
|
+
content?: {
|
13994
|
+
__typename?: 'Content';
|
13976
13995
|
id: string;
|
13977
13996
|
name: string;
|
13978
|
-
} | null> | null;
|
13979
|
-
observations?: Array<{
|
13980
|
-
__typename?: 'Observation';
|
13981
|
-
id: string;
|
13982
|
-
type: ObservableTypes;
|
13983
|
-
relatedType?: ObservableTypes | null;
|
13984
|
-
relation?: string | null;
|
13985
13997
|
state: EntityState;
|
13986
|
-
|
13987
|
-
|
13988
|
-
|
13989
|
-
|
13990
|
-
|
13991
|
-
|
13992
|
-
|
13993
|
-
|
13994
|
-
|
13998
|
+
originalDate?: any | null;
|
13999
|
+
identifier?: string | null;
|
14000
|
+
markdown?: string | null;
|
14001
|
+
uri?: any | null;
|
14002
|
+
type?: ContentTypes | null;
|
14003
|
+
fileType?: FileTypes | null;
|
14004
|
+
mimeType?: string | null;
|
14005
|
+
format?: string | null;
|
14006
|
+
formatName?: string | null;
|
14007
|
+
fileExtension?: string | null;
|
14008
|
+
fileName?: string | null;
|
14009
|
+
fileSize?: any | null;
|
14010
|
+
masterUri?: any | null;
|
14011
|
+
imageUri?: any | null;
|
14012
|
+
textUri?: any | null;
|
14013
|
+
audioUri?: any | null;
|
14014
|
+
transcriptUri?: any | null;
|
14015
|
+
summary?: string | null;
|
14016
|
+
customSummary?: string | null;
|
14017
|
+
keywords?: Array<string> | null;
|
14018
|
+
bullets?: Array<string> | null;
|
14019
|
+
headlines?: Array<string> | null;
|
14020
|
+
posts?: Array<string> | null;
|
14021
|
+
chapters?: Array<string> | null;
|
14022
|
+
questions?: Array<string> | null;
|
14023
|
+
video?: {
|
14024
|
+
__typename?: 'VideoMetadata';
|
14025
|
+
width?: number | null;
|
14026
|
+
height?: number | null;
|
14027
|
+
duration?: any | null;
|
14028
|
+
make?: string | null;
|
14029
|
+
model?: string | null;
|
14030
|
+
software?: string | null;
|
14031
|
+
title?: string | null;
|
14032
|
+
description?: string | null;
|
14033
|
+
keywords?: Array<string | null> | null;
|
14034
|
+
author?: string | null;
|
13995
14035
|
} | null;
|
13996
|
-
|
13997
|
-
__typename?: '
|
13998
|
-
|
13999
|
-
|
14000
|
-
|
14001
|
-
|
14002
|
-
|
14003
|
-
|
14004
|
-
|
14005
|
-
|
14006
|
-
|
14007
|
-
|
14008
|
-
|
14009
|
-
|
14036
|
+
audio?: {
|
14037
|
+
__typename?: 'AudioMetadata';
|
14038
|
+
keywords?: Array<string | null> | null;
|
14039
|
+
author?: string | null;
|
14040
|
+
series?: string | null;
|
14041
|
+
episode?: string | null;
|
14042
|
+
episodeType?: string | null;
|
14043
|
+
season?: string | null;
|
14044
|
+
publisher?: string | null;
|
14045
|
+
copyright?: string | null;
|
14046
|
+
genre?: string | null;
|
14047
|
+
title?: string | null;
|
14048
|
+
description?: string | null;
|
14049
|
+
bitrate?: number | null;
|
14050
|
+
channels?: number | null;
|
14051
|
+
sampleRate?: number | null;
|
14052
|
+
bitsPerSample?: number | null;
|
14053
|
+
duration?: any | null;
|
14054
|
+
} | null;
|
14055
|
+
image?: {
|
14056
|
+
__typename?: 'ImageMetadata';
|
14057
|
+
width?: number | null;
|
14058
|
+
height?: number | null;
|
14059
|
+
resolutionX?: number | null;
|
14060
|
+
resolutionY?: number | null;
|
14061
|
+
bitsPerComponent?: number | null;
|
14062
|
+
components?: number | null;
|
14063
|
+
projectionType?: ImageProjectionTypes | null;
|
14064
|
+
orientation?: OrientationTypes | null;
|
14065
|
+
description?: string | null;
|
14066
|
+
make?: string | null;
|
14067
|
+
model?: string | null;
|
14068
|
+
software?: string | null;
|
14069
|
+
lens?: string | null;
|
14070
|
+
focalLength?: number | null;
|
14071
|
+
exposureTime?: string | null;
|
14072
|
+
fNumber?: string | null;
|
14073
|
+
iso?: string | null;
|
14074
|
+
heading?: number | null;
|
14075
|
+
pitch?: number | null;
|
14076
|
+
} | null;
|
14077
|
+
document?: {
|
14078
|
+
__typename?: 'DocumentMetadata';
|
14079
|
+
title?: string | null;
|
14080
|
+
subject?: string | null;
|
14081
|
+
summary?: string | null;
|
14082
|
+
author?: string | null;
|
14083
|
+
publisher?: string | null;
|
14084
|
+
description?: string | null;
|
14085
|
+
keywords?: Array<string | null> | null;
|
14086
|
+
pageCount?: number | null;
|
14087
|
+
worksheetCount?: number | null;
|
14088
|
+
slideCount?: number | null;
|
14089
|
+
wordCount?: number | null;
|
14090
|
+
lineCount?: number | null;
|
14091
|
+
paragraphCount?: number | null;
|
14092
|
+
isEncrypted?: boolean | null;
|
14093
|
+
hasDigitalSignature?: boolean | null;
|
14094
|
+
} | null;
|
14095
|
+
} | null;
|
14096
|
+
details?: {
|
14097
|
+
__typename?: 'PublishingDetails';
|
14098
|
+
text?: string | null;
|
14099
|
+
textType?: TextTypes | null;
|
14100
|
+
summarySpecification?: string | null;
|
14101
|
+
publishSpecification?: string | null;
|
14102
|
+
summaryTime?: any | null;
|
14103
|
+
publishTime?: any | null;
|
14104
|
+
contents?: Array<{
|
14105
|
+
__typename?: 'EntityReference';
|
14106
|
+
id: string;
|
14010
14107
|
} | null> | null;
|
14011
|
-
|
14108
|
+
summaries?: Array<{
|
14109
|
+
__typename?: 'TextPage';
|
14110
|
+
index?: number | null;
|
14111
|
+
relevance?: number | null;
|
14112
|
+
chunks?: Array<{
|
14113
|
+
__typename?: 'TextChunk';
|
14114
|
+
index?: number | null;
|
14115
|
+
pageIndex?: number | null;
|
14116
|
+
rowIndex?: number | null;
|
14117
|
+
columnIndex?: number | null;
|
14118
|
+
confidence?: number | null;
|
14119
|
+
text?: string | null;
|
14120
|
+
role?: TextRoles | null;
|
14121
|
+
relevance?: number | null;
|
14122
|
+
} | null> | null;
|
14123
|
+
} | null> | null;
|
14124
|
+
} | null;
|
14012
14125
|
} | null;
|
14013
14126
|
};
|
14014
14127
|
export type PublishTextMutationVariables = Exact<{
|
@@ -14027,51 +14140,103 @@ export type PublishTextMutation = {
|
|
14027
14140
|
id: string;
|
14028
14141
|
name: string;
|
14029
14142
|
state: EntityState;
|
14143
|
+
originalDate?: any | null;
|
14144
|
+
identifier?: string | null;
|
14145
|
+
markdown?: string | null;
|
14146
|
+
uri?: any | null;
|
14030
14147
|
type?: ContentTypes | null;
|
14031
14148
|
fileType?: FileTypes | null;
|
14032
14149
|
mimeType?: string | null;
|
14033
|
-
|
14150
|
+
format?: string | null;
|
14151
|
+
formatName?: string | null;
|
14152
|
+
fileExtension?: string | null;
|
14153
|
+
fileName?: string | null;
|
14154
|
+
fileSize?: any | null;
|
14155
|
+
masterUri?: any | null;
|
14156
|
+
imageUri?: any | null;
|
14034
14157
|
textUri?: any | null;
|
14035
14158
|
audioUri?: any | null;
|
14036
|
-
|
14037
|
-
|
14038
|
-
|
14039
|
-
|
14040
|
-
|
14041
|
-
|
14042
|
-
|
14043
|
-
|
14044
|
-
|
14045
|
-
|
14046
|
-
|
14047
|
-
|
14048
|
-
|
14049
|
-
|
14050
|
-
|
14051
|
-
|
14052
|
-
|
14053
|
-
|
14054
|
-
|
14055
|
-
|
14056
|
-
|
14057
|
-
|
14058
|
-
|
14059
|
-
|
14060
|
-
|
14061
|
-
|
14062
|
-
|
14063
|
-
|
14064
|
-
|
14065
|
-
|
14066
|
-
|
14067
|
-
|
14068
|
-
|
14069
|
-
|
14070
|
-
|
14071
|
-
|
14072
|
-
|
14073
|
-
|
14074
|
-
|
14159
|
+
transcriptUri?: any | null;
|
14160
|
+
summary?: string | null;
|
14161
|
+
customSummary?: string | null;
|
14162
|
+
keywords?: Array<string> | null;
|
14163
|
+
bullets?: Array<string> | null;
|
14164
|
+
headlines?: Array<string> | null;
|
14165
|
+
posts?: Array<string> | null;
|
14166
|
+
chapters?: Array<string> | null;
|
14167
|
+
questions?: Array<string> | null;
|
14168
|
+
video?: {
|
14169
|
+
__typename?: 'VideoMetadata';
|
14170
|
+
width?: number | null;
|
14171
|
+
height?: number | null;
|
14172
|
+
duration?: any | null;
|
14173
|
+
make?: string | null;
|
14174
|
+
model?: string | null;
|
14175
|
+
software?: string | null;
|
14176
|
+
title?: string | null;
|
14177
|
+
description?: string | null;
|
14178
|
+
keywords?: Array<string | null> | null;
|
14179
|
+
author?: string | null;
|
14180
|
+
} | null;
|
14181
|
+
audio?: {
|
14182
|
+
__typename?: 'AudioMetadata';
|
14183
|
+
keywords?: Array<string | null> | null;
|
14184
|
+
author?: string | null;
|
14185
|
+
series?: string | null;
|
14186
|
+
episode?: string | null;
|
14187
|
+
episodeType?: string | null;
|
14188
|
+
season?: string | null;
|
14189
|
+
publisher?: string | null;
|
14190
|
+
copyright?: string | null;
|
14191
|
+
genre?: string | null;
|
14192
|
+
title?: string | null;
|
14193
|
+
description?: string | null;
|
14194
|
+
bitrate?: number | null;
|
14195
|
+
channels?: number | null;
|
14196
|
+
sampleRate?: number | null;
|
14197
|
+
bitsPerSample?: number | null;
|
14198
|
+
duration?: any | null;
|
14199
|
+
} | null;
|
14200
|
+
image?: {
|
14201
|
+
__typename?: 'ImageMetadata';
|
14202
|
+
width?: number | null;
|
14203
|
+
height?: number | null;
|
14204
|
+
resolutionX?: number | null;
|
14205
|
+
resolutionY?: number | null;
|
14206
|
+
bitsPerComponent?: number | null;
|
14207
|
+
components?: number | null;
|
14208
|
+
projectionType?: ImageProjectionTypes | null;
|
14209
|
+
orientation?: OrientationTypes | null;
|
14210
|
+
description?: string | null;
|
14211
|
+
make?: string | null;
|
14212
|
+
model?: string | null;
|
14213
|
+
software?: string | null;
|
14214
|
+
lens?: string | null;
|
14215
|
+
focalLength?: number | null;
|
14216
|
+
exposureTime?: string | null;
|
14217
|
+
fNumber?: string | null;
|
14218
|
+
iso?: string | null;
|
14219
|
+
heading?: number | null;
|
14220
|
+
pitch?: number | null;
|
14221
|
+
} | null;
|
14222
|
+
document?: {
|
14223
|
+
__typename?: 'DocumentMetadata';
|
14224
|
+
title?: string | null;
|
14225
|
+
subject?: string | null;
|
14226
|
+
summary?: string | null;
|
14227
|
+
author?: string | null;
|
14228
|
+
publisher?: string | null;
|
14229
|
+
description?: string | null;
|
14230
|
+
keywords?: Array<string | null> | null;
|
14231
|
+
pageCount?: number | null;
|
14232
|
+
worksheetCount?: number | null;
|
14233
|
+
slideCount?: number | null;
|
14234
|
+
wordCount?: number | null;
|
14235
|
+
lineCount?: number | null;
|
14236
|
+
paragraphCount?: number | null;
|
14237
|
+
isEncrypted?: boolean | null;
|
14238
|
+
hasDigitalSignature?: boolean | null;
|
14239
|
+
} | null;
|
14075
14240
|
} | null;
|
14076
14241
|
};
|
14077
14242
|
export type QueryContentsQueryVariables = Exact<{
|
@@ -16784,51 +16949,103 @@ export type PublishConversationMutation = {
|
|
16784
16949
|
id: string;
|
16785
16950
|
name: string;
|
16786
16951
|
state: EntityState;
|
16952
|
+
originalDate?: any | null;
|
16953
|
+
identifier?: string | null;
|
16954
|
+
markdown?: string | null;
|
16955
|
+
uri?: any | null;
|
16787
16956
|
type?: ContentTypes | null;
|
16788
16957
|
fileType?: FileTypes | null;
|
16789
16958
|
mimeType?: string | null;
|
16790
|
-
|
16959
|
+
format?: string | null;
|
16960
|
+
formatName?: string | null;
|
16961
|
+
fileExtension?: string | null;
|
16962
|
+
fileName?: string | null;
|
16963
|
+
fileSize?: any | null;
|
16964
|
+
masterUri?: any | null;
|
16965
|
+
imageUri?: any | null;
|
16791
16966
|
textUri?: any | null;
|
16792
16967
|
audioUri?: any | null;
|
16793
|
-
|
16794
|
-
|
16795
|
-
|
16796
|
-
|
16797
|
-
|
16798
|
-
|
16799
|
-
|
16800
|
-
|
16801
|
-
|
16802
|
-
|
16803
|
-
|
16804
|
-
|
16805
|
-
|
16806
|
-
|
16807
|
-
|
16808
|
-
|
16809
|
-
|
16810
|
-
|
16811
|
-
|
16812
|
-
|
16813
|
-
|
16814
|
-
|
16815
|
-
|
16816
|
-
|
16817
|
-
|
16818
|
-
|
16819
|
-
|
16820
|
-
|
16821
|
-
|
16822
|
-
|
16823
|
-
|
16824
|
-
|
16825
|
-
|
16826
|
-
|
16827
|
-
|
16828
|
-
|
16829
|
-
|
16830
|
-
|
16831
|
-
|
16968
|
+
transcriptUri?: any | null;
|
16969
|
+
summary?: string | null;
|
16970
|
+
customSummary?: string | null;
|
16971
|
+
keywords?: Array<string> | null;
|
16972
|
+
bullets?: Array<string> | null;
|
16973
|
+
headlines?: Array<string> | null;
|
16974
|
+
posts?: Array<string> | null;
|
16975
|
+
chapters?: Array<string> | null;
|
16976
|
+
questions?: Array<string> | null;
|
16977
|
+
video?: {
|
16978
|
+
__typename?: 'VideoMetadata';
|
16979
|
+
width?: number | null;
|
16980
|
+
height?: number | null;
|
16981
|
+
duration?: any | null;
|
16982
|
+
make?: string | null;
|
16983
|
+
model?: string | null;
|
16984
|
+
software?: string | null;
|
16985
|
+
title?: string | null;
|
16986
|
+
description?: string | null;
|
16987
|
+
keywords?: Array<string | null> | null;
|
16988
|
+
author?: string | null;
|
16989
|
+
} | null;
|
16990
|
+
audio?: {
|
16991
|
+
__typename?: 'AudioMetadata';
|
16992
|
+
keywords?: Array<string | null> | null;
|
16993
|
+
author?: string | null;
|
16994
|
+
series?: string | null;
|
16995
|
+
episode?: string | null;
|
16996
|
+
episodeType?: string | null;
|
16997
|
+
season?: string | null;
|
16998
|
+
publisher?: string | null;
|
16999
|
+
copyright?: string | null;
|
17000
|
+
genre?: string | null;
|
17001
|
+
title?: string | null;
|
17002
|
+
description?: string | null;
|
17003
|
+
bitrate?: number | null;
|
17004
|
+
channels?: number | null;
|
17005
|
+
sampleRate?: number | null;
|
17006
|
+
bitsPerSample?: number | null;
|
17007
|
+
duration?: any | null;
|
17008
|
+
} | null;
|
17009
|
+
image?: {
|
17010
|
+
__typename?: 'ImageMetadata';
|
17011
|
+
width?: number | null;
|
17012
|
+
height?: number | null;
|
17013
|
+
resolutionX?: number | null;
|
17014
|
+
resolutionY?: number | null;
|
17015
|
+
bitsPerComponent?: number | null;
|
17016
|
+
components?: number | null;
|
17017
|
+
projectionType?: ImageProjectionTypes | null;
|
17018
|
+
orientation?: OrientationTypes | null;
|
17019
|
+
description?: string | null;
|
17020
|
+
make?: string | null;
|
17021
|
+
model?: string | null;
|
17022
|
+
software?: string | null;
|
17023
|
+
lens?: string | null;
|
17024
|
+
focalLength?: number | null;
|
17025
|
+
exposureTime?: string | null;
|
17026
|
+
fNumber?: string | null;
|
17027
|
+
iso?: string | null;
|
17028
|
+
heading?: number | null;
|
17029
|
+
pitch?: number | null;
|
17030
|
+
} | null;
|
17031
|
+
document?: {
|
17032
|
+
__typename?: 'DocumentMetadata';
|
17033
|
+
title?: string | null;
|
17034
|
+
subject?: string | null;
|
17035
|
+
summary?: string | null;
|
17036
|
+
author?: string | null;
|
17037
|
+
publisher?: string | null;
|
17038
|
+
description?: string | null;
|
17039
|
+
keywords?: Array<string | null> | null;
|
17040
|
+
pageCount?: number | null;
|
17041
|
+
worksheetCount?: number | null;
|
17042
|
+
slideCount?: number | null;
|
17043
|
+
wordCount?: number | null;
|
17044
|
+
lineCount?: number | null;
|
17045
|
+
paragraphCount?: number | null;
|
17046
|
+
isEncrypted?: boolean | null;
|
17047
|
+
hasDigitalSignature?: boolean | null;
|
17048
|
+
} | null;
|
16832
17049
|
} | null;
|
16833
17050
|
};
|
16834
17051
|
export type QueryConversationsQueryVariables = Exact<{
|
@@ -21343,6 +21560,7 @@ export type QueryModelsQuery = {
|
|
21343
21560
|
__typename?: 'ModelCardResults';
|
21344
21561
|
results?: Array<{
|
21345
21562
|
__typename?: 'ModelCard';
|
21563
|
+
name: string;
|
21346
21564
|
type?: ModelTypes | null;
|
21347
21565
|
serviceType?: ModelServiceTypes | null;
|
21348
21566
|
model?: string | null;
|