graphlit-client 1.0.20250622003__py3-none-any.whl → 1.0.20250625001__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/__init__.py +144 -0
- graphlit_api/client.py +116 -4
- graphlit_api/enums.py +865 -826
- graphlit_api/get_content.py +62 -0
- graphlit_api/get_feed.py +28 -0
- graphlit_api/input_types.py +2821 -2673
- graphlit_api/lookup_contents.py +66 -0
- graphlit_api/operations.py +284 -4
- graphlit_api/query_box_folders.py +25 -0
- graphlit_api/query_contents.py +63 -0
- graphlit_api/query_contents_observations.py +67 -0
- graphlit_api/query_dropbox_folders.py +27 -0
- graphlit_api/query_feeds.py +28 -0
- graphlit_api/query_google_calendars.py +27 -0
- graphlit_api/query_google_drive_folders.py +29 -0
- graphlit_api/query_microsoft_calendars.py +29 -0
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/RECORD +21 -16
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryDropboxFolders(BaseModel):
|
12
|
+
dropbox_folders: Optional["QueryDropboxFoldersDropboxFolders"] = Field(
|
13
|
+
alias="dropboxFolders"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryDropboxFoldersDropboxFolders(BaseModel):
|
18
|
+
results: Optional[List[Optional["QueryDropboxFoldersDropboxFoldersResults"]]]
|
19
|
+
|
20
|
+
|
21
|
+
class QueryDropboxFoldersDropboxFoldersResults(BaseModel):
|
22
|
+
folder_name: Optional[str] = Field(alias="folderName")
|
23
|
+
folder_id: Optional[str] = Field(alias="folderId")
|
24
|
+
|
25
|
+
|
26
|
+
QueryDropboxFolders.model_rebuild()
|
27
|
+
QueryDropboxFoldersDropboxFolders.model_rebuild()
|
graphlit_api/query_feeds.py
CHANGED
@@ -44,6 +44,7 @@ class QueryFeedsFeedsResults(BaseModel):
|
|
44
44
|
site: Optional["QueryFeedsFeedsResultsSite"]
|
45
45
|
email: Optional["QueryFeedsFeedsResultsEmail"]
|
46
46
|
issue: Optional["QueryFeedsFeedsResultsIssue"]
|
47
|
+
calendar: Optional["QueryFeedsFeedsResultsCalendar"]
|
47
48
|
rss: Optional["QueryFeedsFeedsResultsRss"]
|
48
49
|
web: Optional["QueryFeedsFeedsResultsWeb"]
|
49
50
|
search: Optional["QueryFeedsFeedsResultsSearch"]
|
@@ -261,6 +262,32 @@ class QueryFeedsFeedsResultsIssueTrello(BaseModel):
|
|
261
262
|
type: TrelloTypes
|
262
263
|
|
263
264
|
|
265
|
+
class QueryFeedsFeedsResultsCalendar(BaseModel):
|
266
|
+
type: FeedServiceTypes
|
267
|
+
include_attachments: Optional[bool] = Field(alias="includeAttachments")
|
268
|
+
google: Optional["QueryFeedsFeedsResultsCalendarGoogle"]
|
269
|
+
microsoft: Optional["QueryFeedsFeedsResultsCalendarMicrosoft"]
|
270
|
+
read_limit: Optional[int] = Field(alias="readLimit")
|
271
|
+
|
272
|
+
|
273
|
+
class QueryFeedsFeedsResultsCalendarGoogle(BaseModel):
|
274
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
275
|
+
before_date: Optional[Any] = Field(alias="beforeDate")
|
276
|
+
after_date: Optional[Any] = Field(alias="afterDate")
|
277
|
+
refresh_token: str = Field(alias="refreshToken")
|
278
|
+
client_id: str = Field(alias="clientId")
|
279
|
+
client_secret: str = Field(alias="clientSecret")
|
280
|
+
|
281
|
+
|
282
|
+
class QueryFeedsFeedsResultsCalendarMicrosoft(BaseModel):
|
283
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
284
|
+
before_date: Optional[Any] = Field(alias="beforeDate")
|
285
|
+
after_date: Optional[Any] = Field(alias="afterDate")
|
286
|
+
refresh_token: str = Field(alias="refreshToken")
|
287
|
+
client_id: str = Field(alias="clientId")
|
288
|
+
client_secret: str = Field(alias="clientSecret")
|
289
|
+
|
290
|
+
|
264
291
|
class QueryFeedsFeedsResultsRss(BaseModel):
|
265
292
|
read_limit: Optional[int] = Field(alias="readLimit")
|
266
293
|
uri: Any
|
@@ -365,3 +392,4 @@ QueryFeedsFeedsResults.model_rebuild()
|
|
365
392
|
QueryFeedsFeedsResultsSite.model_rebuild()
|
366
393
|
QueryFeedsFeedsResultsEmail.model_rebuild()
|
367
394
|
QueryFeedsFeedsResultsIssue.model_rebuild()
|
395
|
+
QueryFeedsFeedsResultsCalendar.model_rebuild()
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryGoogleCalendars(BaseModel):
|
12
|
+
google_calendars: Optional["QueryGoogleCalendarsGoogleCalendars"] = Field(
|
13
|
+
alias="googleCalendars"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryGoogleCalendarsGoogleCalendars(BaseModel):
|
18
|
+
results: Optional[List[Optional["QueryGoogleCalendarsGoogleCalendarsResults"]]]
|
19
|
+
|
20
|
+
|
21
|
+
class QueryGoogleCalendarsGoogleCalendarsResults(BaseModel):
|
22
|
+
calendar_name: Optional[str] = Field(alias="calendarName")
|
23
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
24
|
+
|
25
|
+
|
26
|
+
QueryGoogleCalendars.model_rebuild()
|
27
|
+
QueryGoogleCalendarsGoogleCalendars.model_rebuild()
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryGoogleDriveFolders(BaseModel):
|
12
|
+
google_drive_folders: Optional["QueryGoogleDriveFoldersGoogleDriveFolders"] = Field(
|
13
|
+
alias="googleDriveFolders"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryGoogleDriveFoldersGoogleDriveFolders(BaseModel):
|
18
|
+
results: Optional[
|
19
|
+
List[Optional["QueryGoogleDriveFoldersGoogleDriveFoldersResults"]]
|
20
|
+
]
|
21
|
+
|
22
|
+
|
23
|
+
class QueryGoogleDriveFoldersGoogleDriveFoldersResults(BaseModel):
|
24
|
+
folder_name: Optional[str] = Field(alias="folderName")
|
25
|
+
folder_id: Optional[str] = Field(alias="folderId")
|
26
|
+
|
27
|
+
|
28
|
+
QueryGoogleDriveFolders.model_rebuild()
|
29
|
+
QueryGoogleDriveFoldersGoogleDriveFolders.model_rebuild()
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryMicrosoftCalendars(BaseModel):
|
12
|
+
microsoft_calendars: Optional["QueryMicrosoftCalendarsMicrosoftCalendars"] = Field(
|
13
|
+
alias="microsoftCalendars"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryMicrosoftCalendarsMicrosoftCalendars(BaseModel):
|
18
|
+
results: Optional[
|
19
|
+
List[Optional["QueryMicrosoftCalendarsMicrosoftCalendarsResults"]]
|
20
|
+
]
|
21
|
+
|
22
|
+
|
23
|
+
class QueryMicrosoftCalendarsMicrosoftCalendarsResults(BaseModel):
|
24
|
+
calendar_name: Optional[str] = Field(alias="calendarName")
|
25
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
26
|
+
|
27
|
+
|
28
|
+
QueryMicrosoftCalendars.model_rebuild()
|
29
|
+
QueryMicrosoftCalendarsMicrosoftCalendars.model_rebuild()
|
{graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/RECORD
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=g2znIWEb6fIwMKGm5G_BY4VHdaZi6hLO4Y6FdBjNesM,2389
|
3
|
-
graphlit_api/__init__.py,sha256=
|
3
|
+
graphlit_api/__init__.py,sha256=co2g1tU_OppQqX_1mRjo9F09jNljFZd0VcJazrb3lh4,206491
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=U2grdqvzeFMjTzM5ACTEXV2Rk-R_WAwdslzWAtZb6i8,6489
|
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/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
9
9
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
10
|
-
graphlit_api/client.py,sha256=
|
10
|
+
graphlit_api/client.py,sha256=mKUj_z1ev7oqKh-IWN00qzBASmMIEyGA9b9tg0XpPQQ,210129
|
11
11
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
12
12
|
graphlit_api/complete_conversation.py,sha256=39v86YLrm9IGQVcsRHUyxoTkiT1sNoVPQZzim5FxSZo,16844
|
13
13
|
graphlit_api/continue_conversation.py,sha256=Ba_ufN-4Ji6ZjznlilvS85xxkdV5JGpnuEQUU-qGXBk,16844
|
@@ -158,7 +158,7 @@ graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,
|
|
158
158
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
159
159
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
160
160
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
161
|
-
graphlit_api/enums.py,sha256=
|
161
|
+
graphlit_api/enums.py,sha256=rIAS5_lGs9QlxdQoHMHofzLmJ8LSF4RNziChitACtQI,29418
|
162
162
|
graphlit_api/exceptions.py,sha256=s0ECCqA83fhlv5GqIpT-fNFIZ7sRABG23Wj7DcEl4X0,2433
|
163
163
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
164
164
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
@@ -167,10 +167,10 @@ graphlit_api/format_conversation.py,sha256=5ihjhW0dyN2M6aPqwphZMneRALHSCvjWV8abJ
|
|
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=sLNFDsu139lFgk6fbhWHGLEVLHzoH_enyN2rklyHzUk,799
|
170
|
-
graphlit_api/get_content.py,sha256=
|
170
|
+
graphlit_api/get_content.py,sha256=hU7CYjTkWSOhq0mb75ZWtL6My91VbCh1pzg8P7jkJJI,14949
|
171
171
|
graphlit_api/get_conversation.py,sha256=Uct7M1EUOJQ3AuzGVj0Kt_33uF699BfeShj8TF9qq7Y,17697
|
172
172
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
173
|
-
graphlit_api/get_feed.py,sha256=
|
173
|
+
graphlit_api/get_feed.py,sha256=lzg5UmmuKCqF4UnYvZEl_OQe8FHuR2XGD03ZgPEZjes,12978
|
174
174
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
175
175
|
graphlit_api/get_medical_condition.py,sha256=XB03lU_gv20PHtkoLiCOR_6c8u3l7mS1F28SScSZwMM,711
|
176
176
|
graphlit_api/get_medical_contraindication.py,sha256=xJ-mUOGVB2BxEU-8q25JrNz8zJ-fnfbhku2Ajhih7iA,767
|
@@ -202,14 +202,14 @@ graphlit_api/ingest_memory.py,sha256=YF7sn_jvpk_iACg8encyp_gd0wrK0Om4blYzPDI-B8c
|
|
202
202
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
203
203
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
204
204
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
205
|
-
graphlit_api/input_types.py,sha256=
|
205
|
+
graphlit_api/input_types.py,sha256=01sZNbo3y7oMU7OjuFMWqCwiyE3LMzsh1WOJDt9nlwI,152578
|
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=_s9tmHSm6WNIEKQ4J2JEdSsGg30HKhf3CxoiPMwZJXk,16735
|
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=csnO3RbnzjzRxI47Uz-k1g4BRye93SytZ9zxLo6iECU,206399
|
213
213
|
graphlit_api/prompt.py,sha256=jBlM3ywGnbVPYSBHMDPAy5ZlDDtndRsHnV7twcwLX1g,6203
|
214
214
|
graphlit_api/prompt_conversation.py,sha256=JMiDfxFaixz63wXcT-h948c5x2Uc6PgB3D7wORltkhU,16458
|
215
215
|
graphlit_api/prompt_specifications.py,sha256=GFLRlyp5pISfB0PVMw3RPCwGvqkA3qI5M2NiXXu2aT0,7090
|
@@ -217,16 +217,20 @@ graphlit_api/publish_contents.py,sha256=ONCYP4c5PUX8mo6Zy2I1gwvO_kc878rcOW1tuaTC
|
|
217
217
|
graphlit_api/publish_conversation.py,sha256=Mwf8wgX-FxASN_OnQb43kKb_IAGQOWPsBxCQ1lVSNrQ,5758
|
218
218
|
graphlit_api/publish_text.py,sha256=3T3YRHpBUt2_vfQrKo7gYxcMoqiS88EJ7X7pFFgWkHI,5408
|
219
219
|
graphlit_api/query_alerts.py,sha256=S9ALc80i7d9fLnTCKb6-EDN0EkYaCje16UBjb6GSoNc,8265
|
220
|
+
graphlit_api/query_box_folders.py,sha256=NA6_GZ0HOR3jutD6VG5vMuspoIZkFWoM5x5QW6iL6jo,633
|
220
221
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
221
222
|
graphlit_api/query_collections.py,sha256=IQv3XSV7XxMyRRQUGKuIY0w5cBfYr212dHlkDGdF0Ok,891
|
222
|
-
graphlit_api/query_contents.py,sha256=
|
223
|
+
graphlit_api/query_contents.py,sha256=KYpvguxxD83QRcywaf8Prj1yBosgTkLCQd-P1ZfYJaI,12766
|
223
224
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
224
225
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
225
|
-
graphlit_api/query_contents_observations.py,sha256=
|
226
|
+
graphlit_api/query_contents_observations.py,sha256=_YlrtwSeD99c0xO3Ujwlj0mS1YX9d82rO4WcdWAFbKA,15413
|
226
227
|
graphlit_api/query_conversations.py,sha256=_uO9SRB7q7M-IlTbL_0RCk3RkHMLFPKKTEtsLaKqgu4,19815
|
227
228
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
229
|
+
graphlit_api/query_dropbox_folders.py,sha256=KQeuBCG7GBQWV6hr3vqzhDkrgfQ73LM8jU6ETAp-21c,703
|
228
230
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
229
|
-
graphlit_api/query_feeds.py,sha256=
|
231
|
+
graphlit_api/query_feeds.py,sha256=gOs9FpmmS-urVeoaYeUP1yLA6cQRMLROGDHq-tirv1A,14091
|
232
|
+
graphlit_api/query_google_calendars.py,sha256=2QdNfQE0C-Evg3ySNGA4q6QQGwj0bKUS_6URot6Qccw,725
|
233
|
+
graphlit_api/query_google_drive_folders.py,sha256=kDYZgQzvU7wgV27mbTc7v4BpSVove2bBWaoNkLKsKPI,774
|
230
234
|
graphlit_api/query_labels.py,sha256=7EPyZEAK5csU6cBoq2hVhrZY_NTHL1ZbvAQHCl19BSY,584
|
231
235
|
graphlit_api/query_linear_projects.py,sha256=JCu01TJ5RBZQ-KdJaa5AuE8bqobuZxvz2H1rQH_XrwA,429
|
232
236
|
graphlit_api/query_medical_conditions.py,sha256=_XWHs9XX3DUuYC7nUhQKlVAYufphu-ed30qvaU9nPHs,938
|
@@ -240,6 +244,7 @@ graphlit_api/query_medical_procedures.py,sha256=yq_aPDMLL-X0altHYE1RYECE-oiSXtem
|
|
240
244
|
graphlit_api/query_medical_studies.py,sha256=Og-hLJwnE4f6J8W133auPkZQQ5pi4VRsu1C1jSAJH5U,1295
|
241
245
|
graphlit_api/query_medical_tests.py,sha256=xGLKMpw7UGLu9Z4tXeOEyD5HoMFZDe6B4Y2nWUlmMTU,868
|
242
246
|
graphlit_api/query_medical_therapies.py,sha256=INgRiLdY9Y0Tx1Bqnj56SJXLLCay99hX3yfc8hZ-P80,924
|
247
|
+
graphlit_api/query_microsoft_calendars.py,sha256=aiksVMdp2l0s4hehWK8HjAvhd361Q3dKF1MRROGbA-M,781
|
243
248
|
graphlit_api/query_microsoft_teams_channels.py,sha256=1FUXTxlbVUOl_VjaJVXVHKFdseYfmnkEeXS8kJzVV74,834
|
244
249
|
graphlit_api/query_microsoft_teams_teams.py,sha256=YUfDDlz7oNN_ykHv6RPnhCFMyxsuZRQfnvXpc5_I3fo,782
|
245
250
|
graphlit_api/query_models.py,sha256=0Nlw2Od-Eg9CSM43TbyyXqJzss2YtM0qyo6n_cpwWX0,1966
|
@@ -308,8 +313,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
308
313
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
309
314
|
graphlit_api/upsert_workflow.py,sha256=8oAjaG884YBRsfXDhoSeWxJL0oktMQomqU7xCoXso-M,16588
|
310
315
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
311
|
-
graphlit_client-1.0.
|
312
|
-
graphlit_client-1.0.
|
313
|
-
graphlit_client-1.0.
|
314
|
-
graphlit_client-1.0.
|
315
|
-
graphlit_client-1.0.
|
316
|
+
graphlit_client-1.0.20250625001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
317
|
+
graphlit_client-1.0.20250625001.dist-info/METADATA,sha256=7WA6jdzrWiaT0OWlwzLb9r-N7ugM4rgfkhQ_s2ido1o,3408
|
318
|
+
graphlit_client-1.0.20250625001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
319
|
+
graphlit_client-1.0.20250625001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
320
|
+
graphlit_client-1.0.20250625001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|