graphlit-client 1.0.20250306001__py3-none-any.whl → 1.0.20250315001__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 +231 -68
- graphlit_api/client.py +82 -0
- graphlit_api/create_workflow.py +72 -0
- graphlit_api/enums.py +18 -1
- graphlit_api/get_alert.py +7 -0
- graphlit_api/get_content.py +0 -1
- graphlit_api/get_user.py +7 -0
- graphlit_api/get_workflow.py +62 -0
- graphlit_api/input_types.py +55 -0
- graphlit_api/lookup_credits.py +1 -0
- graphlit_api/operations.py +444 -325
- graphlit_api/query_alerts.py +7 -0
- graphlit_api/query_contents.py +0 -13
- graphlit_api/query_contents_facets.py +1 -349
- graphlit_api/query_credits.py +1 -0
- graphlit_api/query_users.py +7 -0
- graphlit_api/query_workflows.py +72 -0
- graphlit_api/send_notification.py +21 -0
- graphlit_api/update_workflow.py +72 -0
- graphlit_api/upsert_category.py +22 -0
- graphlit_api/upsert_label.py +20 -0
- graphlit_api/upsert_specification.py +26 -0
- graphlit_api/upsert_workflow.py +405 -0
- {graphlit_client-1.0.20250306001.dist-info → graphlit_client-1.0.20250315001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250306001.dist-info → graphlit_client-1.0.20250315001.dist-info}/RECORD +28 -23
- {graphlit_client-1.0.20250306001.dist-info → graphlit_client-1.0.20250315001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20250306001.dist-info → graphlit_client-1.0.20250315001.dist-info}/LICENSE +0 -0
- {graphlit_client-1.0.20250306001.dist-info → graphlit_client-1.0.20250315001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -213,7 +213,16 @@ from .create_workflow import (
|
|
213
213
|
CreateWorkflowCreateWorkflow,
|
214
214
|
CreateWorkflowCreateWorkflowActions,
|
215
215
|
CreateWorkflowCreateWorkflowActionsConnector,
|
216
|
+
CreateWorkflowCreateWorkflowActionsConnectorEmail,
|
216
217
|
CreateWorkflowCreateWorkflowActionsConnectorSlack,
|
218
|
+
CreateWorkflowCreateWorkflowClassification,
|
219
|
+
CreateWorkflowCreateWorkflowClassificationJobs,
|
220
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnector,
|
221
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnectorModel,
|
222
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnectorModelRules,
|
223
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnectorModelSpecification,
|
224
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnectorRegex,
|
225
|
+
CreateWorkflowCreateWorkflowClassificationJobsConnectorRegexRules,
|
217
226
|
CreateWorkflowCreateWorkflowEnrichment,
|
218
227
|
CreateWorkflowCreateWorkflowEnrichmentJobs,
|
219
228
|
CreateWorkflowCreateWorkflowEnrichmentJobsConnector,
|
@@ -511,6 +520,7 @@ from .enums import (
|
|
511
520
|
CohereModels,
|
512
521
|
CollectionTypes,
|
513
522
|
ConnectorTypes,
|
523
|
+
ContentClassificationServiceTypes,
|
514
524
|
ContentFacetTypes,
|
515
525
|
ContentIndexingServiceTypes,
|
516
526
|
ContentPublishingFormats,
|
@@ -582,6 +592,7 @@ from .enums import (
|
|
582
592
|
PolicyTimeTypes,
|
583
593
|
ProductFacetTypes,
|
584
594
|
PromptStrategyTypes,
|
595
|
+
RegexSourceTypes,
|
585
596
|
RenditionTypes,
|
586
597
|
ReplicateModels,
|
587
598
|
RepoFacetTypes,
|
@@ -685,6 +696,7 @@ from .get_alert import (
|
|
685
696
|
GetAlertAlertFilterUsers,
|
686
697
|
GetAlertAlertFilterWorkflows,
|
687
698
|
GetAlertAlertIntegration,
|
699
|
+
GetAlertAlertIntegrationEmail,
|
688
700
|
GetAlertAlertIntegrationSlack,
|
689
701
|
GetAlertAlertOwner,
|
690
702
|
GetAlertAlertPublishing,
|
@@ -927,6 +939,7 @@ from .get_user import (
|
|
927
939
|
GetUserUserConnectorsAuthenticationGoogle,
|
928
940
|
GetUserUserConnectorsAuthenticationMicrosoft,
|
929
941
|
GetUserUserConnectorsIntegration,
|
942
|
+
GetUserUserConnectorsIntegrationEmail,
|
930
943
|
GetUserUserConnectorsIntegrationSlack,
|
931
944
|
GetUserUserOwner,
|
932
945
|
)
|
@@ -935,7 +948,16 @@ from .get_workflow import (
|
|
935
948
|
GetWorkflowWorkflow,
|
936
949
|
GetWorkflowWorkflowActions,
|
937
950
|
GetWorkflowWorkflowActionsConnector,
|
951
|
+
GetWorkflowWorkflowActionsConnectorEmail,
|
938
952
|
GetWorkflowWorkflowActionsConnectorSlack,
|
953
|
+
GetWorkflowWorkflowClassification,
|
954
|
+
GetWorkflowWorkflowClassificationJobs,
|
955
|
+
GetWorkflowWorkflowClassificationJobsConnector,
|
956
|
+
GetWorkflowWorkflowClassificationJobsConnectorModel,
|
957
|
+
GetWorkflowWorkflowClassificationJobsConnectorModelRules,
|
958
|
+
GetWorkflowWorkflowClassificationJobsConnectorModelSpecification,
|
959
|
+
GetWorkflowWorkflowClassificationJobsConnectorRegex,
|
960
|
+
GetWorkflowWorkflowClassificationJobsConnectorRegexRules,
|
939
961
|
GetWorkflowWorkflowEnrichment,
|
940
962
|
GetWorkflowWorkflowEnrichmentJobs,
|
941
963
|
GetWorkflowWorkflowEnrichmentJobsConnector,
|
@@ -1062,6 +1084,8 @@ from .input_types import (
|
|
1062
1084
|
CategoryUpdateInput,
|
1063
1085
|
CerebrasModelPropertiesInput,
|
1064
1086
|
CerebrasModelPropertiesUpdateInput,
|
1087
|
+
ClassificationWorkflowJobInput,
|
1088
|
+
ClassificationWorkflowStageInput,
|
1065
1089
|
CohereModelPropertiesInput,
|
1066
1090
|
CohereModelPropertiesUpdateInput,
|
1067
1091
|
CollectionFilter,
|
@@ -1070,6 +1094,7 @@ from .input_types import (
|
|
1070
1094
|
ConnectorFilter,
|
1071
1095
|
ConnectorInput,
|
1072
1096
|
ConnectorUpdateInput,
|
1097
|
+
ContentClassificationConnectorInput,
|
1073
1098
|
ContentCriteriaInput,
|
1074
1099
|
ContentCriteriaLevelInput,
|
1075
1100
|
ContentFacetInput,
|
@@ -1104,6 +1129,7 @@ from .input_types import (
|
|
1104
1129
|
ElevenLabsPublishingPropertiesInput,
|
1105
1130
|
EmailFeedPropertiesInput,
|
1106
1131
|
EmailFeedPropertiesUpdateInput,
|
1132
|
+
EmailIntegrationPropertiesInput,
|
1107
1133
|
EmailMetadataInput,
|
1108
1134
|
EmailPreparationPropertiesInput,
|
1109
1135
|
EmbeddingsStrategyInput,
|
@@ -1228,6 +1254,7 @@ from .input_types import (
|
|
1228
1254
|
MistralDocumentPreparationPropertiesInput,
|
1229
1255
|
MistralModelPropertiesInput,
|
1230
1256
|
MistralModelPropertiesUpdateInput,
|
1257
|
+
ModelContentClassificationPropertiesInput,
|
1231
1258
|
ModelDocumentPreparationPropertiesInput,
|
1232
1259
|
ModelFilter,
|
1233
1260
|
ModelImageExtractionPropertiesInput,
|
@@ -1272,10 +1299,13 @@ from .input_types import (
|
|
1272
1299
|
ProjectInput,
|
1273
1300
|
ProjectQuotaInput,
|
1274
1301
|
ProjectUpdateInput,
|
1302
|
+
PromptClassificationRuleInput,
|
1275
1303
|
PromptStrategyInput,
|
1276
1304
|
PromptStrategyUpdateInput,
|
1277
1305
|
RedditFeedPropertiesInput,
|
1278
1306
|
RedditFeedPropertiesUpdateInput,
|
1307
|
+
RegexClassificationRuleInput,
|
1308
|
+
RegexContentClassificationPropertiesInput,
|
1279
1309
|
ReplicateModelPropertiesInput,
|
1280
1310
|
ReplicateModelPropertiesUpdateInput,
|
1281
1311
|
RepoFacetInput,
|
@@ -1592,6 +1622,7 @@ from .operations import (
|
|
1592
1622
|
REVISE_TEXT_GQL,
|
1593
1623
|
SCREENSHOT_PAGE_GQL,
|
1594
1624
|
SEARCH_WEB_GQL,
|
1625
|
+
SEND_NOTIFICATION_GQL,
|
1595
1626
|
SUGGEST_CONVERSATION_GQL,
|
1596
1627
|
SUMMARIZE_CONTENTS_GQL,
|
1597
1628
|
SUMMARIZE_TEXT_GQL,
|
@@ -1625,6 +1656,10 @@ from .operations import (
|
|
1625
1656
|
UPDATE_SPECIFICATION_GQL,
|
1626
1657
|
UPDATE_USER_GQL,
|
1627
1658
|
UPDATE_WORKFLOW_GQL,
|
1659
|
+
UPSERT_CATEGORY_GQL,
|
1660
|
+
UPSERT_LABEL_GQL,
|
1661
|
+
UPSERT_SPECIFICATION_GQL,
|
1662
|
+
UPSERT_WORKFLOW_GQL,
|
1628
1663
|
)
|
1629
1664
|
from .prompt import (
|
1630
1665
|
Prompt,
|
@@ -1737,6 +1772,7 @@ from .query_alerts import (
|
|
1737
1772
|
QueryAlertsAlertsResultsFilterUsers,
|
1738
1773
|
QueryAlertsAlertsResultsFilterWorkflows,
|
1739
1774
|
QueryAlertsAlertsResultsIntegration,
|
1775
|
+
QueryAlertsAlertsResultsIntegrationEmail,
|
1740
1776
|
QueryAlertsAlertsResultsIntegrationSlack,
|
1741
1777
|
QueryAlertsAlertsResultsOwner,
|
1742
1778
|
QueryAlertsAlertsResultsPublishing,
|
@@ -1762,7 +1798,6 @@ from .query_contents import (
|
|
1762
1798
|
QueryContentsContentsResults,
|
1763
1799
|
QueryContentsContentsResultsAddress,
|
1764
1800
|
QueryContentsContentsResultsAudio,
|
1765
|
-
QueryContentsContentsResultsChildren,
|
1766
1801
|
QueryContentsContentsResultsCollections,
|
1767
1802
|
QueryContentsContentsResultsDocument,
|
1768
1803
|
QueryContentsContentsResultsEmail,
|
@@ -1787,7 +1822,6 @@ from .query_contents import (
|
|
1787
1822
|
QueryContentsContentsResultsPages,
|
1788
1823
|
QueryContentsContentsResultsPagesChunks,
|
1789
1824
|
QueryContentsContentsResultsPagesImages,
|
1790
|
-
QueryContentsContentsResultsParent,
|
1791
1825
|
QueryContentsContentsResultsSegments,
|
1792
1826
|
QueryContentsContentsResultsVideo,
|
1793
1827
|
QueryContentsContentsResultsWorkflow,
|
@@ -1799,38 +1833,6 @@ from .query_contents_facets import (
|
|
1799
1833
|
QueryContentsFacetsContentsFacetsObservable,
|
1800
1834
|
QueryContentsFacetsContentsFacetsObservableObservable,
|
1801
1835
|
QueryContentsFacetsContentsFacetsRange,
|
1802
|
-
QueryContentsFacetsContentsResults,
|
1803
|
-
QueryContentsFacetsContentsResultsAddress,
|
1804
|
-
QueryContentsFacetsContentsResultsAudio,
|
1805
|
-
QueryContentsFacetsContentsResultsChildren,
|
1806
|
-
QueryContentsFacetsContentsResultsCollections,
|
1807
|
-
QueryContentsFacetsContentsResultsDocument,
|
1808
|
-
QueryContentsFacetsContentsResultsEmail,
|
1809
|
-
QueryContentsFacetsContentsResultsEmailBcc,
|
1810
|
-
QueryContentsFacetsContentsResultsEmailCc,
|
1811
|
-
QueryContentsFacetsContentsResultsEmailFrom,
|
1812
|
-
QueryContentsFacetsContentsResultsEmailTo,
|
1813
|
-
QueryContentsFacetsContentsResultsFeed,
|
1814
|
-
QueryContentsFacetsContentsResultsFrames,
|
1815
|
-
QueryContentsFacetsContentsResultsImage,
|
1816
|
-
QueryContentsFacetsContentsResultsIssue,
|
1817
|
-
QueryContentsFacetsContentsResultsLanguage,
|
1818
|
-
QueryContentsFacetsContentsResultsLinks,
|
1819
|
-
QueryContentsFacetsContentsResultsLocation,
|
1820
|
-
QueryContentsFacetsContentsResultsObservations,
|
1821
|
-
QueryContentsFacetsContentsResultsObservationsObservable,
|
1822
|
-
QueryContentsFacetsContentsResultsObservationsOccurrences,
|
1823
|
-
QueryContentsFacetsContentsResultsObservationsOccurrencesBoundingBox,
|
1824
|
-
QueryContentsFacetsContentsResultsObservationsRelated,
|
1825
|
-
QueryContentsFacetsContentsResultsOwner,
|
1826
|
-
QueryContentsFacetsContentsResultsPackage,
|
1827
|
-
QueryContentsFacetsContentsResultsPages,
|
1828
|
-
QueryContentsFacetsContentsResultsPagesChunks,
|
1829
|
-
QueryContentsFacetsContentsResultsPagesImages,
|
1830
|
-
QueryContentsFacetsContentsResultsParent,
|
1831
|
-
QueryContentsFacetsContentsResultsSegments,
|
1832
|
-
QueryContentsFacetsContentsResultsVideo,
|
1833
|
-
QueryContentsFacetsContentsResultsWorkflow,
|
1834
1836
|
)
|
1835
1837
|
from .query_contents_graph import (
|
1836
1838
|
QueryContentsGraph,
|
@@ -2109,6 +2111,7 @@ from .query_users import (
|
|
2109
2111
|
QueryUsersUsersResultsConnectorsAuthenticationGoogle,
|
2110
2112
|
QueryUsersUsersResultsConnectorsAuthenticationMicrosoft,
|
2111
2113
|
QueryUsersUsersResultsConnectorsIntegration,
|
2114
|
+
QueryUsersUsersResultsConnectorsIntegrationEmail,
|
2112
2115
|
QueryUsersUsersResultsConnectorsIntegrationSlack,
|
2113
2116
|
QueryUsersUsersResultsOwner,
|
2114
2117
|
)
|
@@ -2118,7 +2121,16 @@ from .query_workflows import (
|
|
2118
2121
|
QueryWorkflowsWorkflowsResults,
|
2119
2122
|
QueryWorkflowsWorkflowsResultsActions,
|
2120
2123
|
QueryWorkflowsWorkflowsResultsActionsConnector,
|
2124
|
+
QueryWorkflowsWorkflowsResultsActionsConnectorEmail,
|
2121
2125
|
QueryWorkflowsWorkflowsResultsActionsConnectorSlack,
|
2126
|
+
QueryWorkflowsWorkflowsResultsClassification,
|
2127
|
+
QueryWorkflowsWorkflowsResultsClassificationJobs,
|
2128
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnector,
|
2129
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModel,
|
2130
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModelRules,
|
2131
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModelSpecification,
|
2132
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnectorRegex,
|
2133
|
+
QueryWorkflowsWorkflowsResultsClassificationJobsConnectorRegexRules,
|
2122
2134
|
QueryWorkflowsWorkflowsResultsEnrichment,
|
2123
2135
|
QueryWorkflowsWorkflowsResultsEnrichmentJobs,
|
2124
2136
|
QueryWorkflowsWorkflowsResultsEnrichmentJobsConnector,
|
@@ -2233,6 +2245,7 @@ from .screenshot_page import (
|
|
2233
2245
|
ScreenshotPageScreenshotPageObservationsRelated,
|
2234
2246
|
)
|
2235
2247
|
from .search_web import SearchWeb, SearchWebSearchWeb, SearchWebSearchWebResults
|
2248
|
+
from .send_notification import SendNotification, SendNotificationSendNotification
|
2236
2249
|
from .suggest_conversation import (
|
2237
2250
|
SuggestConversation,
|
2238
2251
|
SuggestConversationSuggestConversation,
|
@@ -2330,7 +2343,16 @@ from .update_workflow import (
|
|
2330
2343
|
UpdateWorkflowUpdateWorkflow,
|
2331
2344
|
UpdateWorkflowUpdateWorkflowActions,
|
2332
2345
|
UpdateWorkflowUpdateWorkflowActionsConnector,
|
2346
|
+
UpdateWorkflowUpdateWorkflowActionsConnectorEmail,
|
2333
2347
|
UpdateWorkflowUpdateWorkflowActionsConnectorSlack,
|
2348
|
+
UpdateWorkflowUpdateWorkflowClassification,
|
2349
|
+
UpdateWorkflowUpdateWorkflowClassificationJobs,
|
2350
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnector,
|
2351
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModel,
|
2352
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModelRules,
|
2353
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModelSpecification,
|
2354
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnectorRegex,
|
2355
|
+
UpdateWorkflowUpdateWorkflowClassificationJobsConnectorRegexRules,
|
2334
2356
|
UpdateWorkflowUpdateWorkflowEnrichment,
|
2335
2357
|
UpdateWorkflowUpdateWorkflowEnrichmentJobs,
|
2336
2358
|
UpdateWorkflowUpdateWorkflowEnrichmentJobsConnector,
|
@@ -2370,6 +2392,66 @@ from .update_workflow import (
|
|
2370
2392
|
UpdateWorkflowUpdateWorkflowStorage,
|
2371
2393
|
UpdateWorkflowUpdateWorkflowStoragePolicy,
|
2372
2394
|
)
|
2395
|
+
from .upsert_category import UpsertCategory, UpsertCategoryUpsertCategory
|
2396
|
+
from .upsert_label import UpsertLabel, UpsertLabelUpsertLabel
|
2397
|
+
from .upsert_specification import (
|
2398
|
+
UpsertSpecification,
|
2399
|
+
UpsertSpecificationUpsertSpecification,
|
2400
|
+
)
|
2401
|
+
from .upsert_workflow import (
|
2402
|
+
UpsertWorkflow,
|
2403
|
+
UpsertWorkflowUpsertWorkflow,
|
2404
|
+
UpsertWorkflowUpsertWorkflowActions,
|
2405
|
+
UpsertWorkflowUpsertWorkflowActionsConnector,
|
2406
|
+
UpsertWorkflowUpsertWorkflowActionsConnectorEmail,
|
2407
|
+
UpsertWorkflowUpsertWorkflowActionsConnectorSlack,
|
2408
|
+
UpsertWorkflowUpsertWorkflowClassification,
|
2409
|
+
UpsertWorkflowUpsertWorkflowClassificationJobs,
|
2410
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnector,
|
2411
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModel,
|
2412
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelRules,
|
2413
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelSpecification,
|
2414
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegex,
|
2415
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegexRules,
|
2416
|
+
UpsertWorkflowUpsertWorkflowEnrichment,
|
2417
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobs,
|
2418
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector,
|
2419
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorDiffbot,
|
2420
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorFhir,
|
2421
|
+
UpsertWorkflowUpsertWorkflowEnrichmentLink,
|
2422
|
+
UpsertWorkflowUpsertWorkflowExtraction,
|
2423
|
+
UpsertWorkflowUpsertWorkflowExtractionJobs,
|
2424
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnector,
|
2425
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage,
|
2426
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText,
|
2427
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage,
|
2428
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification,
|
2429
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText,
|
2430
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelTextSpecification,
|
2431
|
+
UpsertWorkflowUpsertWorkflowIndexing,
|
2432
|
+
UpsertWorkflowUpsertWorkflowIndexingJobs,
|
2433
|
+
UpsertWorkflowUpsertWorkflowIndexingJobsConnector,
|
2434
|
+
UpsertWorkflowUpsertWorkflowIngestion,
|
2435
|
+
UpsertWorkflowUpsertWorkflowIngestionCollections,
|
2436
|
+
UpsertWorkflowUpsertWorkflowIngestionIf,
|
2437
|
+
UpsertWorkflowUpsertWorkflowIngestionObservations,
|
2438
|
+
UpsertWorkflowUpsertWorkflowIngestionObservationsObservable,
|
2439
|
+
UpsertWorkflowUpsertWorkflowPreparation,
|
2440
|
+
UpsertWorkflowUpsertWorkflowPreparationJobs,
|
2441
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnector,
|
2442
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAssemblyAi,
|
2443
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument,
|
2444
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram,
|
2445
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument,
|
2446
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail,
|
2447
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral,
|
2448
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument,
|
2449
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocumentSpecification,
|
2450
|
+
UpsertWorkflowUpsertWorkflowPreparationSummarizations,
|
2451
|
+
UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification,
|
2452
|
+
UpsertWorkflowUpsertWorkflowStorage,
|
2453
|
+
UpsertWorkflowUpsertWorkflowStoragePolicy,
|
2454
|
+
)
|
2373
2455
|
|
2374
2456
|
__all__ = [
|
2375
2457
|
"ADD_CONTENTS_TO_COLLECTIONS_GQL",
|
@@ -2496,6 +2578,8 @@ __all__ = [
|
|
2496
2578
|
"CerebrasModelPropertiesInput",
|
2497
2579
|
"CerebrasModelPropertiesUpdateInput",
|
2498
2580
|
"CerebrasModels",
|
2581
|
+
"ClassificationWorkflowJobInput",
|
2582
|
+
"ClassificationWorkflowStageInput",
|
2499
2583
|
"ClearConversation",
|
2500
2584
|
"ClearConversationClearConversation",
|
2501
2585
|
"Client",
|
@@ -2539,6 +2623,8 @@ __all__ = [
|
|
2539
2623
|
"ConnectorInput",
|
2540
2624
|
"ConnectorTypes",
|
2541
2625
|
"ConnectorUpdateInput",
|
2626
|
+
"ContentClassificationConnectorInput",
|
2627
|
+
"ContentClassificationServiceTypes",
|
2542
2628
|
"ContentCriteriaInput",
|
2543
2629
|
"ContentCriteriaLevelInput",
|
2544
2630
|
"ContentFacetInput",
|
@@ -2708,7 +2794,16 @@ __all__ = [
|
|
2708
2794
|
"CreateWorkflowCreateWorkflow",
|
2709
2795
|
"CreateWorkflowCreateWorkflowActions",
|
2710
2796
|
"CreateWorkflowCreateWorkflowActionsConnector",
|
2797
|
+
"CreateWorkflowCreateWorkflowActionsConnectorEmail",
|
2711
2798
|
"CreateWorkflowCreateWorkflowActionsConnectorSlack",
|
2799
|
+
"CreateWorkflowCreateWorkflowClassification",
|
2800
|
+
"CreateWorkflowCreateWorkflowClassificationJobs",
|
2801
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnector",
|
2802
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnectorModel",
|
2803
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnectorModelRules",
|
2804
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnectorModelSpecification",
|
2805
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnectorRegex",
|
2806
|
+
"CreateWorkflowCreateWorkflowClassificationJobsConnectorRegexRules",
|
2712
2807
|
"CreateWorkflowCreateWorkflowEnrichment",
|
2713
2808
|
"CreateWorkflowCreateWorkflowEnrichmentJobs",
|
2714
2809
|
"CreateWorkflowCreateWorkflowEnrichmentJobsConnector",
|
@@ -3050,6 +3145,7 @@ __all__ = [
|
|
3050
3145
|
"ElevenLabsPublishingPropertiesInput",
|
3051
3146
|
"EmailFeedPropertiesInput",
|
3052
3147
|
"EmailFeedPropertiesUpdateInput",
|
3148
|
+
"EmailIntegrationPropertiesInput",
|
3053
3149
|
"EmailListingTypes",
|
3054
3150
|
"EmailMetadataInput",
|
3055
3151
|
"EmailPreparationPropertiesInput",
|
@@ -3185,6 +3281,7 @@ __all__ = [
|
|
3185
3281
|
"GetAlertAlertFilterUsers",
|
3186
3282
|
"GetAlertAlertFilterWorkflows",
|
3187
3283
|
"GetAlertAlertIntegration",
|
3284
|
+
"GetAlertAlertIntegrationEmail",
|
3188
3285
|
"GetAlertAlertIntegrationSlack",
|
3189
3286
|
"GetAlertAlertOwner",
|
3190
3287
|
"GetAlertAlertPublishSpecification",
|
@@ -3411,13 +3508,23 @@ __all__ = [
|
|
3411
3508
|
"GetUserUserConnectorsAuthenticationGoogle",
|
3412
3509
|
"GetUserUserConnectorsAuthenticationMicrosoft",
|
3413
3510
|
"GetUserUserConnectorsIntegration",
|
3511
|
+
"GetUserUserConnectorsIntegrationEmail",
|
3414
3512
|
"GetUserUserConnectorsIntegrationSlack",
|
3415
3513
|
"GetUserUserOwner",
|
3416
3514
|
"GetWorkflow",
|
3417
3515
|
"GetWorkflowWorkflow",
|
3418
3516
|
"GetWorkflowWorkflowActions",
|
3419
3517
|
"GetWorkflowWorkflowActionsConnector",
|
3518
|
+
"GetWorkflowWorkflowActionsConnectorEmail",
|
3420
3519
|
"GetWorkflowWorkflowActionsConnectorSlack",
|
3520
|
+
"GetWorkflowWorkflowClassification",
|
3521
|
+
"GetWorkflowWorkflowClassificationJobs",
|
3522
|
+
"GetWorkflowWorkflowClassificationJobsConnector",
|
3523
|
+
"GetWorkflowWorkflowClassificationJobsConnectorModel",
|
3524
|
+
"GetWorkflowWorkflowClassificationJobsConnectorModelRules",
|
3525
|
+
"GetWorkflowWorkflowClassificationJobsConnectorModelSpecification",
|
3526
|
+
"GetWorkflowWorkflowClassificationJobsConnectorRegex",
|
3527
|
+
"GetWorkflowWorkflowClassificationJobsConnectorRegexRules",
|
3421
3528
|
"GetWorkflowWorkflowEnrichment",
|
3422
3529
|
"GetWorkflowWorkflowEnrichmentJobs",
|
3423
3530
|
"GetWorkflowWorkflowEnrichmentJobsConnector",
|
@@ -3649,6 +3756,7 @@ __all__ = [
|
|
3649
3756
|
"MistralModelPropertiesInput",
|
3650
3757
|
"MistralModelPropertiesUpdateInput",
|
3651
3758
|
"MistralModels",
|
3759
|
+
"ModelContentClassificationPropertiesInput",
|
3652
3760
|
"ModelDocumentPreparationPropertiesInput",
|
3653
3761
|
"ModelFilter",
|
3654
3762
|
"ModelImageExtractionPropertiesInput",
|
@@ -3717,6 +3825,7 @@ __all__ = [
|
|
3717
3825
|
"ProjectQuotaInput",
|
3718
3826
|
"ProjectUpdateInput",
|
3719
3827
|
"Prompt",
|
3828
|
+
"PromptClassificationRuleInput",
|
3720
3829
|
"PromptConversation",
|
3721
3830
|
"PromptConversationPromptConversation",
|
3722
3831
|
"PromptConversationPromptConversationConversation",
|
@@ -3857,6 +3966,7 @@ __all__ = [
|
|
3857
3966
|
"QueryAlertsAlertsResultsFilterUsers",
|
3858
3967
|
"QueryAlertsAlertsResultsFilterWorkflows",
|
3859
3968
|
"QueryAlertsAlertsResultsIntegration",
|
3969
|
+
"QueryAlertsAlertsResultsIntegrationEmail",
|
3860
3970
|
"QueryAlertsAlertsResultsIntegrationSlack",
|
3861
3971
|
"QueryAlertsAlertsResultsOwner",
|
3862
3972
|
"QueryAlertsAlertsResultsPublishSpecification",
|
@@ -3876,7 +3986,6 @@ __all__ = [
|
|
3876
3986
|
"QueryContentsContentsResults",
|
3877
3987
|
"QueryContentsContentsResultsAddress",
|
3878
3988
|
"QueryContentsContentsResultsAudio",
|
3879
|
-
"QueryContentsContentsResultsChildren",
|
3880
3989
|
"QueryContentsContentsResultsCollections",
|
3881
3990
|
"QueryContentsContentsResultsDocument",
|
3882
3991
|
"QueryContentsContentsResultsEmail",
|
@@ -3901,7 +4010,6 @@ __all__ = [
|
|
3901
4010
|
"QueryContentsContentsResultsPages",
|
3902
4011
|
"QueryContentsContentsResultsPagesChunks",
|
3903
4012
|
"QueryContentsContentsResultsPagesImages",
|
3904
|
-
"QueryContentsContentsResultsParent",
|
3905
4013
|
"QueryContentsContentsResultsSegments",
|
3906
4014
|
"QueryContentsContentsResultsVideo",
|
3907
4015
|
"QueryContentsContentsResultsWorkflow",
|
@@ -3911,38 +4019,6 @@ __all__ = [
|
|
3911
4019
|
"QueryContentsFacetsContentsFacetsObservable",
|
3912
4020
|
"QueryContentsFacetsContentsFacetsObservableObservable",
|
3913
4021
|
"QueryContentsFacetsContentsFacetsRange",
|
3914
|
-
"QueryContentsFacetsContentsResults",
|
3915
|
-
"QueryContentsFacetsContentsResultsAddress",
|
3916
|
-
"QueryContentsFacetsContentsResultsAudio",
|
3917
|
-
"QueryContentsFacetsContentsResultsChildren",
|
3918
|
-
"QueryContentsFacetsContentsResultsCollections",
|
3919
|
-
"QueryContentsFacetsContentsResultsDocument",
|
3920
|
-
"QueryContentsFacetsContentsResultsEmail",
|
3921
|
-
"QueryContentsFacetsContentsResultsEmailBcc",
|
3922
|
-
"QueryContentsFacetsContentsResultsEmailCc",
|
3923
|
-
"QueryContentsFacetsContentsResultsEmailFrom",
|
3924
|
-
"QueryContentsFacetsContentsResultsEmailTo",
|
3925
|
-
"QueryContentsFacetsContentsResultsFeed",
|
3926
|
-
"QueryContentsFacetsContentsResultsFrames",
|
3927
|
-
"QueryContentsFacetsContentsResultsImage",
|
3928
|
-
"QueryContentsFacetsContentsResultsIssue",
|
3929
|
-
"QueryContentsFacetsContentsResultsLanguage",
|
3930
|
-
"QueryContentsFacetsContentsResultsLinks",
|
3931
|
-
"QueryContentsFacetsContentsResultsLocation",
|
3932
|
-
"QueryContentsFacetsContentsResultsObservations",
|
3933
|
-
"QueryContentsFacetsContentsResultsObservationsObservable",
|
3934
|
-
"QueryContentsFacetsContentsResultsObservationsOccurrences",
|
3935
|
-
"QueryContentsFacetsContentsResultsObservationsOccurrencesBoundingBox",
|
3936
|
-
"QueryContentsFacetsContentsResultsObservationsRelated",
|
3937
|
-
"QueryContentsFacetsContentsResultsOwner",
|
3938
|
-
"QueryContentsFacetsContentsResultsPackage",
|
3939
|
-
"QueryContentsFacetsContentsResultsPages",
|
3940
|
-
"QueryContentsFacetsContentsResultsPagesChunks",
|
3941
|
-
"QueryContentsFacetsContentsResultsPagesImages",
|
3942
|
-
"QueryContentsFacetsContentsResultsParent",
|
3943
|
-
"QueryContentsFacetsContentsResultsSegments",
|
3944
|
-
"QueryContentsFacetsContentsResultsVideo",
|
3945
|
-
"QueryContentsFacetsContentsResultsWorkflow",
|
3946
4022
|
"QueryContentsGraph",
|
3947
4023
|
"QueryContentsGraphContents",
|
3948
4024
|
"QueryContentsGraphContentsGraph",
|
@@ -4170,6 +4246,7 @@ __all__ = [
|
|
4170
4246
|
"QueryUsersUsersResultsConnectorsAuthenticationGoogle",
|
4171
4247
|
"QueryUsersUsersResultsConnectorsAuthenticationMicrosoft",
|
4172
4248
|
"QueryUsersUsersResultsConnectorsIntegration",
|
4249
|
+
"QueryUsersUsersResultsConnectorsIntegrationEmail",
|
4173
4250
|
"QueryUsersUsersResultsConnectorsIntegrationSlack",
|
4174
4251
|
"QueryUsersUsersResultsOwner",
|
4175
4252
|
"QueryWorkflows",
|
@@ -4177,7 +4254,16 @@ __all__ = [
|
|
4177
4254
|
"QueryWorkflowsWorkflowsResults",
|
4178
4255
|
"QueryWorkflowsWorkflowsResultsActions",
|
4179
4256
|
"QueryWorkflowsWorkflowsResultsActionsConnector",
|
4257
|
+
"QueryWorkflowsWorkflowsResultsActionsConnectorEmail",
|
4180
4258
|
"QueryWorkflowsWorkflowsResultsActionsConnectorSlack",
|
4259
|
+
"QueryWorkflowsWorkflowsResultsClassification",
|
4260
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobs",
|
4261
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnector",
|
4262
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModel",
|
4263
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModelRules",
|
4264
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnectorModelSpecification",
|
4265
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnectorRegex",
|
4266
|
+
"QueryWorkflowsWorkflowsResultsClassificationJobsConnectorRegexRules",
|
4181
4267
|
"QueryWorkflowsWorkflowsResultsEnrichment",
|
4182
4268
|
"QueryWorkflowsWorkflowsResultsEnrichmentJobs",
|
4183
4269
|
"QueryWorkflowsWorkflowsResultsEnrichmentJobsConnector",
|
@@ -4227,6 +4313,9 @@ __all__ = [
|
|
4227
4313
|
"RSSFeedPropertiesUpdateInput",
|
4228
4314
|
"RedditFeedPropertiesInput",
|
4229
4315
|
"RedditFeedPropertiesUpdateInput",
|
4316
|
+
"RegexClassificationRuleInput",
|
4317
|
+
"RegexContentClassificationPropertiesInput",
|
4318
|
+
"RegexSourceTypes",
|
4230
4319
|
"RemoveContentsFromCollection",
|
4231
4320
|
"RemoveContentsFromCollectionRemoveContentsFromCollection",
|
4232
4321
|
"RemoveContentsFromCollectionRemoveContentsFromCollectionContents",
|
@@ -4299,6 +4388,7 @@ __all__ = [
|
|
4299
4388
|
"RevisionStrategyUpdateInput",
|
4300
4389
|
"SCREENSHOT_PAGE_GQL",
|
4301
4390
|
"SEARCH_WEB_GQL",
|
4391
|
+
"SEND_NOTIFICATION_GQL",
|
4302
4392
|
"SUGGEST_CONVERSATION_GQL",
|
4303
4393
|
"SUMMARIZE_CONTENTS_GQL",
|
4304
4394
|
"SUMMARIZE_TEXT_GQL",
|
@@ -4319,6 +4409,8 @@ __all__ = [
|
|
4319
4409
|
"SearchWeb",
|
4320
4410
|
"SearchWebSearchWeb",
|
4321
4411
|
"SearchWebSearchWebResults",
|
4412
|
+
"SendNotification",
|
4413
|
+
"SendNotificationSendNotification",
|
4322
4414
|
"ShapeMetadataInput",
|
4323
4415
|
"SharePointAuthenticationTypes",
|
4324
4416
|
"SharePointFeedPropertiesInput",
|
@@ -4397,6 +4489,10 @@ __all__ = [
|
|
4397
4489
|
"UPDATE_SPECIFICATION_GQL",
|
4398
4490
|
"UPDATE_USER_GQL",
|
4399
4491
|
"UPDATE_WORKFLOW_GQL",
|
4492
|
+
"UPSERT_CATEGORY_GQL",
|
4493
|
+
"UPSERT_LABEL_GQL",
|
4494
|
+
"UPSERT_SPECIFICATION_GQL",
|
4495
|
+
"UPSERT_WORKFLOW_GQL",
|
4400
4496
|
"UnitTypes",
|
4401
4497
|
"UpdateAlert",
|
4402
4498
|
"UpdateAlertUpdateAlert",
|
@@ -4466,7 +4562,16 @@ __all__ = [
|
|
4466
4562
|
"UpdateWorkflowUpdateWorkflow",
|
4467
4563
|
"UpdateWorkflowUpdateWorkflowActions",
|
4468
4564
|
"UpdateWorkflowUpdateWorkflowActionsConnector",
|
4565
|
+
"UpdateWorkflowUpdateWorkflowActionsConnectorEmail",
|
4469
4566
|
"UpdateWorkflowUpdateWorkflowActionsConnectorSlack",
|
4567
|
+
"UpdateWorkflowUpdateWorkflowClassification",
|
4568
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobs",
|
4569
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnector",
|
4570
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModel",
|
4571
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModelRules",
|
4572
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnectorModelSpecification",
|
4573
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnectorRegex",
|
4574
|
+
"UpdateWorkflowUpdateWorkflowClassificationJobsConnectorRegexRules",
|
4470
4575
|
"UpdateWorkflowUpdateWorkflowEnrichment",
|
4471
4576
|
"UpdateWorkflowUpdateWorkflowEnrichmentJobs",
|
4472
4577
|
"UpdateWorkflowUpdateWorkflowEnrichmentJobsConnector",
|
@@ -4506,6 +4611,64 @@ __all__ = [
|
|
4506
4611
|
"UpdateWorkflowUpdateWorkflowStorage",
|
4507
4612
|
"UpdateWorkflowUpdateWorkflowStoragePolicy",
|
4508
4613
|
"Upload",
|
4614
|
+
"UpsertCategory",
|
4615
|
+
"UpsertCategoryUpsertCategory",
|
4616
|
+
"UpsertLabel",
|
4617
|
+
"UpsertLabelUpsertLabel",
|
4618
|
+
"UpsertSpecification",
|
4619
|
+
"UpsertSpecificationUpsertSpecification",
|
4620
|
+
"UpsertWorkflow",
|
4621
|
+
"UpsertWorkflowUpsertWorkflow",
|
4622
|
+
"UpsertWorkflowUpsertWorkflowActions",
|
4623
|
+
"UpsertWorkflowUpsertWorkflowActionsConnector",
|
4624
|
+
"UpsertWorkflowUpsertWorkflowActionsConnectorEmail",
|
4625
|
+
"UpsertWorkflowUpsertWorkflowActionsConnectorSlack",
|
4626
|
+
"UpsertWorkflowUpsertWorkflowClassification",
|
4627
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobs",
|
4628
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnector",
|
4629
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModel",
|
4630
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelRules",
|
4631
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelSpecification",
|
4632
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegex",
|
4633
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegexRules",
|
4634
|
+
"UpsertWorkflowUpsertWorkflowEnrichment",
|
4635
|
+
"UpsertWorkflowUpsertWorkflowEnrichmentJobs",
|
4636
|
+
"UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector",
|
4637
|
+
"UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorDiffbot",
|
4638
|
+
"UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorFhir",
|
4639
|
+
"UpsertWorkflowUpsertWorkflowEnrichmentLink",
|
4640
|
+
"UpsertWorkflowUpsertWorkflowExtraction",
|
4641
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobs",
|
4642
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnector",
|
4643
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage",
|
4644
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText",
|
4645
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage",
|
4646
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification",
|
4647
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText",
|
4648
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelTextSpecification",
|
4649
|
+
"UpsertWorkflowUpsertWorkflowIndexing",
|
4650
|
+
"UpsertWorkflowUpsertWorkflowIndexingJobs",
|
4651
|
+
"UpsertWorkflowUpsertWorkflowIndexingJobsConnector",
|
4652
|
+
"UpsertWorkflowUpsertWorkflowIngestion",
|
4653
|
+
"UpsertWorkflowUpsertWorkflowIngestionCollections",
|
4654
|
+
"UpsertWorkflowUpsertWorkflowIngestionIf",
|
4655
|
+
"UpsertWorkflowUpsertWorkflowIngestionObservations",
|
4656
|
+
"UpsertWorkflowUpsertWorkflowIngestionObservationsObservable",
|
4657
|
+
"UpsertWorkflowUpsertWorkflowPreparation",
|
4658
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobs",
|
4659
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnector",
|
4660
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAssemblyAi",
|
4661
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument",
|
4662
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram",
|
4663
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument",
|
4664
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail",
|
4665
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral",
|
4666
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument",
|
4667
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocumentSpecification",
|
4668
|
+
"UpsertWorkflowUpsertWorkflowPreparationSummarizations",
|
4669
|
+
"UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification",
|
4670
|
+
"UpsertWorkflowUpsertWorkflowStorage",
|
4671
|
+
"UpsertWorkflowUpsertWorkflowStoragePolicy",
|
4509
4672
|
"UserFilter",
|
4510
4673
|
"UserInput",
|
4511
4674
|
"UserTypes",
|