graphlit-client 1.0.20250625001__py3-none-any.whl → 1.0.20250627002__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 +571 -0
- graphlit_api/client.py +267 -0
- graphlit_api/count_connectors.py +21 -0
- graphlit_api/count_views.py +19 -0
- graphlit_api/create_connector.py +25 -0
- graphlit_api/create_view.py +316 -0
- graphlit_api/create_workflow.py +6 -0
- graphlit_api/delete_all_views.py +23 -0
- graphlit_api/delete_connector.py +23 -0
- graphlit_api/delete_view.py +21 -0
- graphlit_api/delete_views.py +23 -0
- graphlit_api/enums.py +46 -0
- graphlit_api/get_connector.py +88 -0
- graphlit_api/get_feed.py +32 -1
- graphlit_api/get_user.py +5 -0
- graphlit_api/get_user_by_identifier.py +7 -0
- graphlit_api/get_view.py +321 -0
- graphlit_api/get_workflow.py +6 -0
- graphlit_api/input_types.py +143 -21
- graphlit_api/operations.py +970 -0
- graphlit_api/query_connectors.py +93 -0
- graphlit_api/query_feeds.py +32 -1
- graphlit_api/query_users.py +5 -0
- graphlit_api/query_views.py +330 -0
- graphlit_api/query_workflows.py +6 -0
- graphlit_api/update_connector.py +25 -0
- graphlit_api/update_view.py +316 -0
- graphlit_api/update_workflow.py +6 -0
- graphlit_api/upsert_workflow.py +6 -0
- graphlit_api/view_exists.py +19 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/RECORD +35 -20
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,316 @@
|
|
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 ContentTypes, EntityState, FileTypes, ObservableTypes, ViewTypes
|
10
|
+
|
11
|
+
|
12
|
+
class UpdateView(BaseModel):
|
13
|
+
update_view: Optional["UpdateViewUpdateView"] = Field(alias="updateView")
|
14
|
+
|
15
|
+
|
16
|
+
class UpdateViewUpdateView(BaseModel):
|
17
|
+
id: str
|
18
|
+
name: str
|
19
|
+
state: EntityState
|
20
|
+
type: Optional[ViewTypes]
|
21
|
+
filter: Optional["UpdateViewUpdateViewFilter"]
|
22
|
+
augmented_filter: Optional["UpdateViewUpdateViewAugmentedFilter"] = Field(
|
23
|
+
alias="augmentedFilter"
|
24
|
+
)
|
25
|
+
|
26
|
+
|
27
|
+
class UpdateViewUpdateViewFilter(BaseModel):
|
28
|
+
date_range: Optional["UpdateViewUpdateViewFilterDateRange"] = Field(
|
29
|
+
alias="dateRange"
|
30
|
+
)
|
31
|
+
in_last: Optional[Any] = Field(alias="inLast")
|
32
|
+
creation_date_range: Optional["UpdateViewUpdateViewFilterCreationDateRange"] = (
|
33
|
+
Field(alias="creationDateRange")
|
34
|
+
)
|
35
|
+
created_in_last: Optional[Any] = Field(alias="createdInLast")
|
36
|
+
types: Optional[List[ContentTypes]]
|
37
|
+
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
38
|
+
formats: Optional[List[Optional[str]]]
|
39
|
+
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
40
|
+
similar_contents: Optional[List["UpdateViewUpdateViewFilterSimilarContents"]] = (
|
41
|
+
Field(alias="similarContents")
|
42
|
+
)
|
43
|
+
contents: Optional[List["UpdateViewUpdateViewFilterContents"]]
|
44
|
+
feeds: Optional[List["UpdateViewUpdateViewFilterFeeds"]]
|
45
|
+
workflows: Optional[List["UpdateViewUpdateViewFilterWorkflows"]]
|
46
|
+
collections: Optional[List["UpdateViewUpdateViewFilterCollections"]]
|
47
|
+
users: Optional[List["UpdateViewUpdateViewFilterUsers"]]
|
48
|
+
observations: Optional[List["UpdateViewUpdateViewFilterObservations"]]
|
49
|
+
or_: Optional[List["UpdateViewUpdateViewFilterOr"]] = Field(alias="or")
|
50
|
+
and_: Optional[List["UpdateViewUpdateViewFilterAnd"]] = Field(alias="and")
|
51
|
+
|
52
|
+
|
53
|
+
class UpdateViewUpdateViewFilterDateRange(BaseModel):
|
54
|
+
from_: Optional[Any] = Field(alias="from")
|
55
|
+
to: Optional[Any]
|
56
|
+
|
57
|
+
|
58
|
+
class UpdateViewUpdateViewFilterCreationDateRange(BaseModel):
|
59
|
+
from_: Optional[Any] = Field(alias="from")
|
60
|
+
to: Optional[Any]
|
61
|
+
|
62
|
+
|
63
|
+
class UpdateViewUpdateViewFilterSimilarContents(BaseModel):
|
64
|
+
id: str
|
65
|
+
|
66
|
+
|
67
|
+
class UpdateViewUpdateViewFilterContents(BaseModel):
|
68
|
+
id: str
|
69
|
+
|
70
|
+
|
71
|
+
class UpdateViewUpdateViewFilterFeeds(BaseModel):
|
72
|
+
id: str
|
73
|
+
|
74
|
+
|
75
|
+
class UpdateViewUpdateViewFilterWorkflows(BaseModel):
|
76
|
+
id: str
|
77
|
+
|
78
|
+
|
79
|
+
class UpdateViewUpdateViewFilterCollections(BaseModel):
|
80
|
+
id: str
|
81
|
+
|
82
|
+
|
83
|
+
class UpdateViewUpdateViewFilterUsers(BaseModel):
|
84
|
+
id: str
|
85
|
+
|
86
|
+
|
87
|
+
class UpdateViewUpdateViewFilterObservations(BaseModel):
|
88
|
+
type: ObservableTypes
|
89
|
+
observable: "UpdateViewUpdateViewFilterObservationsObservable"
|
90
|
+
states: Optional[List[Optional[EntityState]]]
|
91
|
+
|
92
|
+
|
93
|
+
class UpdateViewUpdateViewFilterObservationsObservable(BaseModel):
|
94
|
+
id: str
|
95
|
+
|
96
|
+
|
97
|
+
class UpdateViewUpdateViewFilterOr(BaseModel):
|
98
|
+
feeds: Optional[List["UpdateViewUpdateViewFilterOrFeeds"]]
|
99
|
+
workflows: Optional[List["UpdateViewUpdateViewFilterOrWorkflows"]]
|
100
|
+
collections: Optional[List["UpdateViewUpdateViewFilterOrCollections"]]
|
101
|
+
users: Optional[List["UpdateViewUpdateViewFilterOrUsers"]]
|
102
|
+
observations: Optional[List["UpdateViewUpdateViewFilterOrObservations"]]
|
103
|
+
|
104
|
+
|
105
|
+
class UpdateViewUpdateViewFilterOrFeeds(BaseModel):
|
106
|
+
id: str
|
107
|
+
|
108
|
+
|
109
|
+
class UpdateViewUpdateViewFilterOrWorkflows(BaseModel):
|
110
|
+
id: str
|
111
|
+
|
112
|
+
|
113
|
+
class UpdateViewUpdateViewFilterOrCollections(BaseModel):
|
114
|
+
id: str
|
115
|
+
|
116
|
+
|
117
|
+
class UpdateViewUpdateViewFilterOrUsers(BaseModel):
|
118
|
+
id: str
|
119
|
+
|
120
|
+
|
121
|
+
class UpdateViewUpdateViewFilterOrObservations(BaseModel):
|
122
|
+
type: ObservableTypes
|
123
|
+
observable: "UpdateViewUpdateViewFilterOrObservationsObservable"
|
124
|
+
states: Optional[List[Optional[EntityState]]]
|
125
|
+
|
126
|
+
|
127
|
+
class UpdateViewUpdateViewFilterOrObservationsObservable(BaseModel):
|
128
|
+
id: str
|
129
|
+
|
130
|
+
|
131
|
+
class UpdateViewUpdateViewFilterAnd(BaseModel):
|
132
|
+
feeds: Optional[List["UpdateViewUpdateViewFilterAndFeeds"]]
|
133
|
+
workflows: Optional[List["UpdateViewUpdateViewFilterAndWorkflows"]]
|
134
|
+
collections: Optional[List["UpdateViewUpdateViewFilterAndCollections"]]
|
135
|
+
users: Optional[List["UpdateViewUpdateViewFilterAndUsers"]]
|
136
|
+
observations: Optional[List["UpdateViewUpdateViewFilterAndObservations"]]
|
137
|
+
|
138
|
+
|
139
|
+
class UpdateViewUpdateViewFilterAndFeeds(BaseModel):
|
140
|
+
id: str
|
141
|
+
|
142
|
+
|
143
|
+
class UpdateViewUpdateViewFilterAndWorkflows(BaseModel):
|
144
|
+
id: str
|
145
|
+
|
146
|
+
|
147
|
+
class UpdateViewUpdateViewFilterAndCollections(BaseModel):
|
148
|
+
id: str
|
149
|
+
|
150
|
+
|
151
|
+
class UpdateViewUpdateViewFilterAndUsers(BaseModel):
|
152
|
+
id: str
|
153
|
+
|
154
|
+
|
155
|
+
class UpdateViewUpdateViewFilterAndObservations(BaseModel):
|
156
|
+
type: ObservableTypes
|
157
|
+
observable: "UpdateViewUpdateViewFilterAndObservationsObservable"
|
158
|
+
states: Optional[List[Optional[EntityState]]]
|
159
|
+
|
160
|
+
|
161
|
+
class UpdateViewUpdateViewFilterAndObservationsObservable(BaseModel):
|
162
|
+
id: str
|
163
|
+
|
164
|
+
|
165
|
+
class UpdateViewUpdateViewAugmentedFilter(BaseModel):
|
166
|
+
date_range: Optional["UpdateViewUpdateViewAugmentedFilterDateRange"] = Field(
|
167
|
+
alias="dateRange"
|
168
|
+
)
|
169
|
+
in_last: Optional[Any] = Field(alias="inLast")
|
170
|
+
creation_date_range: Optional[
|
171
|
+
"UpdateViewUpdateViewAugmentedFilterCreationDateRange"
|
172
|
+
] = Field(alias="creationDateRange")
|
173
|
+
created_in_last: Optional[Any] = Field(alias="createdInLast")
|
174
|
+
types: Optional[List[ContentTypes]]
|
175
|
+
file_types: Optional[List[Optional[FileTypes]]] = Field(alias="fileTypes")
|
176
|
+
formats: Optional[List[Optional[str]]]
|
177
|
+
file_extensions: Optional[List[str]] = Field(alias="fileExtensions")
|
178
|
+
similar_contents: Optional[
|
179
|
+
List["UpdateViewUpdateViewAugmentedFilterSimilarContents"]
|
180
|
+
] = Field(alias="similarContents")
|
181
|
+
contents: Optional[List["UpdateViewUpdateViewAugmentedFilterContents"]]
|
182
|
+
feeds: Optional[List["UpdateViewUpdateViewAugmentedFilterFeeds"]]
|
183
|
+
workflows: Optional[List["UpdateViewUpdateViewAugmentedFilterWorkflows"]]
|
184
|
+
collections: Optional[List["UpdateViewUpdateViewAugmentedFilterCollections"]]
|
185
|
+
users: Optional[List["UpdateViewUpdateViewAugmentedFilterUsers"]]
|
186
|
+
observations: Optional[List["UpdateViewUpdateViewAugmentedFilterObservations"]]
|
187
|
+
or_: Optional[List["UpdateViewUpdateViewAugmentedFilterOr"]] = Field(alias="or")
|
188
|
+
and_: Optional[List["UpdateViewUpdateViewAugmentedFilterAnd"]] = Field(alias="and")
|
189
|
+
|
190
|
+
|
191
|
+
class UpdateViewUpdateViewAugmentedFilterDateRange(BaseModel):
|
192
|
+
from_: Optional[Any] = Field(alias="from")
|
193
|
+
to: Optional[Any]
|
194
|
+
|
195
|
+
|
196
|
+
class UpdateViewUpdateViewAugmentedFilterCreationDateRange(BaseModel):
|
197
|
+
from_: Optional[Any] = Field(alias="from")
|
198
|
+
to: Optional[Any]
|
199
|
+
|
200
|
+
|
201
|
+
class UpdateViewUpdateViewAugmentedFilterSimilarContents(BaseModel):
|
202
|
+
id: str
|
203
|
+
|
204
|
+
|
205
|
+
class UpdateViewUpdateViewAugmentedFilterContents(BaseModel):
|
206
|
+
id: str
|
207
|
+
|
208
|
+
|
209
|
+
class UpdateViewUpdateViewAugmentedFilterFeeds(BaseModel):
|
210
|
+
id: str
|
211
|
+
|
212
|
+
|
213
|
+
class UpdateViewUpdateViewAugmentedFilterWorkflows(BaseModel):
|
214
|
+
id: str
|
215
|
+
|
216
|
+
|
217
|
+
class UpdateViewUpdateViewAugmentedFilterCollections(BaseModel):
|
218
|
+
id: str
|
219
|
+
|
220
|
+
|
221
|
+
class UpdateViewUpdateViewAugmentedFilterUsers(BaseModel):
|
222
|
+
id: str
|
223
|
+
|
224
|
+
|
225
|
+
class UpdateViewUpdateViewAugmentedFilterObservations(BaseModel):
|
226
|
+
type: ObservableTypes
|
227
|
+
observable: "UpdateViewUpdateViewAugmentedFilterObservationsObservable"
|
228
|
+
states: Optional[List[Optional[EntityState]]]
|
229
|
+
|
230
|
+
|
231
|
+
class UpdateViewUpdateViewAugmentedFilterObservationsObservable(BaseModel):
|
232
|
+
id: str
|
233
|
+
|
234
|
+
|
235
|
+
class UpdateViewUpdateViewAugmentedFilterOr(BaseModel):
|
236
|
+
feeds: Optional[List["UpdateViewUpdateViewAugmentedFilterOrFeeds"]]
|
237
|
+
workflows: Optional[List["UpdateViewUpdateViewAugmentedFilterOrWorkflows"]]
|
238
|
+
collections: Optional[List["UpdateViewUpdateViewAugmentedFilterOrCollections"]]
|
239
|
+
users: Optional[List["UpdateViewUpdateViewAugmentedFilterOrUsers"]]
|
240
|
+
observations: Optional[List["UpdateViewUpdateViewAugmentedFilterOrObservations"]]
|
241
|
+
|
242
|
+
|
243
|
+
class UpdateViewUpdateViewAugmentedFilterOrFeeds(BaseModel):
|
244
|
+
id: str
|
245
|
+
|
246
|
+
|
247
|
+
class UpdateViewUpdateViewAugmentedFilterOrWorkflows(BaseModel):
|
248
|
+
id: str
|
249
|
+
|
250
|
+
|
251
|
+
class UpdateViewUpdateViewAugmentedFilterOrCollections(BaseModel):
|
252
|
+
id: str
|
253
|
+
|
254
|
+
|
255
|
+
class UpdateViewUpdateViewAugmentedFilterOrUsers(BaseModel):
|
256
|
+
id: str
|
257
|
+
|
258
|
+
|
259
|
+
class UpdateViewUpdateViewAugmentedFilterOrObservations(BaseModel):
|
260
|
+
type: ObservableTypes
|
261
|
+
observable: "UpdateViewUpdateViewAugmentedFilterOrObservationsObservable"
|
262
|
+
states: Optional[List[Optional[EntityState]]]
|
263
|
+
|
264
|
+
|
265
|
+
class UpdateViewUpdateViewAugmentedFilterOrObservationsObservable(BaseModel):
|
266
|
+
id: str
|
267
|
+
|
268
|
+
|
269
|
+
class UpdateViewUpdateViewAugmentedFilterAnd(BaseModel):
|
270
|
+
feeds: Optional[List["UpdateViewUpdateViewAugmentedFilterAndFeeds"]]
|
271
|
+
workflows: Optional[List["UpdateViewUpdateViewAugmentedFilterAndWorkflows"]]
|
272
|
+
collections: Optional[List["UpdateViewUpdateViewAugmentedFilterAndCollections"]]
|
273
|
+
users: Optional[List["UpdateViewUpdateViewAugmentedFilterAndUsers"]]
|
274
|
+
observations: Optional[List["UpdateViewUpdateViewAugmentedFilterAndObservations"]]
|
275
|
+
|
276
|
+
|
277
|
+
class UpdateViewUpdateViewAugmentedFilterAndFeeds(BaseModel):
|
278
|
+
id: str
|
279
|
+
|
280
|
+
|
281
|
+
class UpdateViewUpdateViewAugmentedFilterAndWorkflows(BaseModel):
|
282
|
+
id: str
|
283
|
+
|
284
|
+
|
285
|
+
class UpdateViewUpdateViewAugmentedFilterAndCollections(BaseModel):
|
286
|
+
id: str
|
287
|
+
|
288
|
+
|
289
|
+
class UpdateViewUpdateViewAugmentedFilterAndUsers(BaseModel):
|
290
|
+
id: str
|
291
|
+
|
292
|
+
|
293
|
+
class UpdateViewUpdateViewAugmentedFilterAndObservations(BaseModel):
|
294
|
+
type: ObservableTypes
|
295
|
+
observable: "UpdateViewUpdateViewAugmentedFilterAndObservationsObservable"
|
296
|
+
states: Optional[List[Optional[EntityState]]]
|
297
|
+
|
298
|
+
|
299
|
+
class UpdateViewUpdateViewAugmentedFilterAndObservationsObservable(BaseModel):
|
300
|
+
id: str
|
301
|
+
|
302
|
+
|
303
|
+
UpdateView.model_rebuild()
|
304
|
+
UpdateViewUpdateView.model_rebuild()
|
305
|
+
UpdateViewUpdateViewFilter.model_rebuild()
|
306
|
+
UpdateViewUpdateViewFilterObservations.model_rebuild()
|
307
|
+
UpdateViewUpdateViewFilterOr.model_rebuild()
|
308
|
+
UpdateViewUpdateViewFilterOrObservations.model_rebuild()
|
309
|
+
UpdateViewUpdateViewFilterAnd.model_rebuild()
|
310
|
+
UpdateViewUpdateViewFilterAndObservations.model_rebuild()
|
311
|
+
UpdateViewUpdateViewAugmentedFilter.model_rebuild()
|
312
|
+
UpdateViewUpdateViewAugmentedFilterObservations.model_rebuild()
|
313
|
+
UpdateViewUpdateViewAugmentedFilterOr.model_rebuild()
|
314
|
+
UpdateViewUpdateViewAugmentedFilterOrObservations.model_rebuild()
|
315
|
+
UpdateViewUpdateViewAugmentedFilterAnd.model_rebuild()
|
316
|
+
UpdateViewUpdateViewAugmentedFilterAndObservations.model_rebuild()
|
graphlit_api/update_workflow.py
CHANGED
@@ -342,6 +342,12 @@ class UpdateWorkflowUpdateWorkflowEnrichmentLink(BaseModel):
|
|
342
342
|
excluded_links: Optional[List[LinkTypes]] = Field(alias="excludedLinks")
|
343
343
|
allowed_files: Optional[List[FileTypes]] = Field(alias="allowedFiles")
|
344
344
|
excluded_files: Optional[List[FileTypes]] = Field(alias="excludedFiles")
|
345
|
+
allowed_content_types: Optional[List[ContentTypes]] = Field(
|
346
|
+
alias="allowedContentTypes"
|
347
|
+
)
|
348
|
+
excluded_content_types: Optional[List[ContentTypes]] = Field(
|
349
|
+
alias="excludedContentTypes"
|
350
|
+
)
|
345
351
|
allow_content_domain: Optional[bool] = Field(alias="allowContentDomain")
|
346
352
|
maximum_links: Optional[int] = Field(alias="maximumLinks")
|
347
353
|
|
graphlit_api/upsert_workflow.py
CHANGED
@@ -342,6 +342,12 @@ class UpsertWorkflowUpsertWorkflowEnrichmentLink(BaseModel):
|
|
342
342
|
excluded_links: Optional[List[LinkTypes]] = Field(alias="excludedLinks")
|
343
343
|
allowed_files: Optional[List[FileTypes]] = Field(alias="allowedFiles")
|
344
344
|
excluded_files: Optional[List[FileTypes]] = Field(alias="excludedFiles")
|
345
|
+
allowed_content_types: Optional[List[ContentTypes]] = Field(
|
346
|
+
alias="allowedContentTypes"
|
347
|
+
)
|
348
|
+
excluded_content_types: Optional[List[ContentTypes]] = Field(
|
349
|
+
alias="excludedContentTypes"
|
350
|
+
)
|
345
351
|
allow_content_domain: Optional[bool] = Field(alias="allowContentDomain")
|
346
352
|
maximum_links: Optional[int] = Field(alias="maximumLinks")
|
347
353
|
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class ViewExists(BaseModel):
|
12
|
+
view_exists: Optional["ViewExistsViewExists"] = Field(alias="viewExists")
|
13
|
+
|
14
|
+
|
15
|
+
class ViewExistsViewExists(BaseModel):
|
16
|
+
result: Optional[bool]
|
17
|
+
|
18
|
+
|
19
|
+
ViewExists.model_rebuild()
|
{graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/RECORD
RENAMED
@@ -1,19 +1,20 @@
|
|
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=xAZqDQS2xgG4i82ldRwhwdQRPC4ZlkN5QwTExPKeT3Y,230979
|
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=obbaeXykXw7rJ_OxvlChK0z2YHKrjM3viGK1pTJ6VSU,219059
|
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
|
14
14
|
graphlit_api/count_alerts.py,sha256=R6mmFn817MueYWqkFmB_MaySOmhcpxZlFJ5o_b6WWB8,362
|
15
15
|
graphlit_api/count_categories.py,sha256=udhYJ_yaVuI40ytTDA0llezpPocsNB_8Apdz3MDS7pg,408
|
16
16
|
graphlit_api/count_collections.py,sha256=lIeJ8nr5Ou0T2QPHKLIm2sdvpYjIBZGK9_Rcbu1a6zA,416
|
17
|
+
graphlit_api/count_connectors.py,sha256=1JhOT2aEmDeKOFWUud6cX_XsbjEKQHW5OmVkdL3Gahg,408
|
17
18
|
graphlit_api/count_contents.py,sha256=6Lp7LPHMrjWdrF54NcQIHFEcykEJf0HUAs1r-HQwiK8,392
|
18
19
|
graphlit_api/count_conversations.py,sha256=g1aLqrRl5jRGTJu81VDV_Iyc2JioExXzxaH41QX0Otc,432
|
19
20
|
graphlit_api/count_events.py,sha256=TQHHQCMdqs_Se8aWbemu3z7cg-XEdYtkZc6F7zo4abg,362
|
@@ -38,10 +39,12 @@ graphlit_api/count_repos.py,sha256=YxloBp98hyU6MJ2fH0Ps7HGaLFPqfFgo9lys6KIUOBk,3
|
|
38
39
|
graphlit_api/count_softwares.py,sha256=u4fw0uzGchl4bl-1Ncwwbxglc2Ci_T-KkhR3ncE-zD4,400
|
39
40
|
graphlit_api/count_specifications.py,sha256=go1b1B1CHdSy5cFxh_PJWZkwBCtu9g3VyWC585R0X30,440
|
40
41
|
graphlit_api/count_users.py,sha256=2dtZGsjEkosAigVGg2rKyJnunSc-gIpd23CJDJgS1OA,354
|
42
|
+
graphlit_api/count_views.py,sha256=bz-ctLOfQdRRUQ0_mmQIBcQ53jNM2D_-Wxkjcp-XhZc,354
|
41
43
|
graphlit_api/count_workflows.py,sha256=9dr4-2uxY2uMfp9nBIIs38x1xTlLO8H-SEnWDK3lUd4,400
|
42
44
|
graphlit_api/create_alert.py,sha256=kk2TuQCU64aO44ltEt1Zi31QlHKx8sl7ouFeavyJ6dM,445
|
43
45
|
graphlit_api/create_category.py,sha256=JCEqDwZg1Ph0rlsYUrh5Eb8Go9sVgffEQb6s6kcyUf8,396
|
44
46
|
graphlit_api/create_collection.py,sha256=-23j6UUBzFmhnCZEfy8QeFg9sumUhEOAOiTKilizLZE,519
|
47
|
+
graphlit_api/create_connector.py,sha256=cEG1tEIir1MgnoL3PMUh3t9miPoFjTPLdJntY2npuRk,509
|
45
48
|
graphlit_api/create_conversation.py,sha256=B59nXrJjqmfPwXcb-cyn7XVjsi2IwDpLNwvIO7mEoXg,539
|
46
49
|
graphlit_api/create_event.py,sha256=_i-EkN6mbdUcXixODGA-R5infEloj9Z4riVatqN6rBg,358
|
47
50
|
graphlit_api/create_feed.py,sha256=7M2a9NYbko_GM-aTGWKXBNP59Tw1NIPDuCbM27ZIej0,435
|
@@ -66,7 +69,8 @@ graphlit_api/create_repo.py,sha256=hzxh3eZLzz1Re4UzDQ2U7Fzok3v2_bub-VbhG6LJuk4,3
|
|
66
69
|
graphlit_api/create_software.py,sha256=Y9hvsa5XoLzkjm2e_CycKpdIV734tGC4fBHPyGpNU-g,396
|
67
70
|
graphlit_api/create_specification.py,sha256=p23AxlkOa4UJP20C1Cn3Iqi_bVYzauH7f5MxPuhXuHY,643
|
68
71
|
graphlit_api/create_user.py,sha256=vISVh1FwTbOBHBQkxDq4AatQFkoe6hF2GLZUyUuhNMY,496
|
69
|
-
graphlit_api/
|
72
|
+
graphlit_api/create_view.py,sha256=MVLUnH4iksBRL0sWJmrg2XEBZ5BdT8AsdvGXyhPxgt8,10224
|
73
|
+
graphlit_api/create_workflow.py,sha256=JVd5ID6DoFViUwfMqF89uGGlTnx33xFIDaU9EwsmfE4,16804
|
70
74
|
graphlit_api/delete_alert.py,sha256=lSFt3rOfbW-Sl9QdcvvtABwqj0e_zs48UPkXjDpfJ8Y,398
|
71
75
|
graphlit_api/delete_alerts.py,sha256=Rza3SIO0ykapJk-HZ0JMuPtlG8_KcLTAOwNJbaGCH_8,442
|
72
76
|
graphlit_api/delete_all_alerts.py,sha256=O-bKV3mKWEPddj3yLBTpoiquj_1kK1Oqr0iGpJuobns,469
|
@@ -95,11 +99,13 @@ graphlit_api/delete_all_products.py,sha256=A2qRbnffYYEMCUQduaXxAIwDcWx22z7rDGE7T
|
|
95
99
|
graphlit_api/delete_all_repos.py,sha256=_p6kVnTjYpfCpzGrvEMR9Y8SChLrfWhTuDZNVwajclQ,459
|
96
100
|
graphlit_api/delete_all_softwares.py,sha256=G_HayzezkSiIi3iedLQ2H3ZSV4Z8SFsuzgIF6qDfAAg,491
|
97
101
|
graphlit_api/delete_all_specifications.py,sha256=h8xNxH1trSA5hOU7PpaX2aoyx9jCuO43tHWzCRY_G4Y,531
|
102
|
+
graphlit_api/delete_all_views.py,sha256=CxzqV8RDwZC5euk6NbnNzn5lzK2I6kdw0MTk8gaB4fc,459
|
98
103
|
graphlit_api/delete_all_workflows.py,sha256=1W_ofIlRSAt7_4XIWNJCegdPSXDIqBkzyepJKdFBji8,491
|
99
104
|
graphlit_api/delete_categories.py,sha256=BieY7zDWsXKTsYv2c_fLtEkXbzTFsJ3AFJV-FKdwk2o,476
|
100
105
|
graphlit_api/delete_category.py,sha256=HUvroX0LWXLAHEJ7TBEprjbUsJ3zQzkKIEM8KhuaGcY,436
|
101
106
|
graphlit_api/delete_collection.py,sha256=hp4zBuoUpk43_2RWhcObiBcuF0_SZ3InmYzaVdSPfaU,452
|
102
107
|
graphlit_api/delete_collections.py,sha256=DmLsWCx8adnlCxghgKCuCX-fvw6EXKzwSZA_rSkoOYM,482
|
108
|
+
graphlit_api/delete_connector.py,sha256=OXvptvtPo7amCbMVVFYIEW3FkxZXzaMcEB6YsetaspE,444
|
103
109
|
graphlit_api/delete_content.py,sha256=uvjgKwx8hYlMxAhLbQmUtHXFRXVdqYiEXZTcPnQlFoI,428
|
104
110
|
graphlit_api/delete_contents.py,sha256=Hsxnbwcn7HKf-l1j21lWiJUKneh96_lZFrUAcE8kAso,458
|
105
111
|
graphlit_api/delete_conversation.py,sha256=rBYfH_DYJ5Wl_E7btP-V_7Eixh4m4o38N3ARNthLyJc,468
|
@@ -148,6 +154,8 @@ graphlit_api/delete_softwares.py,sha256=Jnf4KuEf_GrMnc9Ho00-eHH0i7bCpIUoLern1573
|
|
148
154
|
graphlit_api/delete_specification.py,sha256=N1xmncFTKoznDEBcqD2BbiRSpf-4tCqhT-hNXKlpsUQ,476
|
149
155
|
graphlit_api/delete_specifications.py,sha256=AR9Ipo0_tNwnAUb2PSbpt3Mmzi-U_nZ345ZWI5mdJbY,506
|
150
156
|
graphlit_api/delete_user.py,sha256=ACVimDvC5JV4I8r9EsoKBTcW28DL4WYKnRIzCkz5KRo,390
|
157
|
+
graphlit_api/delete_view.py,sha256=e-H_mzuvFpKXd_dfz3jt5dZQkoq3EqGJUSG7qwtY_uU,390
|
158
|
+
graphlit_api/delete_views.py,sha256=Ke6ECN5zLz1lg5l0HCmmXAfPF0G-wqX9SQsqeJjzPss,434
|
151
159
|
graphlit_api/delete_workflow.py,sha256=8En1P3HYHc9h5PSZumSFQyLITlxGejgpB4pnlZ9Jz2w,436
|
152
160
|
graphlit_api/delete_workflows.py,sha256=9fHteXWNKeHJU1J54bKF7uxb3FFueQFanIBY0DreKfY,468
|
153
161
|
graphlit_api/describe_encoded_image.py,sha256=9MzArgCTfepv_wBlvKYCAuY-AJtwhNMU8U_BYF1wxDk,6452
|
@@ -158,7 +166,7 @@ graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,
|
|
158
166
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
159
167
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
160
168
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
161
|
-
graphlit_api/enums.py,sha256=
|
169
|
+
graphlit_api/enums.py,sha256=HzAu_qbW_mtz7OR-BW0_I_7N4R06NN05VjbZH-FjOdA,30399
|
162
170
|
graphlit_api/exceptions.py,sha256=s0ECCqA83fhlv5GqIpT-fNFIZ7sRABG23Wj7DcEl4X0,2433
|
163
171
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
164
172
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
@@ -167,10 +175,11 @@ graphlit_api/format_conversation.py,sha256=5ihjhW0dyN2M6aPqwphZMneRALHSCvjWV8abJ
|
|
167
175
|
graphlit_api/get_alert.py,sha256=yw9TLx7iD4d60gaSm4typqQEHt8Y0tyb9xqg504hssQ,7193
|
168
176
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
169
177
|
graphlit_api/get_collection.py,sha256=sLNFDsu139lFgk6fbhWHGLEVLHzoH_enyN2rklyHzUk,799
|
178
|
+
graphlit_api/get_connector.py,sha256=QQzpTX8O85az3twYomeIlGpl7v6gogM2Qqh1iXp92-k,2561
|
170
179
|
graphlit_api/get_content.py,sha256=hU7CYjTkWSOhq0mb75ZWtL6My91VbCh1pzg8P7jkJJI,14949
|
171
180
|
graphlit_api/get_conversation.py,sha256=Uct7M1EUOJQ3AuzGVj0Kt_33uF699BfeShj8TF9qq7Y,17697
|
172
181
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
173
|
-
graphlit_api/get_feed.py,sha256=
|
182
|
+
graphlit_api/get_feed.py,sha256=VUSX0VYpwzrPth4amejpkH4wJ9hhi5zkgQbbwZT9pSo,14367
|
174
183
|
graphlit_api/get_label.py,sha256=0SmukTbSktKnVlx_FpVf3lxFOQVQ6RAiRj4kglnt3eI,418
|
175
184
|
graphlit_api/get_medical_condition.py,sha256=XB03lU_gv20PHtkoLiCOR_6c8u3l7mS1F28SScSZwMM,711
|
176
185
|
graphlit_api/get_medical_contraindication.py,sha256=xJ-mUOGVB2BxEU-8q25JrNz8zJ-fnfbhku2Ajhih7iA,767
|
@@ -192,9 +201,10 @@ graphlit_api/get_repo.py,sha256=4ngiYmVFEeKe7zK0daSppsbvRwXlwYpbB4HMU2xsl78,578
|
|
192
201
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
193
202
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
194
203
|
graphlit_api/get_specification.py,sha256=3zQhdMJ2bDffSYC0Gc_fJ5bISyUBFI9Nf8-ExCK7W_s,10713
|
195
|
-
graphlit_api/get_user.py,sha256=
|
196
|
-
graphlit_api/get_user_by_identifier.py,sha256=
|
197
|
-
graphlit_api/
|
204
|
+
graphlit_api/get_user.py,sha256=2QBpmB6C2sEC4o60B8hIGjz6KvEFd-oJWofzepqDkdc,2787
|
205
|
+
graphlit_api/get_user_by_identifier.py,sha256=ealLfGTZEQYbV5uVlyaQp3B18SWrLEKtNRSQVzgI2r0,3567
|
206
|
+
graphlit_api/get_view.py,sha256=G4LHpAMb1ezGRTCvCT6tM6V24-A0mb-GH5IeiYl_50M,9297
|
207
|
+
graphlit_api/get_workflow.py,sha256=0y-0-tfU946BqypyKnJHuJklkn2AEq17GXksG06zxes,15554
|
198
208
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
199
209
|
graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cRW_Y3Fw,2607
|
200
210
|
graphlit_api/ingest_event.py,sha256=ThnAGO8bNghFmxDrk-Q4neW3f_cvUzdSuMocdyU_AaY,2336
|
@@ -202,14 +212,14 @@ graphlit_api/ingest_memory.py,sha256=YF7sn_jvpk_iACg8encyp_gd0wrK0Om4blYzPDI-B8c
|
|
202
212
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
203
213
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
204
214
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
205
|
-
graphlit_api/input_types.py,sha256=
|
215
|
+
graphlit_api/input_types.py,sha256=IN8uV1NAscuNbBAVDEg2FMA0pHojYHbZFd9gUq6tpZc,158137
|
206
216
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
207
217
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
208
218
|
graphlit_api/lookup_contents.py,sha256=_s9tmHSm6WNIEKQ4J2JEdSsGg30HKhf3CxoiPMwZJXk,16735
|
209
219
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
210
220
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
211
221
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
212
|
-
graphlit_api/operations.py,sha256=
|
222
|
+
graphlit_api/operations.py,sha256=M1yqV4bK1ah35hV8VVP7Yt8dhcQt_U3fmh0oGFuUp2s,221381
|
213
223
|
graphlit_api/prompt.py,sha256=jBlM3ywGnbVPYSBHMDPAy5ZlDDtndRsHnV7twcwLX1g,6203
|
214
224
|
graphlit_api/prompt_conversation.py,sha256=JMiDfxFaixz63wXcT-h948c5x2Uc6PgB3D7wORltkhU,16458
|
215
225
|
graphlit_api/prompt_specifications.py,sha256=GFLRlyp5pISfB0PVMw3RPCwGvqkA3qI5M2NiXXu2aT0,7090
|
@@ -220,6 +230,7 @@ graphlit_api/query_alerts.py,sha256=S9ALc80i7d9fLnTCKb6-EDN0EkYaCje16UBjb6GSoNc,
|
|
220
230
|
graphlit_api/query_box_folders.py,sha256=NA6_GZ0HOR3jutD6VG5vMuspoIZkFWoM5x5QW6iL6jo,633
|
221
231
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
222
232
|
graphlit_api/query_collections.py,sha256=IQv3XSV7XxMyRRQUGKuIY0w5cBfYr212dHlkDGdF0Ok,891
|
233
|
+
graphlit_api/query_connectors.py,sha256=icsXeU4X36QVnO49wwHFdFqzuzmTYPX9O-ABSjXkpj8,2966
|
223
234
|
graphlit_api/query_contents.py,sha256=KYpvguxxD83QRcywaf8Prj1yBosgTkLCQd-P1ZfYJaI,12766
|
224
235
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
225
236
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
@@ -228,7 +239,7 @@ graphlit_api/query_conversations.py,sha256=_uO9SRB7q7M-IlTbL_0RCk3RkHMLFPKKTEtsL
|
|
228
239
|
graphlit_api/query_credits.py,sha256=6uJqn4iYfBfsUtSMTCSuV4d2VTiYR4gR5tEeDH5Cf9o,1396
|
229
240
|
graphlit_api/query_dropbox_folders.py,sha256=KQeuBCG7GBQWV6hr3vqzhDkrgfQ73LM8jU6ETAp-21c,703
|
230
241
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
231
|
-
graphlit_api/query_feeds.py,sha256=
|
242
|
+
graphlit_api/query_feeds.py,sha256=347iEpFo7UjCFGpXXqv44VvTpmDXnfXsIJgPj9PT-q4,15480
|
232
243
|
graphlit_api/query_google_calendars.py,sha256=2QdNfQE0C-Evg3ySNGA4q6QQGwj0bKUS_6URot6Qccw,725
|
233
244
|
graphlit_api/query_google_drive_folders.py,sha256=kDYZgQzvU7wgV27mbTc7v4BpSVove2bBWaoNkLKsKPI,774
|
234
245
|
graphlit_api/query_labels.py,sha256=7EPyZEAK5csU6cBoq2hVhrZY_NTHL1ZbvAQHCl19BSY,584
|
@@ -263,8 +274,9 @@ graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganB
|
|
263
274
|
graphlit_api/query_specifications.py,sha256=qvE25wOZGReO4b1gY4TPxo_IWP5sPU8bSEpYhkvmvNM,11414
|
264
275
|
graphlit_api/query_tokens.py,sha256=8lvoWuoTOGVxiJT089EgzwUt78UPc1dcvN1rMveO07M,1739
|
265
276
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
266
|
-
graphlit_api/query_users.py,sha256=
|
267
|
-
graphlit_api/
|
277
|
+
graphlit_api/query_users.py,sha256=UD9lRke9naI5XezwhgBrJpvdEn00uW-HYJnRoOI0ftE,3195
|
278
|
+
graphlit_api/query_views.py,sha256=nqT3g0SnkMHAYLS8h51qRyXdn_XSCvgouvx2KrJ-IM8,10734
|
279
|
+
graphlit_api/query_workflows.py,sha256=xAj1xe75F9j1cf1Xkof2XF2CkCIV9QKcQSojXP6i9Qc,17360
|
268
280
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
269
281
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
270
282
|
graphlit_api/revise_content.py,sha256=sy-x1P_oMY2BVOJafB2X9ApPXKPjFS25nrwRJtzWMo8,6605
|
@@ -281,6 +293,7 @@ graphlit_api/summarize_text.py,sha256=JAvjOLAzPWp1tUWvZegp9qNIoqvgijAOh2YAmeBxH5
|
|
281
293
|
graphlit_api/update_alert.py,sha256=ny1hlhyyRK9PlYzsTJBILInpV3vZmcIQ78qTftLb5Ik,445
|
282
294
|
graphlit_api/update_category.py,sha256=1VY6dUOYAhsjzR0JxQ_BOp8Rz1hqWLxcS9ydfA_E8vM,396
|
283
295
|
graphlit_api/update_collection.py,sha256=zpuUloi3xNaT417-S09sjB6Q0cfrBPfb6z_He4AUrHI,519
|
296
|
+
graphlit_api/update_connector.py,sha256=BxAKds7Nw13iYZfmKNrlr1PQ6yraGfipJH6Y2we2J2Q,509
|
284
297
|
graphlit_api/update_content.py,sha256=UrYJtTK9aI3v8IqHk2Hodpaek6REiW2MB73aHU6dt0c,2426
|
285
298
|
graphlit_api/update_conversation.py,sha256=IlyAPmToWUHIpWUoZSxTdzMiop-67kUv0CP0IE0UC_A,539
|
286
299
|
graphlit_api/update_event.py,sha256=Q2k2hAYHJfX-oJlEtkcMMFWwDEevU9LM-exH8rR9MVc,358
|
@@ -307,14 +320,16 @@ graphlit_api/update_repo.py,sha256=9BEt_65v0omSEwDmuspasvp45pCUHfmgq6u2OdLEycw,3
|
|
307
320
|
graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePymCY,396
|
308
321
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
309
322
|
graphlit_api/update_user.py,sha256=r7VfMw19P4u6POz4yEbcFW65-TVAjyBlB3te2_fY6I8,496
|
310
|
-
graphlit_api/
|
323
|
+
graphlit_api/update_view.py,sha256=XBU5RPOdd2VCkz1WXqiSPpGXxQL94tpVlPWZqE2DCYA,10224
|
324
|
+
graphlit_api/update_workflow.py,sha256=7yo3c5v4ScPdfOkPtnqyq-0hRTIkdjuHuCXDnsj8JnA,16804
|
311
325
|
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
312
326
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
313
327
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
314
|
-
graphlit_api/upsert_workflow.py,sha256=
|
328
|
+
graphlit_api/upsert_workflow.py,sha256=BWzMvOF7kQWs-uLuet5jCletHq8KGD7XK-ZwWpHM5MU,16804
|
329
|
+
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
315
330
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
316
|
-
graphlit_client-1.0.
|
317
|
-
graphlit_client-1.0.
|
318
|
-
graphlit_client-1.0.
|
319
|
-
graphlit_client-1.0.
|
320
|
-
graphlit_client-1.0.
|
331
|
+
graphlit_client-1.0.20250627002.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
332
|
+
graphlit_client-1.0.20250627002.dist-info/METADATA,sha256=Uf_Uw0EJotN4iDrZ1yElclNNobBHYzNdgQFftsDLTOo,3408
|
333
|
+
graphlit_client-1.0.20250627002.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
334
|
+
graphlit_client-1.0.20250627002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
335
|
+
graphlit_client-1.0.20250627002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|