graphlit-client 1.0.20250529001__py3-none-any.whl → 1.0.20250531001__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/graphlit.py +8 -1
- graphlit_api/__init__.py +26 -0
- graphlit_api/client.py +15 -0
- graphlit_api/create_user.py +1 -0
- graphlit_api/get_user.py +1 -0
- graphlit_api/get_user_by_identifier.py +105 -0
- graphlit_api/operations.py +60 -0
- graphlit_api/query_users.py +1 -0
- graphlit_api/update_user.py +1 -0
- {graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/RECORD +14 -13
- {graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/top_level.txt +0 -0
graphlit/graphlit.py
CHANGED
@@ -5,10 +5,11 @@ import httpx
|
|
5
5
|
from graphlit_api.client import Client
|
6
6
|
|
7
7
|
class Graphlit:
|
8
|
-
def __init__(self, organization_id=None, environment_id=None, jwt_secret=None, owner_id=None, api_uri=None):
|
8
|
+
def __init__(self, organization_id=None, environment_id=None, jwt_secret=None, owner_id=None, user_id=None, api_uri=None):
|
9
9
|
self.organization_id = organization_id if organization_id is not None else os.getenv("GRAPHLIT_ORGANIZATION_ID")
|
10
10
|
self.environment_id = environment_id if environment_id is not None else os.getenv("GRAPHLIT_ENVIRONMENT_ID")
|
11
11
|
self.owner_id = owner_id if owner_id is not None else os.getenv("GRAPHLIT_OWNER_ID")
|
12
|
+
self.user_id = user_id if user_id is not None else os.getenv("GRAPHLIT_USER_ID")
|
12
13
|
self.secret_key = jwt_secret if jwt_secret is not None else os.getenv("GRAPHLIT_JWT_SECRET")
|
13
14
|
self.api_uri = api_uri if api_uri is not None else "https://data-scus.graphlit.io/api/v1/graphql/"
|
14
15
|
|
@@ -42,4 +43,10 @@ class Graphlit:
|
|
42
43
|
if self.owner_id is not None:
|
43
44
|
payload["https://graphlit.io/jwt/claims"]["x-graphlit-owner-id"] = self.owner_id
|
44
45
|
|
46
|
+
if self.user_id is not None:
|
47
|
+
payload["https://graphlit.io/jwt/claims"]["x-graphlit-user-id"] = self.user_id
|
48
|
+
|
49
|
+
if self.secret_key is None:
|
50
|
+
raise ValueError("JWT secret key is required. Please provide it via jwt_secret parameter or GRAPHLIT_JWT_SECRET environment variable.")
|
51
|
+
|
45
52
|
self.token = jwt.encode(payload, self.secret_key, algorithm="HS256")
|
graphlit_api/__init__.py
CHANGED
@@ -959,6 +959,19 @@ from .get_user import (
|
|
959
959
|
GetUserUserConnectorsIntegrationTwitter,
|
960
960
|
GetUserUserOwner,
|
961
961
|
)
|
962
|
+
from .get_user_by_identifier import (
|
963
|
+
GetUserByIdentifier,
|
964
|
+
GetUserByIdentifierUserByIdentifier,
|
965
|
+
GetUserByIdentifierUserByIdentifierConnectors,
|
966
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthentication,
|
967
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle,
|
968
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft,
|
969
|
+
GetUserByIdentifierUserByIdentifierConnectorsIntegration,
|
970
|
+
GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail,
|
971
|
+
GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack,
|
972
|
+
GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter,
|
973
|
+
GetUserByIdentifierUserByIdentifierOwner,
|
974
|
+
)
|
962
975
|
from .get_workflow import (
|
963
976
|
GetWorkflow,
|
964
977
|
GetWorkflowWorkflow,
|
@@ -1594,6 +1607,7 @@ from .operations import (
|
|
1594
1607
|
GET_SHARE_POINT_CONSENT_URI_GQL,
|
1595
1608
|
GET_SOFTWARE_GQL,
|
1596
1609
|
GET_SPECIFICATION_GQL,
|
1610
|
+
GET_USER_BY_IDENTIFIER_GQL,
|
1597
1611
|
GET_USER_GQL,
|
1598
1612
|
GET_WORKFLOW_GQL,
|
1599
1613
|
INGEST_BATCH_GQL,
|
@@ -3335,6 +3349,7 @@ __all__ = [
|
|
3335
3349
|
"GET_SHARE_POINT_CONSENT_URI_GQL",
|
3336
3350
|
"GET_SOFTWARE_GQL",
|
3337
3351
|
"GET_SPECIFICATION_GQL",
|
3352
|
+
"GET_USER_BY_IDENTIFIER_GQL",
|
3338
3353
|
"GET_USER_GQL",
|
3339
3354
|
"GET_WORKFLOW_GQL",
|
3340
3355
|
"GeometryMetadataInput",
|
@@ -3594,6 +3609,17 @@ __all__ = [
|
|
3594
3609
|
"GetSpecificationSpecificationStrategy",
|
3595
3610
|
"GetSpecificationSpecificationVoyage",
|
3596
3611
|
"GetUser",
|
3612
|
+
"GetUserByIdentifier",
|
3613
|
+
"GetUserByIdentifierUserByIdentifier",
|
3614
|
+
"GetUserByIdentifierUserByIdentifierConnectors",
|
3615
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthentication",
|
3616
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle",
|
3617
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft",
|
3618
|
+
"GetUserByIdentifierUserByIdentifierConnectorsIntegration",
|
3619
|
+
"GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail",
|
3620
|
+
"GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack",
|
3621
|
+
"GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter",
|
3622
|
+
"GetUserByIdentifierUserByIdentifierOwner",
|
3597
3623
|
"GetUserUser",
|
3598
3624
|
"GetUserUserConnectors",
|
3599
3625
|
"GetUserUserConnectorsAuthentication",
|
graphlit_api/client.py
CHANGED
@@ -192,6 +192,7 @@ from .get_share_point_consent_uri import GetSharePointConsentUri
|
|
192
192
|
from .get_software import GetSoftware
|
193
193
|
from .get_specification import GetSpecification
|
194
194
|
from .get_user import GetUser
|
195
|
+
from .get_user_by_identifier import GetUserByIdentifier
|
195
196
|
from .get_workflow import GetWorkflow
|
196
197
|
from .ingest_batch import IngestBatch
|
197
198
|
from .ingest_encoded_file import IngestEncodedFile
|
@@ -501,6 +502,7 @@ from .operations import (
|
|
501
502
|
GET_SHARE_POINT_CONSENT_URI_GQL,
|
502
503
|
GET_SOFTWARE_GQL,
|
503
504
|
GET_SPECIFICATION_GQL,
|
505
|
+
GET_USER_BY_IDENTIFIER_GQL,
|
504
506
|
GET_USER_GQL,
|
505
507
|
GET_WORKFLOW_GQL,
|
506
508
|
INGEST_BATCH_GQL,
|
@@ -5467,6 +5469,19 @@ class Client(AsyncBaseClient):
|
|
5467
5469
|
data = self.get_data(response)
|
5468
5470
|
return GetUser.model_validate(data)
|
5469
5471
|
|
5472
|
+
async def get_user_by_identifier(
|
5473
|
+
self, identifier: str, **kwargs: Any
|
5474
|
+
) -> GetUserByIdentifier:
|
5475
|
+
variables: Dict[str, object] = {"identifier": identifier}
|
5476
|
+
response = await self.execute(
|
5477
|
+
query=GET_USER_BY_IDENTIFIER_GQL,
|
5478
|
+
operation_name="GetUserByIdentifier",
|
5479
|
+
variables=variables,
|
5480
|
+
**kwargs
|
5481
|
+
)
|
5482
|
+
data = self.get_data(response)
|
5483
|
+
return GetUserByIdentifier.model_validate(data)
|
5484
|
+
|
5470
5485
|
async def query_users(
|
5471
5486
|
self,
|
5472
5487
|
filter: Union[Optional[UserFilter], UnsetType] = UNSET,
|
graphlit_api/create_user.py
CHANGED
graphlit_api/get_user.py
CHANGED
@@ -0,0 +1,105 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import Any, List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
from .enums import (
|
10
|
+
AuthenticationServiceTypes,
|
11
|
+
ConnectorTypes,
|
12
|
+
EntityState,
|
13
|
+
IntegrationServiceTypes,
|
14
|
+
UserTypes,
|
15
|
+
)
|
16
|
+
|
17
|
+
|
18
|
+
class GetUserByIdentifier(BaseModel):
|
19
|
+
user_by_identifier: Optional["GetUserByIdentifierUserByIdentifier"] = Field(
|
20
|
+
alias="userByIdentifier"
|
21
|
+
)
|
22
|
+
|
23
|
+
|
24
|
+
class GetUserByIdentifierUserByIdentifier(BaseModel):
|
25
|
+
id: str
|
26
|
+
name: str
|
27
|
+
creation_date: Any = Field(alias="creationDate")
|
28
|
+
relevance: Optional[float]
|
29
|
+
owner: "GetUserByIdentifierUserByIdentifierOwner"
|
30
|
+
state: EntityState
|
31
|
+
type: Optional[UserTypes]
|
32
|
+
identifier: str
|
33
|
+
description: Optional[str]
|
34
|
+
connectors: Optional[
|
35
|
+
List[Optional["GetUserByIdentifierUserByIdentifierConnectors"]]
|
36
|
+
]
|
37
|
+
|
38
|
+
|
39
|
+
class GetUserByIdentifierUserByIdentifierOwner(BaseModel):
|
40
|
+
id: str
|
41
|
+
|
42
|
+
|
43
|
+
class GetUserByIdentifierUserByIdentifierConnectors(BaseModel):
|
44
|
+
id: str
|
45
|
+
name: str
|
46
|
+
state: EntityState
|
47
|
+
type: Optional[ConnectorTypes]
|
48
|
+
authentication: Optional[
|
49
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthentication"
|
50
|
+
]
|
51
|
+
integration: Optional["GetUserByIdentifierUserByIdentifierConnectorsIntegration"]
|
52
|
+
|
53
|
+
|
54
|
+
class GetUserByIdentifierUserByIdentifierConnectorsAuthentication(BaseModel):
|
55
|
+
type: AuthenticationServiceTypes
|
56
|
+
microsoft: Optional[
|
57
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft"
|
58
|
+
]
|
59
|
+
google: Optional[
|
60
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle"
|
61
|
+
]
|
62
|
+
|
63
|
+
|
64
|
+
class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft(BaseModel):
|
65
|
+
tenant_id: str = Field(alias="tenantId")
|
66
|
+
client_id: str = Field(alias="clientId")
|
67
|
+
client_secret: str = Field(alias="clientSecret")
|
68
|
+
|
69
|
+
|
70
|
+
class GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle(BaseModel):
|
71
|
+
client_id: str = Field(alias="clientId")
|
72
|
+
client_secret: str = Field(alias="clientSecret")
|
73
|
+
|
74
|
+
|
75
|
+
class GetUserByIdentifierUserByIdentifierConnectorsIntegration(BaseModel):
|
76
|
+
type: IntegrationServiceTypes
|
77
|
+
uri: Optional[str]
|
78
|
+
slack: Optional["GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack"]
|
79
|
+
email: Optional["GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail"]
|
80
|
+
twitter: Optional["GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter"]
|
81
|
+
|
82
|
+
|
83
|
+
class GetUserByIdentifierUserByIdentifierConnectorsIntegrationSlack(BaseModel):
|
84
|
+
token: str
|
85
|
+
channel: str
|
86
|
+
|
87
|
+
|
88
|
+
class GetUserByIdentifierUserByIdentifierConnectorsIntegrationEmail(BaseModel):
|
89
|
+
from_: str = Field(alias="from")
|
90
|
+
subject: str
|
91
|
+
to: List[str]
|
92
|
+
|
93
|
+
|
94
|
+
class GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter(BaseModel):
|
95
|
+
consumer_key: str = Field(alias="consumerKey")
|
96
|
+
consumer_secret: str = Field(alias="consumerSecret")
|
97
|
+
access_token_key: str = Field(alias="accessTokenKey")
|
98
|
+
access_token_secret: str = Field(alias="accessTokenSecret")
|
99
|
+
|
100
|
+
|
101
|
+
GetUserByIdentifier.model_rebuild()
|
102
|
+
GetUserByIdentifierUserByIdentifier.model_rebuild()
|
103
|
+
GetUserByIdentifierUserByIdentifierConnectors.model_rebuild()
|
104
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthentication.model_rebuild()
|
105
|
+
GetUserByIdentifierUserByIdentifierConnectorsIntegration.model_rebuild()
|
graphlit_api/operations.py
CHANGED
@@ -187,6 +187,7 @@ __all__ = [
|
|
187
187
|
"GET_SHARE_POINT_CONSENT_URI_GQL",
|
188
188
|
"GET_SOFTWARE_GQL",
|
189
189
|
"GET_SPECIFICATION_GQL",
|
190
|
+
"GET_USER_BY_IDENTIFIER_GQL",
|
190
191
|
"GET_USER_GQL",
|
191
192
|
"GET_WORKFLOW_GQL",
|
192
193
|
"INGEST_BATCH_GQL",
|
@@ -9036,6 +9037,7 @@ mutation CreateUser($user: UserInput!) {
|
|
9036
9037
|
name
|
9037
9038
|
state
|
9038
9039
|
type
|
9040
|
+
description
|
9039
9041
|
identifier
|
9040
9042
|
}
|
9041
9043
|
}
|
@@ -9081,6 +9083,62 @@ query GetUser {
|
|
9081
9083
|
state
|
9082
9084
|
type
|
9083
9085
|
identifier
|
9086
|
+
description
|
9087
|
+
connectors {
|
9088
|
+
id
|
9089
|
+
name
|
9090
|
+
state
|
9091
|
+
type
|
9092
|
+
authentication {
|
9093
|
+
type
|
9094
|
+
microsoft {
|
9095
|
+
tenantId
|
9096
|
+
clientId
|
9097
|
+
clientSecret
|
9098
|
+
}
|
9099
|
+
google {
|
9100
|
+
clientId
|
9101
|
+
clientSecret
|
9102
|
+
}
|
9103
|
+
}
|
9104
|
+
integration {
|
9105
|
+
type
|
9106
|
+
uri
|
9107
|
+
slack {
|
9108
|
+
token
|
9109
|
+
channel
|
9110
|
+
}
|
9111
|
+
email {
|
9112
|
+
from
|
9113
|
+
subject
|
9114
|
+
to
|
9115
|
+
}
|
9116
|
+
twitter {
|
9117
|
+
consumerKey
|
9118
|
+
consumerSecret
|
9119
|
+
accessTokenKey
|
9120
|
+
accessTokenSecret
|
9121
|
+
}
|
9122
|
+
}
|
9123
|
+
}
|
9124
|
+
}
|
9125
|
+
}
|
9126
|
+
"""
|
9127
|
+
|
9128
|
+
GET_USER_BY_IDENTIFIER_GQL = """
|
9129
|
+
query GetUserByIdentifier($identifier: String!) {
|
9130
|
+
userByIdentifier(identifier: $identifier) {
|
9131
|
+
id
|
9132
|
+
name
|
9133
|
+
creationDate
|
9134
|
+
relevance
|
9135
|
+
owner {
|
9136
|
+
id
|
9137
|
+
}
|
9138
|
+
state
|
9139
|
+
type
|
9140
|
+
identifier
|
9141
|
+
description
|
9084
9142
|
connectors {
|
9085
9143
|
id
|
9086
9144
|
name
|
@@ -9136,6 +9194,7 @@ query QueryUsers($filter: UserFilter, $correlationId: String) {
|
|
9136
9194
|
state
|
9137
9195
|
type
|
9138
9196
|
identifier
|
9197
|
+
description
|
9139
9198
|
connectors {
|
9140
9199
|
id
|
9141
9200
|
name
|
@@ -9185,6 +9244,7 @@ mutation UpdateUser($user: UserUpdateInput!) {
|
|
9185
9244
|
name
|
9186
9245
|
state
|
9187
9246
|
type
|
9247
|
+
description
|
9188
9248
|
identifier
|
9189
9249
|
}
|
9190
9250
|
}
|
graphlit_api/query_users.py
CHANGED
graphlit_api/update_user.py
CHANGED
{graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/RECORD
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
|
-
graphlit/graphlit.py,sha256=
|
3
|
-
graphlit_api/__init__.py,sha256=
|
2
|
+
graphlit/graphlit.py,sha256=g2znIWEb6fIwMKGm5G_BY4VHdaZi6hLO4Y6FdBjNesM,2389
|
3
|
+
graphlit_api/__init__.py,sha256=0DQzKk1-pzneTgV4Wo-odqZiDt0K2JhTjgfL7A8Hdn8,192500
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=vt3Q3XIqgT7GmgIPcirwhGjpEP-nowuUDU0g_1DX_Xc,6433
|
6
6
|
graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
|
7
7
|
graphlit_api/base_model.py,sha256=o2d-DixASFCGztr3rTiGX0AwgFu7Awr7EgD70FI8a-I,620
|
8
8
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
9
|
-
graphlit_api/client.py,sha256=
|
9
|
+
graphlit_api/client.py,sha256=yUTjvfw3-40GzwshzIviM9SqfOF0bP7PlWE05xRL4bI,202298
|
10
10
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
11
11
|
graphlit_api/complete_conversation.py,sha256=WpFrPXdMoA4EQiyiquIScvq5DqVqe6to2L-YhihsNkY,16732
|
12
12
|
graphlit_api/continue_conversation.py,sha256=p-bVR3QdlbQeFq2p-DpBSTwZKwpz3k2-WWJrZfoxETI,16732
|
@@ -64,7 +64,7 @@ graphlit_api/create_product.py,sha256=PLb2fXv6hQQeZZe9lvrDwgvMRqVA-fQkNEALaxUcNg
|
|
64
64
|
graphlit_api/create_repo.py,sha256=hzxh3eZLzz1Re4UzDQ2U7Fzok3v2_bub-VbhG6LJuk4,350
|
65
65
|
graphlit_api/create_software.py,sha256=Y9hvsa5XoLzkjm2e_CycKpdIV734tGC4fBHPyGpNU-g,396
|
66
66
|
graphlit_api/create_specification.py,sha256=p23AxlkOa4UJP20C1Cn3Iqi_bVYzauH7f5MxPuhXuHY,643
|
67
|
-
graphlit_api/create_user.py,sha256=
|
67
|
+
graphlit_api/create_user.py,sha256=vISVh1FwTbOBHBQkxDq4AatQFkoe6hF2GLZUyUuhNMY,496
|
68
68
|
graphlit_api/create_workflow.py,sha256=PWn_qneekouCxrDrFjxLHjMsPoobBaNMKwLMfExxAk8,15920
|
69
69
|
graphlit_api/delete_alert.py,sha256=lSFt3rOfbW-Sl9QdcvvtABwqj0e_zs48UPkXjDpfJ8Y,398
|
70
70
|
graphlit_api/delete_alerts.py,sha256=Rza3SIO0ykapJk-HZ0JMuPtlG8_KcLTAOwNJbaGCH_8,442
|
@@ -191,7 +191,8 @@ graphlit_api/get_repo.py,sha256=4ngiYmVFEeKe7zK0daSppsbvRwXlwYpbB4HMU2xsl78,578
|
|
191
191
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
192
192
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
193
193
|
graphlit_api/get_specification.py,sha256=3zQhdMJ2bDffSYC0Gc_fJ5bISyUBFI9Nf8-ExCK7W_s,10713
|
194
|
-
graphlit_api/get_user.py,sha256=
|
194
|
+
graphlit_api/get_user.py,sha256=YgE90kwTjzGWWvr4IC_qfOCS94AnsaBDDLtxh_o_6Hc,2600
|
195
|
+
graphlit_api/get_user_by_identifier.py,sha256=4ZD50nr5TYucznyz45nA2NrLB2msUvuVEsNEQRyOoLs,3318
|
195
196
|
graphlit_api/get_workflow.py,sha256=lTcpcijuvktKxJMtezdp1SUM8UKjKqmV083j_Awnvig,14688
|
196
197
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
197
198
|
graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cRW_Y3Fw,2607
|
@@ -205,7 +206,7 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
|
|
205
206
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
206
207
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
207
208
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
208
|
-
graphlit_api/operations.py,sha256=
|
209
|
+
graphlit_api/operations.py,sha256=mMlYXWq8q4CnrveYUotJT6U1LR_wFRZP53Kmi9a-wEg,189466
|
209
210
|
graphlit_api/prompt.py,sha256=OgNooYRVrNeUlQKNq_WQcM--yZWiP0e1-8joiK5cKfA,6147
|
210
211
|
graphlit_api/prompt_conversation.py,sha256=7eeFb3oAoAeBMNOZ6tEMmiWs2ReDLBCsI0iiA9wnvlA,16346
|
211
212
|
graphlit_api/prompt_specifications.py,sha256=D7YLCfYs7ZFbeqM9rc8UYHBmxDoBHR6YJjpUN32w7BY,7034
|
@@ -253,7 +254,7 @@ graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganB
|
|
253
254
|
graphlit_api/query_specifications.py,sha256=3rszim0N4hrCfr8R6GCAUySw5p4g85_dpLJtzhqBpgo,11424
|
254
255
|
graphlit_api/query_tokens.py,sha256=8lvoWuoTOGVxiJT089EgzwUt78UPc1dcvN1rMveO07M,1739
|
255
256
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
256
|
-
graphlit_api/query_users.py,sha256=
|
257
|
+
graphlit_api/query_users.py,sha256=a-rZbHe_tDFRwQ4JQ3jwzw4sDXgqF8N7OVfyhV_XUyI,2996
|
257
258
|
graphlit_api/query_workflows.py,sha256=37AeDNVHWUerX6WtB2EJm84RRWWBYC9jxO97kpwWvyM,16482
|
258
259
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
259
260
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
@@ -296,15 +297,15 @@ graphlit_api/update_project.py,sha256=9To5gF12NyrYZD5DcCyHspSdQ-Bqgo-Fs187HhFiF4
|
|
296
297
|
graphlit_api/update_repo.py,sha256=9BEt_65v0omSEwDmuspasvp45pCUHfmgq6u2OdLEycw,350
|
297
298
|
graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePymCY,396
|
298
299
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
299
|
-
graphlit_api/update_user.py,sha256=
|
300
|
+
graphlit_api/update_user.py,sha256=r7VfMw19P4u6POz4yEbcFW65-TVAjyBlB3te2_fY6I8,496
|
300
301
|
graphlit_api/update_workflow.py,sha256=7gpwSsrujMSiWM-ZDofAQQJynwI6-bDLyXBZggbjeMc,15920
|
301
302
|
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
302
303
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
303
304
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
304
305
|
graphlit_api/upsert_workflow.py,sha256=vSC6wOM7bZHF0-8AS-v-AuF8xA95Ym5w07GWH8ISpF4,15920
|
305
306
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
306
|
-
graphlit_client-1.0.
|
307
|
-
graphlit_client-1.0.
|
308
|
-
graphlit_client-1.0.
|
309
|
-
graphlit_client-1.0.
|
310
|
-
graphlit_client-1.0.
|
307
|
+
graphlit_client-1.0.20250531001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
308
|
+
graphlit_client-1.0.20250531001.dist-info/METADATA,sha256=PMjKm62OUjJTWixCkBkfZWC1XpKk9vYMszvooIWqNa4,3408
|
309
|
+
graphlit_client-1.0.20250531001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
310
|
+
graphlit_client-1.0.20250531001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
311
|
+
graphlit_client-1.0.20250531001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250529001.dist-info → graphlit_client-1.0.20250531001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|