graphlit-client 1.0.20250613001__py3-none-any.whl → 1.0.20250615001__py3-none-any.whl
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.
- graphlit_api/get_content.py +2 -0
- graphlit_api/lookup_contents.py +2 -0
- graphlit_api/operations.py +7 -0
- graphlit_api/query_contents.py +3 -0
- {graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/RECORD +9 -9
- {graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/top_level.txt +0 -0
graphlit_api/get_content.py
CHANGED
@@ -54,6 +54,7 @@ class GetContentContent(BaseModel):
|
|
54
54
|
mime_type: Optional[str] = Field(alias="mimeType")
|
55
55
|
format: Optional[str]
|
56
56
|
format_name: Optional[str] = Field(alias="formatName")
|
57
|
+
file_extension: Optional[str] = Field(alias="fileExtension")
|
57
58
|
file_name: Optional[str] = Field(alias="fileName")
|
58
59
|
file_size: Optional[Any] = Field(alias="fileSize")
|
59
60
|
master_uri: Optional[Any] = Field(alias="masterUri")
|
@@ -69,6 +70,7 @@ class GetContentContent(BaseModel):
|
|
69
70
|
posts: Optional[List[str]]
|
70
71
|
chapters: Optional[List[str]]
|
71
72
|
questions: Optional[List[str]]
|
73
|
+
quotes: Optional[List[str]]
|
72
74
|
video: Optional["GetContentContentVideo"]
|
73
75
|
audio: Optional["GetContentContentAudio"]
|
74
76
|
image: Optional["GetContentContentImage"]
|
graphlit_api/lookup_contents.py
CHANGED
@@ -60,6 +60,7 @@ class LookupContentsLookupContentsResults(BaseModel):
|
|
60
60
|
mime_type: Optional[str] = Field(alias="mimeType")
|
61
61
|
format: Optional[str]
|
62
62
|
format_name: Optional[str] = Field(alias="formatName")
|
63
|
+
file_extension: Optional[str] = Field(alias="fileExtension")
|
63
64
|
file_name: Optional[str] = Field(alias="fileName")
|
64
65
|
file_size: Optional[Any] = Field(alias="fileSize")
|
65
66
|
master_uri: Optional[Any] = Field(alias="masterUri")
|
@@ -75,6 +76,7 @@ class LookupContentsLookupContentsResults(BaseModel):
|
|
75
76
|
posts: Optional[List[str]]
|
76
77
|
chapters: Optional[List[str]]
|
77
78
|
questions: Optional[List[str]]
|
79
|
+
quotes: Optional[List[str]]
|
78
80
|
video: Optional["LookupContentsLookupContentsResultsVideo"]
|
79
81
|
audio: Optional["LookupContentsLookupContentsResultsAudio"]
|
80
82
|
image: Optional["LookupContentsLookupContentsResultsImage"]
|
graphlit_api/operations.py
CHANGED
@@ -1314,6 +1314,7 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
1314
1314
|
mimeType
|
1315
1315
|
format
|
1316
1316
|
formatName
|
1317
|
+
fileExtension
|
1317
1318
|
fileName
|
1318
1319
|
fileSize
|
1319
1320
|
masterUri
|
@@ -1329,6 +1330,7 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
1329
1330
|
posts
|
1330
1331
|
chapters
|
1331
1332
|
questions
|
1333
|
+
quotes
|
1332
1334
|
video {
|
1333
1335
|
width
|
1334
1336
|
height
|
@@ -1992,6 +1994,7 @@ query LookupContents($ids: [ID!]!, $correlationId: String) {
|
|
1992
1994
|
mimeType
|
1993
1995
|
format
|
1994
1996
|
formatName
|
1997
|
+
fileExtension
|
1995
1998
|
fileName
|
1996
1999
|
fileSize
|
1997
2000
|
masterUri
|
@@ -2007,6 +2010,7 @@ query LookupContents($ids: [ID!]!, $correlationId: String) {
|
|
2007
2010
|
posts
|
2008
2011
|
chapters
|
2009
2012
|
questions
|
2013
|
+
quotes
|
2010
2014
|
video {
|
2011
2015
|
width
|
2012
2016
|
height
|
@@ -2509,6 +2513,9 @@ query QueryContents($filter: ContentFilter, $correlationId: String) {
|
|
2509
2513
|
type
|
2510
2514
|
fileType
|
2511
2515
|
mimeType
|
2516
|
+
format
|
2517
|
+
formatName
|
2518
|
+
fileExtension
|
2512
2519
|
fileName
|
2513
2520
|
fileSize
|
2514
2521
|
masterUri
|
graphlit_api/query_contents.py
CHANGED
@@ -48,6 +48,9 @@ class QueryContentsContentsResults(BaseModel):
|
|
48
48
|
type: Optional[ContentTypes]
|
49
49
|
file_type: Optional[FileTypes] = Field(alias="fileType")
|
50
50
|
mime_type: Optional[str] = Field(alias="mimeType")
|
51
|
+
format: Optional[str]
|
52
|
+
format_name: Optional[str] = Field(alias="formatName")
|
53
|
+
file_extension: Optional[str] = Field(alias="fileExtension")
|
51
54
|
file_name: Optional[str] = Field(alias="fileName")
|
52
55
|
file_size: Optional[Any] = Field(alias="fileSize")
|
53
56
|
master_uri: Optional[Any] = Field(alias="masterUri")
|
{graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/RECORD
RENAMED
@@ -167,7 +167,7 @@ graphlit_api/format_conversation.py,sha256=kLffSBk98V1cg4a1wWE2ODrccbrvEBNFM73vA
|
|
167
167
|
graphlit_api/get_alert.py,sha256=yw9TLx7iD4d60gaSm4typqQEHt8Y0tyb9xqg504hssQ,7193
|
168
168
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
169
169
|
graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wTk,830
|
170
|
-
graphlit_api/get_content.py,sha256=
|
170
|
+
graphlit_api/get_content.py,sha256=CxXrnK7lrWaRMgfpBf-uQ2rRWm_LCEd_pKSdmi7ca9Y,12467
|
171
171
|
graphlit_api/get_conversation.py,sha256=Ub0VtF0y0evZCGtSnHRZywuUU-CBvSJ58MpUntazOt0,17673
|
172
172
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
173
173
|
graphlit_api/get_feed.py,sha256=thNnL79fN00-hO5uJxMcDn3FYfQPuND_WsrQ4glVCkg,11843
|
@@ -205,11 +205,11 @@ graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,22
|
|
205
205
|
graphlit_api/input_types.py,sha256=MT-9BSBRriMyRd6ByVChrNrmi-ChBu1xe3FKwLUglvk,146280
|
206
206
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
207
207
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
208
|
-
graphlit_api/lookup_contents.py,sha256=
|
208
|
+
graphlit_api/lookup_contents.py,sha256=avxMUE3lBigZdBn_M9Ybz3RpmyLYiIOk4GGx50ijHgQ,14027
|
209
209
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
210
210
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
211
211
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
212
|
-
graphlit_api/operations.py,sha256=
|
212
|
+
graphlit_api/operations.py,sha256=eW_2hf76IuczWBuVJ5T29Or6LZ-Wv0VCSYgkvO3G0LM,196948
|
213
213
|
graphlit_api/prompt.py,sha256=iEyg1yUMpynb6pFxomNvxc0le_A6EvQgWgKvzLgoZyk,6179
|
214
214
|
graphlit_api/prompt_conversation.py,sha256=e91zXwLBd2MCWs86l88uX3lrzzZEmJsiJP0-485L5Qg,16410
|
215
215
|
graphlit_api/prompt_specifications.py,sha256=TxL9a7pNRGVcIBM91BczizXurRPfztW7Wk0QpNVbXvo,7066
|
@@ -219,7 +219,7 @@ graphlit_api/publish_text.py,sha256=3T3YRHpBUt2_vfQrKo7gYxcMoqiS88EJ7X7pFFgWkHI,
|
|
219
219
|
graphlit_api/query_alerts.py,sha256=S9ALc80i7d9fLnTCKb6-EDN0EkYaCje16UBjb6GSoNc,8265
|
220
220
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
221
221
|
graphlit_api/query_collections.py,sha256=f1-7pHTnkScOt2UjkC4HSe7DJe1Xiy81UypA8J3WTVY,1065
|
222
|
-
graphlit_api/query_contents.py,sha256=
|
222
|
+
graphlit_api/query_contents.py,sha256=in5j82l8v8I5hXWIabYWYHQYJ2QCtRqzqDnS5zHw9Bo,11879
|
223
223
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
224
224
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
225
225
|
graphlit_api/query_conversations.py,sha256=isz8KYWcDttjEomj8ajIJKzcsRI5Bxm354OFZEvFm-4,19791
|
@@ -307,8 +307,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
307
307
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
308
308
|
graphlit_api/upsert_workflow.py,sha256=8oAjaG884YBRsfXDhoSeWxJL0oktMQomqU7xCoXso-M,16588
|
309
309
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
310
|
-
graphlit_client-1.0.
|
311
|
-
graphlit_client-1.0.
|
312
|
-
graphlit_client-1.0.
|
313
|
-
graphlit_client-1.0.
|
314
|
-
graphlit_client-1.0.
|
310
|
+
graphlit_client-1.0.20250615001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
311
|
+
graphlit_client-1.0.20250615001.dist-info/METADATA,sha256=7-k_l5YczFuM3cw7do0EmemSJROdNQBNtxI4kzUFM54,3408
|
312
|
+
graphlit_client-1.0.20250615001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
313
|
+
graphlit_client-1.0.20250615001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
314
|
+
graphlit_client-1.0.20250615001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250613001.dist-info → graphlit_client-1.0.20250615001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|