graphlit-client 1.0.20260111001__py3-none-any.whl → 1.0.20260113001__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 +53 -0
- graphlit_api/approve_content.py +23 -0
- graphlit_api/client.py +41 -0
- graphlit_api/create_workflow.py +20 -0
- graphlit_api/enums.py +10 -0
- graphlit_api/get_feed.py +1 -0
- graphlit_api/get_workflow.py +20 -0
- graphlit_api/input_types.py +18 -0
- graphlit_api/operations.py +87 -0
- graphlit_api/query_feeds.py +1 -0
- graphlit_api/query_workflows.py +20 -0
- graphlit_api/reject_content.py +23 -0
- graphlit_api/restart_content.py +23 -0
- graphlit_api/update_workflow.py +20 -0
- graphlit_api/upsert_workflow.py +20 -0
- {graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/RECORD +20 -17
- {graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -5,6 +5,7 @@ from .add_contents_to_collections import (
|
|
|
5
5
|
AddContentsToCollectionsAddContentsToCollections,
|
|
6
6
|
AddContentsToCollectionsAddContentsToCollectionsContents,
|
|
7
7
|
)
|
|
8
|
+
from .approve_content import ApproveContent, ApproveContentApproveContent
|
|
8
9
|
from .ask_graphlit import (
|
|
9
10
|
AskGraphlit,
|
|
10
11
|
AskGraphlitAskGraphlit,
|
|
@@ -342,6 +343,9 @@ from .create_workflow import (
|
|
|
342
343
|
CreateWorkflowCreateWorkflowPreparationSummarizations,
|
|
343
344
|
CreateWorkflowCreateWorkflowPreparationSummarizationsSpecification,
|
|
344
345
|
CreateWorkflowCreateWorkflowStorage,
|
|
346
|
+
CreateWorkflowCreateWorkflowStorageGate,
|
|
347
|
+
CreateWorkflowCreateWorkflowStorageGateRules,
|
|
348
|
+
CreateWorkflowCreateWorkflowStorageGateSpecification,
|
|
345
349
|
CreateWorkflowCreateWorkflowStoragePolicy,
|
|
346
350
|
)
|
|
347
351
|
from .delete_alert import DeleteAlert, DeleteAlertDeleteAlert
|
|
@@ -771,6 +775,8 @@ from .enums import (
|
|
|
771
775
|
SlackAuthenticationTypes,
|
|
772
776
|
SoftwareFacetTypes,
|
|
773
777
|
SpecificationTypes,
|
|
778
|
+
StorageGateRejectionActions,
|
|
779
|
+
StorageGateTypes,
|
|
774
780
|
StoragePolicyTypes,
|
|
775
781
|
SummarizationTypes,
|
|
776
782
|
TextRoles,
|
|
@@ -1572,6 +1578,9 @@ from .get_workflow import (
|
|
|
1572
1578
|
GetWorkflowWorkflowPreparationSummarizations,
|
|
1573
1579
|
GetWorkflowWorkflowPreparationSummarizationsSpecification,
|
|
1574
1580
|
GetWorkflowWorkflowStorage,
|
|
1581
|
+
GetWorkflowWorkflowStorageGate,
|
|
1582
|
+
GetWorkflowWorkflowStorageGateRules,
|
|
1583
|
+
GetWorkflowWorkflowStorageGateSpecification,
|
|
1575
1584
|
GetWorkflowWorkflowStoragePolicy,
|
|
1576
1585
|
)
|
|
1577
1586
|
from .ingest_batch import (
|
|
@@ -2039,6 +2048,8 @@ from .input_types import (
|
|
|
2039
2048
|
SpecificationFilter,
|
|
2040
2049
|
SpecificationInput,
|
|
2041
2050
|
SpecificationUpdateInput,
|
|
2051
|
+
StorageGateInput,
|
|
2052
|
+
StorageGateRuleInput,
|
|
2042
2053
|
StoragePolicyInput,
|
|
2043
2054
|
StorageWorkflowStageInput,
|
|
2044
2055
|
SummarizationStrategyInput,
|
|
@@ -2148,6 +2159,7 @@ from .match_entity import (
|
|
|
2148
2159
|
)
|
|
2149
2160
|
from .operations import (
|
|
2150
2161
|
ADD_CONTENTS_TO_COLLECTIONS_GQL,
|
|
2162
|
+
APPROVE_CONTENT_GQL,
|
|
2151
2163
|
ASK_GRAPHLIT_GQL,
|
|
2152
2164
|
BRANCH_CONVERSATION_GQL,
|
|
2153
2165
|
CLEAR_CONVERSATION_GQL,
|
|
@@ -2475,10 +2487,12 @@ from .operations import (
|
|
|
2475
2487
|
QUERY_USERS_GQL,
|
|
2476
2488
|
QUERY_VIEWS_GQL,
|
|
2477
2489
|
QUERY_WORKFLOWS_GQL,
|
|
2490
|
+
REJECT_CONTENT_GQL,
|
|
2478
2491
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
|
2479
2492
|
RESEARCH_CONTENTS_GQL,
|
|
2480
2493
|
RESOLVE_ENTITIES_GQL,
|
|
2481
2494
|
RESOLVE_ENTITY_GQL,
|
|
2495
|
+
RESTART_CONTENT_GQL,
|
|
2482
2496
|
RETRIEVE_ENTITIES_GQL,
|
|
2483
2497
|
RETRIEVE_FACTS_GQL,
|
|
2484
2498
|
RETRIEVE_SOURCES_GQL,
|
|
@@ -3883,8 +3897,12 @@ from .query_workflows import (
|
|
|
3883
3897
|
QueryWorkflowsWorkflowsResultsPreparationSummarizations,
|
|
3884
3898
|
QueryWorkflowsWorkflowsResultsPreparationSummarizationsSpecification,
|
|
3885
3899
|
QueryWorkflowsWorkflowsResultsStorage,
|
|
3900
|
+
QueryWorkflowsWorkflowsResultsStorageGate,
|
|
3901
|
+
QueryWorkflowsWorkflowsResultsStorageGateRules,
|
|
3902
|
+
QueryWorkflowsWorkflowsResultsStorageGateSpecification,
|
|
3886
3903
|
QueryWorkflowsWorkflowsResultsStoragePolicy,
|
|
3887
3904
|
)
|
|
3905
|
+
from .reject_content import RejectContent, RejectContentRejectContent
|
|
3888
3906
|
from .remove_contents_from_collection import (
|
|
3889
3907
|
RemoveContentsFromCollection,
|
|
3890
3908
|
RemoveContentsFromCollectionRemoveContentsFromCollection,
|
|
@@ -3907,6 +3925,7 @@ from .resolve_entity import (
|
|
|
3907
3925
|
ResolveEntityResolveEntityReference,
|
|
3908
3926
|
ResolveEntityResolveEntityReferenceObservable,
|
|
3909
3927
|
)
|
|
3928
|
+
from .restart_content import RestartContent, RestartContentRestartContent
|
|
3910
3929
|
from .retrieve_entities import (
|
|
3911
3930
|
RetrieveEntities,
|
|
3912
3931
|
RetrieveEntitiesRetrieveEntities,
|
|
@@ -4221,6 +4240,9 @@ from .update_workflow import (
|
|
|
4221
4240
|
UpdateWorkflowUpdateWorkflowPreparationSummarizations,
|
|
4222
4241
|
UpdateWorkflowUpdateWorkflowPreparationSummarizationsSpecification,
|
|
4223
4242
|
UpdateWorkflowUpdateWorkflowStorage,
|
|
4243
|
+
UpdateWorkflowUpdateWorkflowStorageGate,
|
|
4244
|
+
UpdateWorkflowUpdateWorkflowStorageGateRules,
|
|
4245
|
+
UpdateWorkflowUpdateWorkflowStorageGateSpecification,
|
|
4224
4246
|
UpdateWorkflowUpdateWorkflowStoragePolicy,
|
|
4225
4247
|
)
|
|
4226
4248
|
from .upsert_alert import UpsertAlert, UpsertAlertUpsertAlert
|
|
@@ -4345,6 +4367,9 @@ from .upsert_workflow import (
|
|
|
4345
4367
|
UpsertWorkflowUpsertWorkflowPreparationSummarizations,
|
|
4346
4368
|
UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification,
|
|
4347
4369
|
UpsertWorkflowUpsertWorkflowStorage,
|
|
4370
|
+
UpsertWorkflowUpsertWorkflowStorageGate,
|
|
4371
|
+
UpsertWorkflowUpsertWorkflowStorageGateRules,
|
|
4372
|
+
UpsertWorkflowUpsertWorkflowStorageGateSpecification,
|
|
4348
4373
|
UpsertWorkflowUpsertWorkflowStoragePolicy,
|
|
4349
4374
|
)
|
|
4350
4375
|
from .view_exists import ViewExists, ViewExistsViewExists
|
|
@@ -4352,6 +4377,7 @@ from .workflow_exists import WorkflowExists, WorkflowExistsWorkflowExists
|
|
|
4352
4377
|
|
|
4353
4378
|
__all__ = [
|
|
4354
4379
|
"ADD_CONTENTS_TO_COLLECTIONS_GQL",
|
|
4380
|
+
"APPROVE_CONTENT_GQL",
|
|
4355
4381
|
"ASK_GRAPHLIT_GQL",
|
|
4356
4382
|
"AddContentsToCollections",
|
|
4357
4383
|
"AddContentsToCollectionsAddContentsToCollections",
|
|
@@ -4369,6 +4395,8 @@ __all__ = [
|
|
|
4369
4395
|
"AnthropicModelPropertiesUpdateInput",
|
|
4370
4396
|
"AnthropicModels",
|
|
4371
4397
|
"ApplyPolicy",
|
|
4398
|
+
"ApproveContent",
|
|
4399
|
+
"ApproveContentApproveContent",
|
|
4372
4400
|
"ArcadeAuthenticationPropertiesInput",
|
|
4373
4401
|
"ArcadeProviders",
|
|
4374
4402
|
"AskGraphlit",
|
|
@@ -4863,6 +4891,9 @@ __all__ = [
|
|
|
4863
4891
|
"CreateWorkflowCreateWorkflowPreparationSummarizations",
|
|
4864
4892
|
"CreateWorkflowCreateWorkflowPreparationSummarizationsSpecification",
|
|
4865
4893
|
"CreateWorkflowCreateWorkflowStorage",
|
|
4894
|
+
"CreateWorkflowCreateWorkflowStorageGate",
|
|
4895
|
+
"CreateWorkflowCreateWorkflowStorageGateRules",
|
|
4896
|
+
"CreateWorkflowCreateWorkflowStorageGateSpecification",
|
|
4866
4897
|
"CreateWorkflowCreateWorkflowStoragePolicy",
|
|
4867
4898
|
"DELETE_ALERTS_GQL",
|
|
4868
4899
|
"DELETE_ALERT_GQL",
|
|
@@ -6035,6 +6066,9 @@ __all__ = [
|
|
|
6035
6066
|
"GetWorkflowWorkflowPreparationSummarizations",
|
|
6036
6067
|
"GetWorkflowWorkflowPreparationSummarizationsSpecification",
|
|
6037
6068
|
"GetWorkflowWorkflowStorage",
|
|
6069
|
+
"GetWorkflowWorkflowStorageGate",
|
|
6070
|
+
"GetWorkflowWorkflowStorageGateRules",
|
|
6071
|
+
"GetWorkflowWorkflowStorageGateSpecification",
|
|
6038
6072
|
"GetWorkflowWorkflowStoragePolicy",
|
|
6039
6073
|
"GitHubAuthenticationTypes",
|
|
6040
6074
|
"GitHubCommitAuthenticationTypes",
|
|
@@ -7717,11 +7751,16 @@ __all__ = [
|
|
|
7717
7751
|
"QueryWorkflowsWorkflowsResultsPreparationSummarizations",
|
|
7718
7752
|
"QueryWorkflowsWorkflowsResultsPreparationSummarizationsSpecification",
|
|
7719
7753
|
"QueryWorkflowsWorkflowsResultsStorage",
|
|
7754
|
+
"QueryWorkflowsWorkflowsResultsStorageGate",
|
|
7755
|
+
"QueryWorkflowsWorkflowsResultsStorageGateRules",
|
|
7756
|
+
"QueryWorkflowsWorkflowsResultsStorageGateSpecification",
|
|
7720
7757
|
"QueryWorkflowsWorkflowsResultsStoragePolicy",
|
|
7758
|
+
"REJECT_CONTENT_GQL",
|
|
7721
7759
|
"REMOVE_CONTENTS_FROM_COLLECTION_GQL",
|
|
7722
7760
|
"RESEARCH_CONTENTS_GQL",
|
|
7723
7761
|
"RESOLVE_ENTITIES_GQL",
|
|
7724
7762
|
"RESOLVE_ENTITY_GQL",
|
|
7763
|
+
"RESTART_CONTENT_GQL",
|
|
7725
7764
|
"RETRIEVE_ENTITIES_GQL",
|
|
7726
7765
|
"RETRIEVE_FACTS_GQL",
|
|
7727
7766
|
"RETRIEVE_SOURCES_GQL",
|
|
@@ -7742,6 +7781,8 @@ __all__ = [
|
|
|
7742
7781
|
"RegexClassificationRuleInput",
|
|
7743
7782
|
"RegexContentClassificationPropertiesInput",
|
|
7744
7783
|
"RegexSourceTypes",
|
|
7784
|
+
"RejectContent",
|
|
7785
|
+
"RejectContentRejectContent",
|
|
7745
7786
|
"RelationshipDirections",
|
|
7746
7787
|
"RemoveContentsFromCollection",
|
|
7747
7788
|
"RemoveContentsFromCollectionRemoveContentsFromCollection",
|
|
@@ -7775,6 +7816,8 @@ __all__ = [
|
|
|
7775
7816
|
"ResolveEntityResolveEntityReference",
|
|
7776
7817
|
"ResolveEntityResolveEntityReferenceObservable",
|
|
7777
7818
|
"ResourceConnectorTypes",
|
|
7819
|
+
"RestartContent",
|
|
7820
|
+
"RestartContentRestartContent",
|
|
7778
7821
|
"RetrievalStrategyInput",
|
|
7779
7822
|
"RetrievalStrategyTypes",
|
|
7780
7823
|
"RetrievalStrategyUpdateInput",
|
|
@@ -7908,6 +7951,10 @@ __all__ = [
|
|
|
7908
7951
|
"SpecificationInput",
|
|
7909
7952
|
"SpecificationTypes",
|
|
7910
7953
|
"SpecificationUpdateInput",
|
|
7954
|
+
"StorageGateInput",
|
|
7955
|
+
"StorageGateRejectionActions",
|
|
7956
|
+
"StorageGateRuleInput",
|
|
7957
|
+
"StorageGateTypes",
|
|
7911
7958
|
"StoragePolicyInput",
|
|
7912
7959
|
"StoragePolicyTypes",
|
|
7913
7960
|
"StorageWorkflowStageInput",
|
|
@@ -8167,6 +8214,9 @@ __all__ = [
|
|
|
8167
8214
|
"UpdateWorkflowUpdateWorkflowPreparationSummarizations",
|
|
8168
8215
|
"UpdateWorkflowUpdateWorkflowPreparationSummarizationsSpecification",
|
|
8169
8216
|
"UpdateWorkflowUpdateWorkflowStorage",
|
|
8217
|
+
"UpdateWorkflowUpdateWorkflowStorageGate",
|
|
8218
|
+
"UpdateWorkflowUpdateWorkflowStorageGateRules",
|
|
8219
|
+
"UpdateWorkflowUpdateWorkflowStorageGateSpecification",
|
|
8170
8220
|
"UpdateWorkflowUpdateWorkflowStoragePolicy",
|
|
8171
8221
|
"Upload",
|
|
8172
8222
|
"UpsertAlert",
|
|
@@ -8289,6 +8339,9 @@ __all__ = [
|
|
|
8289
8339
|
"UpsertWorkflowUpsertWorkflowPreparationSummarizations",
|
|
8290
8340
|
"UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification",
|
|
8291
8341
|
"UpsertWorkflowUpsertWorkflowStorage",
|
|
8342
|
+
"UpsertWorkflowUpsertWorkflowStorageGate",
|
|
8343
|
+
"UpsertWorkflowUpsertWorkflowStorageGateRules",
|
|
8344
|
+
"UpsertWorkflowUpsertWorkflowStorageGateSpecification",
|
|
8292
8345
|
"UpsertWorkflowUpsertWorkflowStoragePolicy",
|
|
8293
8346
|
"UserFilter",
|
|
8294
8347
|
"UserInput",
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from .enums import EntityState
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ApproveContent(BaseModel):
|
|
13
|
+
approve_content: Optional["ApproveContentApproveContent"] = Field(
|
|
14
|
+
alias="approveContent"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ApproveContentApproveContent(BaseModel):
|
|
19
|
+
id: str
|
|
20
|
+
state: EntityState
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
ApproveContent.model_rebuild()
|
graphlit_api/client.py
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
from typing import Any, Dict, List, Optional, Union
|
|
5
5
|
|
|
6
6
|
from .add_contents_to_collections import AddContentsToCollections
|
|
7
|
+
from .approve_content import ApproveContent
|
|
7
8
|
from .ask_graphlit import AskGraphlit
|
|
8
9
|
from .async_base_client import AsyncBaseClient
|
|
9
10
|
from .base_model import UNSET, UnsetType
|
|
@@ -393,6 +394,7 @@ from .map_web import MapWeb
|
|
|
393
394
|
from .match_entity import MatchEntity
|
|
394
395
|
from .operations import (
|
|
395
396
|
ADD_CONTENTS_TO_COLLECTIONS_GQL,
|
|
397
|
+
APPROVE_CONTENT_GQL,
|
|
396
398
|
ASK_GRAPHLIT_GQL,
|
|
397
399
|
BRANCH_CONVERSATION_GQL,
|
|
398
400
|
CLEAR_CONVERSATION_GQL,
|
|
@@ -720,10 +722,12 @@ from .operations import (
|
|
|
720
722
|
QUERY_USERS_GQL,
|
|
721
723
|
QUERY_VIEWS_GQL,
|
|
722
724
|
QUERY_WORKFLOWS_GQL,
|
|
725
|
+
REJECT_CONTENT_GQL,
|
|
723
726
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
|
724
727
|
RESEARCH_CONTENTS_GQL,
|
|
725
728
|
RESOLVE_ENTITIES_GQL,
|
|
726
729
|
RESOLVE_ENTITY_GQL,
|
|
730
|
+
RESTART_CONTENT_GQL,
|
|
727
731
|
RETRIEVE_ENTITIES_GQL,
|
|
728
732
|
RETRIEVE_FACTS_GQL,
|
|
729
733
|
RETRIEVE_SOURCES_GQL,
|
|
@@ -877,10 +881,12 @@ from .query_usage import QueryUsage
|
|
|
877
881
|
from .query_users import QueryUsers
|
|
878
882
|
from .query_views import QueryViews
|
|
879
883
|
from .query_workflows import QueryWorkflows
|
|
884
|
+
from .reject_content import RejectContent
|
|
880
885
|
from .remove_contents_from_collection import RemoveContentsFromCollection
|
|
881
886
|
from .research_contents import ResearchContents
|
|
882
887
|
from .resolve_entities import ResolveEntities
|
|
883
888
|
from .resolve_entity import ResolveEntity
|
|
889
|
+
from .restart_content import RestartContent
|
|
884
890
|
from .retrieve_entities import RetrieveEntities
|
|
885
891
|
from .retrieve_facts import RetrieveFacts
|
|
886
892
|
from .retrieve_sources import RetrieveSources
|
|
@@ -1504,6 +1510,17 @@ class Client(AsyncBaseClient):
|
|
|
1504
1510
|
data = self.get_data(response)
|
|
1505
1511
|
return UpdateConnector.model_validate(data)
|
|
1506
1512
|
|
|
1513
|
+
async def approve_content(self, id: str, **kwargs: Any) -> ApproveContent:
|
|
1514
|
+
variables: Dict[str, object] = {"id": id}
|
|
1515
|
+
response = await self.execute(
|
|
1516
|
+
query=APPROVE_CONTENT_GQL,
|
|
1517
|
+
operation_name="ApproveContent",
|
|
1518
|
+
variables=variables,
|
|
1519
|
+
**kwargs
|
|
1520
|
+
)
|
|
1521
|
+
data = self.get_data(response)
|
|
1522
|
+
return ApproveContent.model_validate(data)
|
|
1523
|
+
|
|
1507
1524
|
async def count_contents(
|
|
1508
1525
|
self,
|
|
1509
1526
|
filter: Union[Optional[ContentFilter], UnsetType] = UNSET,
|
|
@@ -2177,6 +2194,19 @@ class Client(AsyncBaseClient):
|
|
|
2177
2194
|
data = self.get_data(response)
|
|
2178
2195
|
return QueryObservables.model_validate(data)
|
|
2179
2196
|
|
|
2197
|
+
async def reject_content(
|
|
2198
|
+
self, id: str, reason: Union[Optional[str], UnsetType] = UNSET, **kwargs: Any
|
|
2199
|
+
) -> RejectContent:
|
|
2200
|
+
variables: Dict[str, object] = {"id": id, "reason": reason}
|
|
2201
|
+
response = await self.execute(
|
|
2202
|
+
query=REJECT_CONTENT_GQL,
|
|
2203
|
+
operation_name="RejectContent",
|
|
2204
|
+
variables=variables,
|
|
2205
|
+
**kwargs
|
|
2206
|
+
)
|
|
2207
|
+
data = self.get_data(response)
|
|
2208
|
+
return RejectContent.model_validate(data)
|
|
2209
|
+
|
|
2180
2210
|
async def research_contents(
|
|
2181
2211
|
self,
|
|
2182
2212
|
connector: ContentPublishingConnectorInput,
|
|
@@ -2206,6 +2236,17 @@ class Client(AsyncBaseClient):
|
|
|
2206
2236
|
data = self.get_data(response)
|
|
2207
2237
|
return ResearchContents.model_validate(data)
|
|
2208
2238
|
|
|
2239
|
+
async def restart_content(self, id: str, **kwargs: Any) -> RestartContent:
|
|
2240
|
+
variables: Dict[str, object] = {"id": id}
|
|
2241
|
+
response = await self.execute(
|
|
2242
|
+
query=RESTART_CONTENT_GQL,
|
|
2243
|
+
operation_name="RestartContent",
|
|
2244
|
+
variables=variables,
|
|
2245
|
+
**kwargs
|
|
2246
|
+
)
|
|
2247
|
+
data = self.get_data(response)
|
|
2248
|
+
return RestartContent.model_validate(data)
|
|
2249
|
+
|
|
2209
2250
|
async def screenshot_page(
|
|
2210
2251
|
self,
|
|
2211
2252
|
uri: Any,
|
graphlit_api/create_workflow.py
CHANGED
|
@@ -32,6 +32,8 @@ from .enums import (
|
|
|
32
32
|
ReductoOcrModes,
|
|
33
33
|
ReductoOcrSystems,
|
|
34
34
|
RegexSourceTypes,
|
|
35
|
+
StorageGateRejectionActions,
|
|
36
|
+
StorageGateTypes,
|
|
35
37
|
StoragePolicyTypes,
|
|
36
38
|
SummarizationTypes,
|
|
37
39
|
)
|
|
@@ -405,6 +407,7 @@ class CreateWorkflowCreateWorkflowEnrichmentEntityResolutionSpecification(BaseMo
|
|
|
405
407
|
|
|
406
408
|
class CreateWorkflowCreateWorkflowStorage(BaseModel):
|
|
407
409
|
policy: Optional["CreateWorkflowCreateWorkflowStoragePolicy"]
|
|
410
|
+
gate: Optional["CreateWorkflowCreateWorkflowStorageGate"]
|
|
408
411
|
|
|
409
412
|
|
|
410
413
|
class CreateWorkflowCreateWorkflowStoragePolicy(BaseModel):
|
|
@@ -415,6 +418,22 @@ class CreateWorkflowCreateWorkflowStoragePolicy(BaseModel):
|
|
|
415
418
|
snapshot_count: Optional[int] = Field(alias="snapshotCount")
|
|
416
419
|
|
|
417
420
|
|
|
421
|
+
class CreateWorkflowCreateWorkflowStorageGate(BaseModel):
|
|
422
|
+
type: StorageGateTypes
|
|
423
|
+
specification: Optional["CreateWorkflowCreateWorkflowStorageGateSpecification"]
|
|
424
|
+
rules: Optional[List["CreateWorkflowCreateWorkflowStorageGateRules"]]
|
|
425
|
+
uri: Optional[Any]
|
|
426
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(alias="onReject")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class CreateWorkflowCreateWorkflowStorageGateSpecification(BaseModel):
|
|
430
|
+
id: str
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class CreateWorkflowCreateWorkflowStorageGateRules(BaseModel):
|
|
434
|
+
if_: str = Field(alias="if")
|
|
435
|
+
|
|
436
|
+
|
|
418
437
|
class CreateWorkflowCreateWorkflowActions(BaseModel):
|
|
419
438
|
connector: Optional["CreateWorkflowCreateWorkflowActionsConnector"]
|
|
420
439
|
|
|
@@ -477,5 +496,6 @@ CreateWorkflowCreateWorkflowEnrichmentJobs.model_rebuild()
|
|
|
477
496
|
CreateWorkflowCreateWorkflowEnrichmentJobsConnector.model_rebuild()
|
|
478
497
|
CreateWorkflowCreateWorkflowEnrichmentEntityResolution.model_rebuild()
|
|
479
498
|
CreateWorkflowCreateWorkflowStorage.model_rebuild()
|
|
499
|
+
CreateWorkflowCreateWorkflowStorageGate.model_rebuild()
|
|
480
500
|
CreateWorkflowCreateWorkflowActions.model_rebuild()
|
|
481
501
|
CreateWorkflowCreateWorkflowActionsConnector.model_rebuild()
|
graphlit_api/enums.py
CHANGED
|
@@ -841,6 +841,11 @@ class ContentTypes(str, Enum):
|
|
|
841
841
|
TRANSCRIPT = "TRANSCRIPT"
|
|
842
842
|
|
|
843
843
|
|
|
844
|
+
class StorageGateRejectionActions(str, Enum):
|
|
845
|
+
DELETE = "DELETE"
|
|
846
|
+
REJECT = "REJECT"
|
|
847
|
+
|
|
848
|
+
|
|
844
849
|
class OpenAIReasoningEffortLevels(str, Enum):
|
|
845
850
|
LOW = "LOW"
|
|
846
851
|
MEDIUM = "MEDIUM"
|
|
@@ -1252,6 +1257,11 @@ class OpenAIVideoModels(str, Enum):
|
|
|
1252
1257
|
CUSTOM = "CUSTOM"
|
|
1253
1258
|
|
|
1254
1259
|
|
|
1260
|
+
class StorageGateTypes(str, Enum):
|
|
1261
|
+
MODEL = "MODEL"
|
|
1262
|
+
WEBHOOK = "WEBHOOK"
|
|
1263
|
+
|
|
1264
|
+
|
|
1255
1265
|
class BedrockModels(str, Enum):
|
|
1256
1266
|
LLAMA_4_MAVERICK_17B = "LLAMA_4_MAVERICK_17B"
|
|
1257
1267
|
LLAMA_4_SCOUT_17B = "LLAMA_4_SCOUT_17B"
|
graphlit_api/get_feed.py
CHANGED
|
@@ -129,6 +129,7 @@ class GetFeedFeedSiteS3(BaseModel):
|
|
|
129
129
|
bucket_name: Optional[str] = Field(alias="bucketName")
|
|
130
130
|
prefix: Optional[str]
|
|
131
131
|
region: Optional[str]
|
|
132
|
+
custom_endpoint: Optional[str] = Field(alias="customEndpoint")
|
|
132
133
|
|
|
133
134
|
|
|
134
135
|
class GetFeedFeedSiteAzureBlob(BaseModel):
|
graphlit_api/get_workflow.py
CHANGED
|
@@ -32,6 +32,8 @@ from .enums import (
|
|
|
32
32
|
ReductoOcrModes,
|
|
33
33
|
ReductoOcrSystems,
|
|
34
34
|
RegexSourceTypes,
|
|
35
|
+
StorageGateRejectionActions,
|
|
36
|
+
StorageGateTypes,
|
|
35
37
|
StoragePolicyTypes,
|
|
36
38
|
SummarizationTypes,
|
|
37
39
|
)
|
|
@@ -388,6 +390,7 @@ class GetWorkflowWorkflowEnrichmentEntityResolutionSpecification(BaseModel):
|
|
|
388
390
|
|
|
389
391
|
class GetWorkflowWorkflowStorage(BaseModel):
|
|
390
392
|
policy: Optional["GetWorkflowWorkflowStoragePolicy"]
|
|
393
|
+
gate: Optional["GetWorkflowWorkflowStorageGate"]
|
|
391
394
|
|
|
392
395
|
|
|
393
396
|
class GetWorkflowWorkflowStoragePolicy(BaseModel):
|
|
@@ -398,6 +401,22 @@ class GetWorkflowWorkflowStoragePolicy(BaseModel):
|
|
|
398
401
|
snapshot_count: Optional[int] = Field(alias="snapshotCount")
|
|
399
402
|
|
|
400
403
|
|
|
404
|
+
class GetWorkflowWorkflowStorageGate(BaseModel):
|
|
405
|
+
type: StorageGateTypes
|
|
406
|
+
specification: Optional["GetWorkflowWorkflowStorageGateSpecification"]
|
|
407
|
+
rules: Optional[List["GetWorkflowWorkflowStorageGateRules"]]
|
|
408
|
+
uri: Optional[Any]
|
|
409
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(alias="onReject")
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
class GetWorkflowWorkflowStorageGateSpecification(BaseModel):
|
|
413
|
+
id: str
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
class GetWorkflowWorkflowStorageGateRules(BaseModel):
|
|
417
|
+
if_: str = Field(alias="if")
|
|
418
|
+
|
|
419
|
+
|
|
401
420
|
class GetWorkflowWorkflowActions(BaseModel):
|
|
402
421
|
connector: Optional["GetWorkflowWorkflowActionsConnector"]
|
|
403
422
|
|
|
@@ -460,5 +479,6 @@ GetWorkflowWorkflowEnrichmentJobs.model_rebuild()
|
|
|
460
479
|
GetWorkflowWorkflowEnrichmentJobsConnector.model_rebuild()
|
|
461
480
|
GetWorkflowWorkflowEnrichmentEntityResolution.model_rebuild()
|
|
462
481
|
GetWorkflowWorkflowStorage.model_rebuild()
|
|
482
|
+
GetWorkflowWorkflowStorageGate.model_rebuild()
|
|
463
483
|
GetWorkflowWorkflowActions.model_rebuild()
|
|
464
484
|
GetWorkflowWorkflowActionsConnector.model_rebuild()
|
graphlit_api/input_types.py
CHANGED
|
@@ -145,6 +145,8 @@ from .enums import (
|
|
|
145
145
|
SlackAuthenticationTypes,
|
|
146
146
|
SoftwareFacetTypes,
|
|
147
147
|
SpecificationTypes,
|
|
148
|
+
StorageGateRejectionActions,
|
|
149
|
+
StorageGateTypes,
|
|
148
150
|
StoragePolicyTypes,
|
|
149
151
|
SummarizationTypes,
|
|
150
152
|
TimedPolicyRecurrenceTypes,
|
|
@@ -2182,6 +2184,16 @@ class EventUpdateInput(BaseModel):
|
|
|
2182
2184
|
event_status: Optional[str] = Field(alias="eventStatus", default=None)
|
|
2183
2185
|
|
|
2184
2186
|
|
|
2187
|
+
class StorageGateInput(BaseModel):
|
|
2188
|
+
type: StorageGateTypes
|
|
2189
|
+
specification: Optional["EntityReferenceInput"] = None
|
|
2190
|
+
rules: Optional[List["StorageGateRuleInput"]] = None
|
|
2191
|
+
uri: Optional[Any] = None
|
|
2192
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(
|
|
2193
|
+
alias="onReject", default=None
|
|
2194
|
+
)
|
|
2195
|
+
|
|
2196
|
+
|
|
2185
2197
|
class FirefliesFeedPropertiesInput(BaseModel):
|
|
2186
2198
|
api_key: str = Field(alias="apiKey")
|
|
2187
2199
|
before_date: Optional[Any] = Field(alias="beforeDate", default=None)
|
|
@@ -2658,6 +2670,10 @@ class MedicalTherapyFacetInput(BaseModel):
|
|
|
2658
2670
|
facet: Optional[MedicalTherapyFacetTypes] = None
|
|
2659
2671
|
|
|
2660
2672
|
|
|
2673
|
+
class StorageGateRuleInput(BaseModel):
|
|
2674
|
+
if_: str = Field(alias="if")
|
|
2675
|
+
|
|
2676
|
+
|
|
2661
2677
|
class GitHubFeedPropertiesInput(BaseModel):
|
|
2662
2678
|
authentication_type: Optional[GitHubAuthenticationTypes] = Field(
|
|
2663
2679
|
alias="authenticationType", default=None
|
|
@@ -3248,6 +3264,7 @@ class FactInput(BaseModel):
|
|
|
3248
3264
|
|
|
3249
3265
|
class StorageWorkflowStageInput(BaseModel):
|
|
3250
3266
|
policy: Optional["StoragePolicyInput"] = None
|
|
3267
|
+
gate: Optional["StorageGateInput"] = None
|
|
3251
3268
|
|
|
3252
3269
|
|
|
3253
3270
|
class DrawingMetadataInput(BaseModel):
|
|
@@ -5522,6 +5539,7 @@ GitHubCommitsFeedPropertiesInput.model_rebuild()
|
|
|
5522
5539
|
EmailFeedPropertiesUpdateInput.model_rebuild()
|
|
5523
5540
|
MessageMetadataInput.model_rebuild()
|
|
5524
5541
|
EventUpdateInput.model_rebuild()
|
|
5542
|
+
StorageGateInput.model_rebuild()
|
|
5525
5543
|
ObservationUpdateInput.model_rebuild()
|
|
5526
5544
|
ClassificationWorkflowStageInput.model_rebuild()
|
|
5527
5545
|
MicrosoftContactsCRMFeedPropertiesInput.model_rebuild()
|
graphlit_api/operations.py
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
__all__ = [
|
|
5
5
|
"ADD_CONTENTS_TO_COLLECTIONS_GQL",
|
|
6
|
+
"APPROVE_CONTENT_GQL",
|
|
6
7
|
"ASK_GRAPHLIT_GQL",
|
|
7
8
|
"BRANCH_CONVERSATION_GQL",
|
|
8
9
|
"CLEAR_CONVERSATION_GQL",
|
|
@@ -330,10 +331,12 @@ __all__ = [
|
|
|
330
331
|
"QUERY_USERS_GQL",
|
|
331
332
|
"QUERY_VIEWS_GQL",
|
|
332
333
|
"QUERY_WORKFLOWS_GQL",
|
|
334
|
+
"REJECT_CONTENT_GQL",
|
|
333
335
|
"REMOVE_CONTENTS_FROM_COLLECTION_GQL",
|
|
334
336
|
"RESEARCH_CONTENTS_GQL",
|
|
335
337
|
"RESOLVE_ENTITIES_GQL",
|
|
336
338
|
"RESOLVE_ENTITY_GQL",
|
|
339
|
+
"RESTART_CONTENT_GQL",
|
|
337
340
|
"RETRIEVE_ENTITIES_GQL",
|
|
338
341
|
"RETRIEVE_FACTS_GQL",
|
|
339
342
|
"RETRIEVE_SOURCES_GQL",
|
|
@@ -1253,6 +1256,15 @@ mutation UpdateConnector($connector: ConnectorUpdateInput!) {
|
|
|
1253
1256
|
}
|
|
1254
1257
|
"""
|
|
1255
1258
|
|
|
1259
|
+
APPROVE_CONTENT_GQL = """
|
|
1260
|
+
mutation ApproveContent($id: ID!) {
|
|
1261
|
+
approveContent(id: $id) {
|
|
1262
|
+
id
|
|
1263
|
+
state
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
"""
|
|
1267
|
+
|
|
1256
1268
|
COUNT_CONTENTS_GQL = """
|
|
1257
1269
|
query CountContents($filter: ContentFilter, $correlationId: String) {
|
|
1258
1270
|
countContents(filter: $filter, correlationId: $correlationId) {
|
|
@@ -4219,6 +4231,15 @@ query QueryObservables($filter: ContentFilter, $correlationId: String) {
|
|
|
4219
4231
|
}
|
|
4220
4232
|
"""
|
|
4221
4233
|
|
|
4234
|
+
REJECT_CONTENT_GQL = """
|
|
4235
|
+
mutation RejectContent($id: ID!, $reason: String) {
|
|
4236
|
+
rejectContent(id: $id, reason: $reason) {
|
|
4237
|
+
id
|
|
4238
|
+
state
|
|
4239
|
+
}
|
|
4240
|
+
}
|
|
4241
|
+
"""
|
|
4242
|
+
|
|
4222
4243
|
RESEARCH_CONTENTS_GQL = """
|
|
4223
4244
|
mutation ResearchContents($connector: ContentPublishingConnectorInput!, $filter: ContentFilter, $name: String, $summarySpecification: EntityReferenceInput, $publishSpecification: EntityReferenceInput, $workflow: EntityReferenceInput, $correlationId: String) {
|
|
4224
4245
|
researchContents(
|
|
@@ -4235,6 +4256,15 @@ mutation ResearchContents($connector: ContentPublishingConnectorInput!, $filter:
|
|
|
4235
4256
|
}
|
|
4236
4257
|
"""
|
|
4237
4258
|
|
|
4259
|
+
RESTART_CONTENT_GQL = """
|
|
4260
|
+
mutation RestartContent($id: ID!) {
|
|
4261
|
+
restartContent(id: $id) {
|
|
4262
|
+
id
|
|
4263
|
+
state
|
|
4264
|
+
}
|
|
4265
|
+
}
|
|
4266
|
+
"""
|
|
4267
|
+
|
|
4238
4268
|
SCREENSHOT_PAGE_GQL = """
|
|
4239
4269
|
mutation ScreenshotPage($uri: URL!, $maximumHeight: Int, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $correlationId: String) {
|
|
4240
4270
|
screenshotPage(
|
|
@@ -8305,6 +8335,7 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
|
8305
8335
|
bucketName
|
|
8306
8336
|
prefix
|
|
8307
8337
|
region
|
|
8338
|
+
customEndpoint
|
|
8308
8339
|
}
|
|
8309
8340
|
azureBlob {
|
|
8310
8341
|
storageAccessKey
|
|
@@ -8833,6 +8864,7 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
|
8833
8864
|
bucketName
|
|
8834
8865
|
prefix
|
|
8835
8866
|
region
|
|
8867
|
+
customEndpoint
|
|
8836
8868
|
}
|
|
8837
8869
|
azureBlob {
|
|
8838
8870
|
storageAccessKey
|
|
@@ -17541,6 +17573,17 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
|
|
|
17541
17573
|
enableSnapshots
|
|
17542
17574
|
snapshotCount
|
|
17543
17575
|
}
|
|
17576
|
+
gate {
|
|
17577
|
+
type
|
|
17578
|
+
specification {
|
|
17579
|
+
id
|
|
17580
|
+
}
|
|
17581
|
+
rules {
|
|
17582
|
+
if
|
|
17583
|
+
}
|
|
17584
|
+
uri
|
|
17585
|
+
onReject
|
|
17586
|
+
}
|
|
17544
17587
|
}
|
|
17545
17588
|
actions {
|
|
17546
17589
|
connector {
|
|
@@ -17817,6 +17860,17 @@ query GetWorkflow($id: ID!, $correlationId: String) {
|
|
|
17817
17860
|
enableSnapshots
|
|
17818
17861
|
snapshotCount
|
|
17819
17862
|
}
|
|
17863
|
+
gate {
|
|
17864
|
+
type
|
|
17865
|
+
specification {
|
|
17866
|
+
id
|
|
17867
|
+
}
|
|
17868
|
+
rules {
|
|
17869
|
+
if
|
|
17870
|
+
}
|
|
17871
|
+
uri
|
|
17872
|
+
onReject
|
|
17873
|
+
}
|
|
17820
17874
|
}
|
|
17821
17875
|
actions {
|
|
17822
17876
|
connector {
|
|
@@ -18064,6 +18118,17 @@ query QueryWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
|
|
18064
18118
|
enableSnapshots
|
|
18065
18119
|
snapshotCount
|
|
18066
18120
|
}
|
|
18121
|
+
gate {
|
|
18122
|
+
type
|
|
18123
|
+
specification {
|
|
18124
|
+
id
|
|
18125
|
+
}
|
|
18126
|
+
rules {
|
|
18127
|
+
if
|
|
18128
|
+
}
|
|
18129
|
+
uri
|
|
18130
|
+
onReject
|
|
18131
|
+
}
|
|
18067
18132
|
}
|
|
18068
18133
|
actions {
|
|
18069
18134
|
connector {
|
|
@@ -18305,6 +18370,17 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
|
|
|
18305
18370
|
enableSnapshots
|
|
18306
18371
|
snapshotCount
|
|
18307
18372
|
}
|
|
18373
|
+
gate {
|
|
18374
|
+
type
|
|
18375
|
+
specification {
|
|
18376
|
+
id
|
|
18377
|
+
}
|
|
18378
|
+
rules {
|
|
18379
|
+
if
|
|
18380
|
+
}
|
|
18381
|
+
uri
|
|
18382
|
+
onReject
|
|
18383
|
+
}
|
|
18308
18384
|
}
|
|
18309
18385
|
actions {
|
|
18310
18386
|
connector {
|
|
@@ -18545,6 +18621,17 @@ mutation UpsertWorkflow($workflow: WorkflowInput!) {
|
|
|
18545
18621
|
enableSnapshots
|
|
18546
18622
|
snapshotCount
|
|
18547
18623
|
}
|
|
18624
|
+
gate {
|
|
18625
|
+
type
|
|
18626
|
+
specification {
|
|
18627
|
+
id
|
|
18628
|
+
}
|
|
18629
|
+
rules {
|
|
18630
|
+
if
|
|
18631
|
+
}
|
|
18632
|
+
uri
|
|
18633
|
+
onReject
|
|
18634
|
+
}
|
|
18548
18635
|
}
|
|
18549
18636
|
actions {
|
|
18550
18637
|
connector {
|
graphlit_api/query_feeds.py
CHANGED
|
@@ -144,6 +144,7 @@ class QueryFeedsFeedsResultsSiteS3(BaseModel):
|
|
|
144
144
|
bucket_name: Optional[str] = Field(alias="bucketName")
|
|
145
145
|
prefix: Optional[str]
|
|
146
146
|
region: Optional[str]
|
|
147
|
+
custom_endpoint: Optional[str] = Field(alias="customEndpoint")
|
|
147
148
|
|
|
148
149
|
|
|
149
150
|
class QueryFeedsFeedsResultsSiteAzureBlob(BaseModel):
|
graphlit_api/query_workflows.py
CHANGED
|
@@ -32,6 +32,8 @@ from .enums import (
|
|
|
32
32
|
ReductoOcrModes,
|
|
33
33
|
ReductoOcrSystems,
|
|
34
34
|
RegexSourceTypes,
|
|
35
|
+
StorageGateRejectionActions,
|
|
36
|
+
StorageGateTypes,
|
|
35
37
|
StoragePolicyTypes,
|
|
36
38
|
SummarizationTypes,
|
|
37
39
|
)
|
|
@@ -415,6 +417,7 @@ class QueryWorkflowsWorkflowsResultsEnrichmentEntityResolutionSpecification(Base
|
|
|
415
417
|
|
|
416
418
|
class QueryWorkflowsWorkflowsResultsStorage(BaseModel):
|
|
417
419
|
policy: Optional["QueryWorkflowsWorkflowsResultsStoragePolicy"]
|
|
420
|
+
gate: Optional["QueryWorkflowsWorkflowsResultsStorageGate"]
|
|
418
421
|
|
|
419
422
|
|
|
420
423
|
class QueryWorkflowsWorkflowsResultsStoragePolicy(BaseModel):
|
|
@@ -425,6 +428,22 @@ class QueryWorkflowsWorkflowsResultsStoragePolicy(BaseModel):
|
|
|
425
428
|
snapshot_count: Optional[int] = Field(alias="snapshotCount")
|
|
426
429
|
|
|
427
430
|
|
|
431
|
+
class QueryWorkflowsWorkflowsResultsStorageGate(BaseModel):
|
|
432
|
+
type: StorageGateTypes
|
|
433
|
+
specification: Optional["QueryWorkflowsWorkflowsResultsStorageGateSpecification"]
|
|
434
|
+
rules: Optional[List["QueryWorkflowsWorkflowsResultsStorageGateRules"]]
|
|
435
|
+
uri: Optional[Any]
|
|
436
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(alias="onReject")
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
class QueryWorkflowsWorkflowsResultsStorageGateSpecification(BaseModel):
|
|
440
|
+
id: str
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
class QueryWorkflowsWorkflowsResultsStorageGateRules(BaseModel):
|
|
444
|
+
if_: str = Field(alias="if")
|
|
445
|
+
|
|
446
|
+
|
|
428
447
|
class QueryWorkflowsWorkflowsResultsActions(BaseModel):
|
|
429
448
|
connector: Optional["QueryWorkflowsWorkflowsResultsActionsConnector"]
|
|
430
449
|
|
|
@@ -488,5 +507,6 @@ QueryWorkflowsWorkflowsResultsEnrichmentJobs.model_rebuild()
|
|
|
488
507
|
QueryWorkflowsWorkflowsResultsEnrichmentJobsConnector.model_rebuild()
|
|
489
508
|
QueryWorkflowsWorkflowsResultsEnrichmentEntityResolution.model_rebuild()
|
|
490
509
|
QueryWorkflowsWorkflowsResultsStorage.model_rebuild()
|
|
510
|
+
QueryWorkflowsWorkflowsResultsStorageGate.model_rebuild()
|
|
491
511
|
QueryWorkflowsWorkflowsResultsActions.model_rebuild()
|
|
492
512
|
QueryWorkflowsWorkflowsResultsActionsConnector.model_rebuild()
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from .enums import EntityState
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class RejectContent(BaseModel):
|
|
13
|
+
reject_content: Optional["RejectContentRejectContent"] = Field(
|
|
14
|
+
alias="rejectContent"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class RejectContentRejectContent(BaseModel):
|
|
19
|
+
id: str
|
|
20
|
+
state: EntityState
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
RejectContent.model_rebuild()
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
from .enums import EntityState
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class RestartContent(BaseModel):
|
|
13
|
+
restart_content: Optional["RestartContentRestartContent"] = Field(
|
|
14
|
+
alias="restartContent"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class RestartContentRestartContent(BaseModel):
|
|
19
|
+
id: str
|
|
20
|
+
state: EntityState
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
RestartContent.model_rebuild()
|
graphlit_api/update_workflow.py
CHANGED
|
@@ -32,6 +32,8 @@ from .enums import (
|
|
|
32
32
|
ReductoOcrModes,
|
|
33
33
|
ReductoOcrSystems,
|
|
34
34
|
RegexSourceTypes,
|
|
35
|
+
StorageGateRejectionActions,
|
|
36
|
+
StorageGateTypes,
|
|
35
37
|
StoragePolicyTypes,
|
|
36
38
|
SummarizationTypes,
|
|
37
39
|
)
|
|
@@ -405,6 +407,7 @@ class UpdateWorkflowUpdateWorkflowEnrichmentEntityResolutionSpecification(BaseMo
|
|
|
405
407
|
|
|
406
408
|
class UpdateWorkflowUpdateWorkflowStorage(BaseModel):
|
|
407
409
|
policy: Optional["UpdateWorkflowUpdateWorkflowStoragePolicy"]
|
|
410
|
+
gate: Optional["UpdateWorkflowUpdateWorkflowStorageGate"]
|
|
408
411
|
|
|
409
412
|
|
|
410
413
|
class UpdateWorkflowUpdateWorkflowStoragePolicy(BaseModel):
|
|
@@ -415,6 +418,22 @@ class UpdateWorkflowUpdateWorkflowStoragePolicy(BaseModel):
|
|
|
415
418
|
snapshot_count: Optional[int] = Field(alias="snapshotCount")
|
|
416
419
|
|
|
417
420
|
|
|
421
|
+
class UpdateWorkflowUpdateWorkflowStorageGate(BaseModel):
|
|
422
|
+
type: StorageGateTypes
|
|
423
|
+
specification: Optional["UpdateWorkflowUpdateWorkflowStorageGateSpecification"]
|
|
424
|
+
rules: Optional[List["UpdateWorkflowUpdateWorkflowStorageGateRules"]]
|
|
425
|
+
uri: Optional[Any]
|
|
426
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(alias="onReject")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class UpdateWorkflowUpdateWorkflowStorageGateSpecification(BaseModel):
|
|
430
|
+
id: str
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class UpdateWorkflowUpdateWorkflowStorageGateRules(BaseModel):
|
|
434
|
+
if_: str = Field(alias="if")
|
|
435
|
+
|
|
436
|
+
|
|
418
437
|
class UpdateWorkflowUpdateWorkflowActions(BaseModel):
|
|
419
438
|
connector: Optional["UpdateWorkflowUpdateWorkflowActionsConnector"]
|
|
420
439
|
|
|
@@ -477,5 +496,6 @@ UpdateWorkflowUpdateWorkflowEnrichmentJobs.model_rebuild()
|
|
|
477
496
|
UpdateWorkflowUpdateWorkflowEnrichmentJobsConnector.model_rebuild()
|
|
478
497
|
UpdateWorkflowUpdateWorkflowEnrichmentEntityResolution.model_rebuild()
|
|
479
498
|
UpdateWorkflowUpdateWorkflowStorage.model_rebuild()
|
|
499
|
+
UpdateWorkflowUpdateWorkflowStorageGate.model_rebuild()
|
|
480
500
|
UpdateWorkflowUpdateWorkflowActions.model_rebuild()
|
|
481
501
|
UpdateWorkflowUpdateWorkflowActionsConnector.model_rebuild()
|
graphlit_api/upsert_workflow.py
CHANGED
|
@@ -32,6 +32,8 @@ from .enums import (
|
|
|
32
32
|
ReductoOcrModes,
|
|
33
33
|
ReductoOcrSystems,
|
|
34
34
|
RegexSourceTypes,
|
|
35
|
+
StorageGateRejectionActions,
|
|
36
|
+
StorageGateTypes,
|
|
35
37
|
StoragePolicyTypes,
|
|
36
38
|
SummarizationTypes,
|
|
37
39
|
)
|
|
@@ -405,6 +407,7 @@ class UpsertWorkflowUpsertWorkflowEnrichmentEntityResolutionSpecification(BaseMo
|
|
|
405
407
|
|
|
406
408
|
class UpsertWorkflowUpsertWorkflowStorage(BaseModel):
|
|
407
409
|
policy: Optional["UpsertWorkflowUpsertWorkflowStoragePolicy"]
|
|
410
|
+
gate: Optional["UpsertWorkflowUpsertWorkflowStorageGate"]
|
|
408
411
|
|
|
409
412
|
|
|
410
413
|
class UpsertWorkflowUpsertWorkflowStoragePolicy(BaseModel):
|
|
@@ -415,6 +418,22 @@ class UpsertWorkflowUpsertWorkflowStoragePolicy(BaseModel):
|
|
|
415
418
|
snapshot_count: Optional[int] = Field(alias="snapshotCount")
|
|
416
419
|
|
|
417
420
|
|
|
421
|
+
class UpsertWorkflowUpsertWorkflowStorageGate(BaseModel):
|
|
422
|
+
type: StorageGateTypes
|
|
423
|
+
specification: Optional["UpsertWorkflowUpsertWorkflowStorageGateSpecification"]
|
|
424
|
+
rules: Optional[List["UpsertWorkflowUpsertWorkflowStorageGateRules"]]
|
|
425
|
+
uri: Optional[Any]
|
|
426
|
+
on_reject: Optional[StorageGateRejectionActions] = Field(alias="onReject")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class UpsertWorkflowUpsertWorkflowStorageGateSpecification(BaseModel):
|
|
430
|
+
id: str
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class UpsertWorkflowUpsertWorkflowStorageGateRules(BaseModel):
|
|
434
|
+
if_: str = Field(alias="if")
|
|
435
|
+
|
|
436
|
+
|
|
418
437
|
class UpsertWorkflowUpsertWorkflowActions(BaseModel):
|
|
419
438
|
connector: Optional["UpsertWorkflowUpsertWorkflowActionsConnector"]
|
|
420
439
|
|
|
@@ -477,5 +496,6 @@ UpsertWorkflowUpsertWorkflowEnrichmentJobs.model_rebuild()
|
|
|
477
496
|
UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector.model_rebuild()
|
|
478
497
|
UpsertWorkflowUpsertWorkflowEnrichmentEntityResolution.model_rebuild()
|
|
479
498
|
UpsertWorkflowUpsertWorkflowStorage.model_rebuild()
|
|
499
|
+
UpsertWorkflowUpsertWorkflowStorageGate.model_rebuild()
|
|
480
500
|
UpsertWorkflowUpsertWorkflowActions.model_rebuild()
|
|
481
501
|
UpsertWorkflowUpsertWorkflowActionsConnector.model_rebuild()
|
{graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/RECORD
RENAMED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
graphlit/__init__.py,sha256=D3Qg8szqjSHDVcAY3uwwuok9umiUOUB7Xg6ZovHJHbA,31
|
|
2
2
|
graphlit/graphlit.py,sha256=qsvNZMS4A0tcpujZI3XNHuTrNO1sDg94irIRQ4GL-pw,2337
|
|
3
|
-
graphlit_api/__init__.py,sha256=
|
|
3
|
+
graphlit_api/__init__.py,sha256=xkx2RdOQujbMOPZopG84emNLOGFtROoNSTRsAIIx4fs,345642
|
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
|
5
|
+
graphlit_api/approve_content.py,sha256=YDpE6Q0KaWutphAwo7oSSfjEWbUDrc0sCVDjYfkY0WQ,436
|
|
5
6
|
graphlit_api/ask_graphlit.py,sha256=U7qAS7KyykQO5Oh0C2_29wDANt8bTXGLpKxKKO-2N6U,6824
|
|
6
7
|
graphlit_api/async_base_client.py,sha256=RCTcJJTUQQ3MOjza_VZQG3E0fvKpFSfb9Z0O-tVrGlY,12493
|
|
7
8
|
graphlit_api/base_model.py,sha256=S-phq2fzKu2Kuct1dUnbyvMPT5k7TsfqOkCf_3yZ19I,640
|
|
8
9
|
graphlit_api/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
|
9
10
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
|
10
|
-
graphlit_api/client.py,sha256=
|
|
11
|
+
graphlit_api/client.py,sha256=LmyG0RTE-bYT8flXWbyXzOLe4bhmRI09dFWnFM6m0SM,276421
|
|
11
12
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
|
12
13
|
graphlit_api/complete_conversation.py,sha256=oWyIbNC4K8n5Bi8pfROEkt19UqTjbKCxWpSj_GeQdkM,17514
|
|
13
14
|
graphlit_api/continue_conversation.py,sha256=CcFYtxblszVMq76aRhH5vq0quU9GK6W2BAW_Sz49K8o,17514
|
|
@@ -76,7 +77,7 @@ graphlit_api/create_software.py,sha256=Y9hvsa5XoLzkjm2e_CycKpdIV734tGC4fBHPyGpNU
|
|
|
76
77
|
graphlit_api/create_specification.py,sha256=p23AxlkOa4UJP20C1Cn3Iqi_bVYzauH7f5MxPuhXuHY,643
|
|
77
78
|
graphlit_api/create_user.py,sha256=vISVh1FwTbOBHBQkxDq4AatQFkoe6hF2GLZUyUuhNMY,496
|
|
78
79
|
graphlit_api/create_view.py,sha256=TN4f2IaEG8SgaASqviL76FaiiQuvrPgM-_mGWx2fPJY,11495
|
|
79
|
-
graphlit_api/create_workflow.py,sha256=
|
|
80
|
+
graphlit_api/create_workflow.py,sha256=ryrPpSTJxIyW1JFsTwm0100ge98lPSSSMxcjfk7oXJY,19311
|
|
80
81
|
graphlit_api/delete_alert.py,sha256=lSFt3rOfbW-Sl9QdcvvtABwqj0e_zs48UPkXjDpfJ8Y,398
|
|
81
82
|
graphlit_api/delete_alerts.py,sha256=Rza3SIO0ykapJk-HZ0JMuPtlG8_KcLTAOwNJbaGCH_8,442
|
|
82
83
|
graphlit_api/delete_all_alerts.py,sha256=O-bKV3mKWEPddj3yLBTpoiquj_1kK1Oqr0iGpJuobns,469
|
|
@@ -185,7 +186,7 @@ graphlit_api/enrich_organizations.py,sha256=N4xjNQ055XqHinYb5kYirBi5jteE9ZJl75aW
|
|
|
185
186
|
graphlit_api/enrich_persons.py,sha256=PzOyz744u6krplAMe7mK8UlblENXEQbtQLAJ24IRi40,410
|
|
186
187
|
graphlit_api/enrich_places.py,sha256=0yF-P8Otl-lVse3_KN15fxuGw4RkGdYvsplvKc4hLqU,402
|
|
187
188
|
graphlit_api/enrich_products.py,sha256=KiHCRKGhyfoghVp8driKwWhKa9VDzUWVkRBCuKMhRrw,418
|
|
188
|
-
graphlit_api/enums.py,sha256=
|
|
189
|
+
graphlit_api/enums.py,sha256=dHFz_FInYInL5FA2srIoFruWws9Jok-gN74yQqPvoF8,37685
|
|
189
190
|
graphlit_api/exceptions.py,sha256=p3CCuIIxUdzFbJwMQ3XqQnYtQ9eH1Hi1_StoA9wk-Aw,2448
|
|
190
191
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
|
191
192
|
graphlit_api/extract_observables.py,sha256=2sUFDZdX00IzfLEMDyNHVkIbQq1pX9E2imC1KXvCmXk,5879
|
|
@@ -200,7 +201,7 @@ graphlit_api/get_content.py,sha256=qyoavX1mkXeuUNQIlBa0yrGorVswgwcARzfDoOjGisI,2
|
|
|
200
201
|
graphlit_api/get_conversation.py,sha256=b8lNJiEpQ0yhpGtE1dyH3QqEVViZRbsSjqdMv4UMhpQ,19336
|
|
201
202
|
graphlit_api/get_event.py,sha256=KPVGCpnCR2gXX3TPEucNFn8JYJtjXB_BGxCFgLcUC9g,3337
|
|
202
203
|
graphlit_api/get_fact.py,sha256=JGzoyXcpPdCmpeZ7DG8ourHcDf6PM_pHxWDwiatyOb8,1891
|
|
203
|
-
graphlit_api/get_feed.py,sha256=
|
|
204
|
+
graphlit_api/get_feed.py,sha256=A51ffaELJBw-z4FBfZ_r7fiYKitYtif9ecaX_3EVE1I,26420
|
|
204
205
|
graphlit_api/get_investment.py,sha256=zVhescZpE76yXfTbg1gN9q4Rv-FL5PSCXlbcARawHJ4,3603
|
|
205
206
|
graphlit_api/get_investment_fund.py,sha256=kTYbuohSxxO985l3BbMCXdO995GMjW7JLlY3qd_LefM,3729
|
|
206
207
|
graphlit_api/get_label.py,sha256=dVPfWg_yJ2pXHzOeJsuN3C2elsu6wXQG37fRmdrNKk0,546
|
|
@@ -227,7 +228,7 @@ graphlit_api/get_specification.py,sha256=luB4zYI4CjTI-nKdh7B87u5_oXWdG1u_fSNr6jp
|
|
|
227
228
|
graphlit_api/get_user.py,sha256=zQr0F-bK7nRf0W7KFAiWP2Sy2adiDYoFdOVV_IaDT7E,3526
|
|
228
229
|
graphlit_api/get_user_by_identifier.py,sha256=3gCuVecgX3_PJ6YBjEvnRtEnGcRlKipNhfisxqWoqNs,4402
|
|
229
230
|
graphlit_api/get_view.py,sha256=KVrjyEoEC3H9mCnu84bH6c8b2-efmQX7dY7pWnFHG7c,10562
|
|
230
|
-
graphlit_api/get_workflow.py,sha256=
|
|
231
|
+
graphlit_api/get_workflow.py,sha256=lW-pWOkHVM90GORBiwZa_uzp1pJtLEZp8u9oYXdmxm4,17951
|
|
231
232
|
graphlit_api/ingest_batch.py,sha256=4l7XVeJMfmoPEUcvSp2TSZcTecfEBnJCNjaUOFyTLVs,2396
|
|
232
233
|
graphlit_api/ingest_encoded_file.py,sha256=38128e__CTSSRJSwJ2-usCZM7-FMRtN-7z5dbBAqlAI,2637
|
|
233
234
|
graphlit_api/ingest_event.py,sha256=gJzwQRyerz-WhSDbkFnZyMtDbt5_iF8xa7QjfcH-OwA,2366
|
|
@@ -235,7 +236,7 @@ graphlit_api/ingest_memory.py,sha256=ukFnBZHvdT_oaM3FgM8PLqFYcC4tt26ATkQmkm8KQo8
|
|
|
235
236
|
graphlit_api/ingest_text.py,sha256=5xuXwHBc4jEQR0t-Jy3F84VHttHnQw-a30uhuEMXUec,2316
|
|
236
237
|
graphlit_api/ingest_text_batch.py,sha256=r3ZPz5gHg81v6eIEKuEZEBg_X9Cv2jaLSiz5nfaOB_A,2551
|
|
237
238
|
graphlit_api/ingest_uri.py,sha256=ufuiJ4JcVZDFhWnk6cOGVntoe6WgKTwK67RgyLYXD-U,2278
|
|
238
|
-
graphlit_api/input_types.py,sha256=
|
|
239
|
+
graphlit_api/input_types.py,sha256=_btNb3cz89KnXbDYDD2FBItjl8kd1-XFgsv8Klf5Els,226918
|
|
239
240
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
|
240
241
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
|
241
242
|
graphlit_api/lookup_contents.py,sha256=AerwxqeexOsmTLvFiouiw0fWRYynS4qwDBYR60CXiTs,23664
|
|
@@ -244,7 +245,7 @@ graphlit_api/lookup_entity.py,sha256=R9KV_sQpH5dinGYIpzpAhoRatJnEKZe27kL45WWEl6s
|
|
|
244
245
|
graphlit_api/lookup_usage.py,sha256=4mCkBvDtScCF-mDds5JxpDbD47PY6cfniM-Pl9UG1_E,1571
|
|
245
246
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
|
246
247
|
graphlit_api/match_entity.py,sha256=FOSSAoG7T250uAXEhHhu7RIorJK8zG8lX9jpLPneUG8,809
|
|
247
|
-
graphlit_api/operations.py,sha256=
|
|
248
|
+
graphlit_api/operations.py,sha256=mbvcnS1ltg1U9VNn8nxqEVExM--eu5j5q1j1QrY0t34,320172
|
|
248
249
|
graphlit_api/prompt.py,sha256=QL3HDVz_QtXmKX7TL8oMMa-9BB28IJx6E9Q8ugFByGg,6538
|
|
249
250
|
graphlit_api/prompt_conversation.py,sha256=8By4zKqU2rh9eAhTtFDQdbx9rX7kThCFFsIsZ-1g5b0,17128
|
|
250
251
|
graphlit_api/prompt_specifications.py,sha256=SJZifJCLVgcEFX2PGIMc3MA3tDnJBVRauc6ePUeZx8o,7425
|
|
@@ -270,7 +271,7 @@ graphlit_api/query_events_clusters.py,sha256=BgG68g3v3BvMfuM7xhjs58ZmXSOiws5pOO5
|
|
|
270
271
|
graphlit_api/query_facts.py,sha256=p7LrbRM9Lrg9GdKRml8ViJKXmmkPBTamNbpMeW65jL4,2265
|
|
271
272
|
graphlit_api/query_facts_clusters.py,sha256=zA0LVqMQPzfvc0nD1MYnr7stjJGrhBSR121anLTb0dk,2859
|
|
272
273
|
graphlit_api/query_facts_graph.py,sha256=ymLfS7fa4TKwATSH7QKEbr-ieXJMrLLLIGBChzHpDGI,906
|
|
273
|
-
graphlit_api/query_feeds.py,sha256=
|
|
274
|
+
graphlit_api/query_feeds.py,sha256=ekX7_TaB28Tn8hkFw8LBiHNjQeBU3sLUuPGtCUmUfxo,28766
|
|
274
275
|
graphlit_api/query_git_hub_repositories.py,sha256=DxMb53h8zy55q5AvA1dskpVNAizJCJvs85boW-YUkOo,1288
|
|
275
276
|
graphlit_api/query_google_calendars.py,sha256=2QdNfQE0C-Evg3ySNGA4q6QQGwj0bKUS_6URot6Qccw,725
|
|
276
277
|
graphlit_api/query_google_drive_folders.py,sha256=E3fjp3hrdcHAp8xfes_u3xi7s30S13zOdraxcsMfQpg,833
|
|
@@ -335,11 +336,13 @@ graphlit_api/query_tokens.py,sha256=8lvoWuoTOGVxiJT089EgzwUt78UPc1dcvN1rMveO07M,
|
|
|
335
336
|
graphlit_api/query_usage.py,sha256=ybUR3bidNeyrxzWfvWsyy9F-p1jx2R8OTlxdq7j3FhU,1505
|
|
336
337
|
graphlit_api/query_users.py,sha256=USdrnTJBd8bPa7CDcX4mqaY5x6l0SXILZtnFxUdirwk,3978
|
|
337
338
|
graphlit_api/query_views.py,sha256=p9NmIrBxIXjiKJ1OTsUpLAXtFilsA-yjxK2gYo7QiYY,12076
|
|
338
|
-
graphlit_api/query_workflows.py,sha256=
|
|
339
|
+
graphlit_api/query_workflows.py,sha256=F30VuH3crn2ajaYYwx3YhYm8BiyTdmYfpx_cWbsbMAg,19962
|
|
340
|
+
graphlit_api/reject_content.py,sha256=7sOV89RcuqbWl7I1xtFvLHYWPaabw4HJN6H7phVAHHo,428
|
|
339
341
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
|
340
342
|
graphlit_api/research_contents.py,sha256=B52wis9Tfg-P-Mwf4LbIj6qOVK7SU6SXsVoYhshKymM,412
|
|
341
343
|
graphlit_api/resolve_entities.py,sha256=Sa7v3030lVZn7O6ZaYZUFtlvKOZ2-KZNJYnbXhZrvKU,1752
|
|
342
344
|
graphlit_api/resolve_entity.py,sha256=AgO15B8VDUEccRb26sA9Ct96fmVMccD21uSSVKGSxxc,863
|
|
345
|
+
graphlit_api/restart_content.py,sha256=vcvI4YbdL6G8KgM50K8FeBmdzkYw_p9Jhyg_bcANvV4,436
|
|
343
346
|
graphlit_api/retrieve_entities.py,sha256=ttpiJuOghQSrOeevf5uiSo7-kHZM_CfyKd-qjwtgGdE,738
|
|
344
347
|
graphlit_api/retrieve_facts.py,sha256=zl3u_MRH2ChDJgXhXGJDPSN1Sn2CtHNe493AY3EmJI8,2871
|
|
345
348
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
|
@@ -390,17 +393,17 @@ graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePym
|
|
|
390
393
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
|
391
394
|
graphlit_api/update_user.py,sha256=r7VfMw19P4u6POz4yEbcFW65-TVAjyBlB3te2_fY6I8,496
|
|
392
395
|
graphlit_api/update_view.py,sha256=NYy3vTirl1LxgX0jVU8uLjql5Trs0PS8HIKz-0bVHRc,11495
|
|
393
|
-
graphlit_api/update_workflow.py,sha256
|
|
396
|
+
graphlit_api/update_workflow.py,sha256=-eMdy4EHnudptVPGEnpOsCBSNfjNAo9yLHWx0iI_ccI,19311
|
|
394
397
|
graphlit_api/upsert_alert.py,sha256=3pmYrFOXAkIg592p0zaR6g5F1w-TdbhgvjRB-N2hbTM,445
|
|
395
398
|
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
|
396
399
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
|
397
400
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
|
398
401
|
graphlit_api/upsert_view.py,sha256=OChB2I0ZYW_HvJUYyKyODnWkaIut1PaSowSRqEsS0Q0,11495
|
|
399
|
-
graphlit_api/upsert_workflow.py,sha256=
|
|
402
|
+
graphlit_api/upsert_workflow.py,sha256=YUMnKQXZsbd-Yx8gXRipK7QwIkoCNuqh81pvfoIPOtA,19311
|
|
400
403
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
|
401
404
|
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.
|
|
405
|
+
graphlit_client-1.0.20260113001.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
406
|
+
graphlit_client-1.0.20260113001.dist-info/METADATA,sha256=_PeV4gauKqt2UaCJ_PF4dnPaX4wSEa9EitpE-D6b0Xg,3408
|
|
407
|
+
graphlit_client-1.0.20260113001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
408
|
+
graphlit_client-1.0.20260113001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
409
|
+
graphlit_client-1.0.20260113001.dist-info/RECORD,,
|
{graphlit_client-1.0.20260111001.dist-info → graphlit_client-1.0.20260113001.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|