graphlit-client 1.0.20260107002__py3-none-any.whl → 1.0.20260111001__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/exceptions.py +1 -3
- graphlit_api/input_types.py +2 -0
- {graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/RECORD +7 -7
- {graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/top_level.txt +0 -0
graphlit_api/exceptions.py
CHANGED
|
@@ -15,8 +15,7 @@ class GraphQLClientHttpError(GraphQLClientError):
|
|
|
15
15
|
self.response = response
|
|
16
16
|
|
|
17
17
|
def __str__(self) -> str:
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
return f"HTTP status code: {self.status_code}\n{self.response.text}"
|
|
20
19
|
|
|
21
20
|
class GraphQLClientInvalidResponseError(GraphQLClientError):
|
|
22
21
|
def __init__(self, response: httpx.Response) -> None:
|
|
@@ -25,7 +24,6 @@ class GraphQLClientInvalidResponseError(GraphQLClientError):
|
|
|
25
24
|
def __str__(self) -> str:
|
|
26
25
|
return "Invalid response format."
|
|
27
26
|
|
|
28
|
-
|
|
29
27
|
class GraphQLClientGraphQLError(GraphQLClientError):
|
|
30
28
|
def __init__(
|
|
31
29
|
self,
|
graphlit_api/input_types.py
CHANGED
|
@@ -2781,6 +2781,7 @@ class AmazonFeedPropertiesUpdateInput(BaseModel):
|
|
|
2781
2781
|
bucket_name: Optional[str] = Field(alias="bucketName", default=None)
|
|
2782
2782
|
prefix: Optional[str] = None
|
|
2783
2783
|
region: Optional[str] = None
|
|
2784
|
+
custom_endpoint: Optional[str] = Field(alias="customEndpoint", default=None)
|
|
2784
2785
|
|
|
2785
2786
|
|
|
2786
2787
|
class AzureOpenAIModelPropertiesUpdateInput(BaseModel):
|
|
@@ -4515,6 +4516,7 @@ class AmazonFeedPropertiesInput(BaseModel):
|
|
|
4515
4516
|
bucket_name: str = Field(alias="bucketName")
|
|
4516
4517
|
prefix: Optional[str] = None
|
|
4517
4518
|
region: Optional[str] = None
|
|
4519
|
+
custom_endpoint: Optional[str] = Field(alias="customEndpoint", default=None)
|
|
4518
4520
|
|
|
4519
4521
|
|
|
4520
4522
|
class AzureBlobFeedPropertiesInput(BaseModel):
|
{graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/RECORD
RENAMED
|
@@ -186,7 +186,7 @@ graphlit_api/enrich_persons.py,sha256=PzOyz744u6krplAMe7mK8UlblENXEQbtQLAJ24IRi4
|
|
|
186
186
|
graphlit_api/enrich_places.py,sha256=0yF-P8Otl-lVse3_KN15fxuGw4RkGdYvsplvKc4hLqU,402
|
|
187
187
|
graphlit_api/enrich_products.py,sha256=KiHCRKGhyfoghVp8driKwWhKa9VDzUWVkRBCuKMhRrw,418
|
|
188
188
|
graphlit_api/enums.py,sha256=GPWoYD5gQ5cyFuWdoF1y5_EP4jTxTEZr04QTcWNqijY,37512
|
|
189
|
-
graphlit_api/exceptions.py,sha256=
|
|
189
|
+
graphlit_api/exceptions.py,sha256=p3CCuIIxUdzFbJwMQ3XqQnYtQ9eH1Hi1_StoA9wk-Aw,2448
|
|
190
190
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
|
191
191
|
graphlit_api/extract_observables.py,sha256=2sUFDZdX00IzfLEMDyNHVkIbQq1pX9E2imC1KXvCmXk,5879
|
|
192
192
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
|
@@ -235,7 +235,7 @@ graphlit_api/ingest_memory.py,sha256=ukFnBZHvdT_oaM3FgM8PLqFYcC4tt26ATkQmkm8KQo8
|
|
|
235
235
|
graphlit_api/ingest_text.py,sha256=5xuXwHBc4jEQR0t-Jy3F84VHttHnQw-a30uhuEMXUec,2316
|
|
236
236
|
graphlit_api/ingest_text_batch.py,sha256=r3ZPz5gHg81v6eIEKuEZEBg_X9Cv2jaLSiz5nfaOB_A,2551
|
|
237
237
|
graphlit_api/ingest_uri.py,sha256=ufuiJ4JcVZDFhWnk6cOGVntoe6WgKTwK67RgyLYXD-U,2278
|
|
238
|
-
graphlit_api/input_types.py,sha256=
|
|
238
|
+
graphlit_api/input_types.py,sha256=q7qge8iJ4OpgXuWr5C_RJrWp3nAuNu948V8JyjpEaok,226393
|
|
239
239
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
|
240
240
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
|
241
241
|
graphlit_api/lookup_contents.py,sha256=AerwxqeexOsmTLvFiouiw0fWRYynS4qwDBYR60CXiTs,23664
|
|
@@ -399,8 +399,8 @@ graphlit_api/upsert_view.py,sha256=OChB2I0ZYW_HvJUYyKyODnWkaIut1PaSowSRqEsS0Q0,1
|
|
|
399
399
|
graphlit_api/upsert_workflow.py,sha256=u2cgDKeBLh_qCVdbRQueW4cfoqeKYzKC8sJphjeXqBc,18608
|
|
400
400
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
|
401
401
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
|
402
|
-
graphlit_client-1.0.
|
|
403
|
-
graphlit_client-1.0.
|
|
404
|
-
graphlit_client-1.0.
|
|
405
|
-
graphlit_client-1.0.
|
|
406
|
-
graphlit_client-1.0.
|
|
402
|
+
graphlit_client-1.0.20260111001.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
403
|
+
graphlit_client-1.0.20260111001.dist-info/METADATA,sha256=0csr5DEJJt07h2JeKh5ZApDUg_BFR2bJKPxJ23TeuQQ,3408
|
|
404
|
+
graphlit_client-1.0.20260111001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
405
|
+
graphlit_client-1.0.20260111001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
406
|
+
graphlit_client-1.0.20260111001.dist-info/RECORD,,
|
{graphlit_client-1.0.20260107002.dist-info → graphlit_client-1.0.20260111001.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|