graphlit-client 1.0.20250625001__py3-none-any.whl → 1.0.20250627001__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 +556 -0
- graphlit_api/client.py +205 -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_connector.py +23 -0
- graphlit_api/delete_view.py +21 -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 +937 -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_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/RECORD +32 -20
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -88,6 +88,7 @@ from .continue_conversation import (
|
|
88
88
|
from .count_alerts import CountAlerts, CountAlertsCountAlerts
|
89
89
|
from .count_categories import CountCategories, CountCategoriesCountCategories
|
90
90
|
from .count_collections import CountCollections, CountCollectionsCountCollections
|
91
|
+
from .count_connectors import CountConnectors, CountConnectorsCountConnectors
|
91
92
|
from .count_contents import CountContents, CountContentsCountContents
|
92
93
|
from .count_conversations import (
|
93
94
|
CountConversations,
|
@@ -148,10 +149,12 @@ from .count_specifications import (
|
|
148
149
|
CountSpecificationsCountSpecifications,
|
149
150
|
)
|
150
151
|
from .count_users import CountUsers, CountUsersCountUsers
|
152
|
+
from .count_views import CountViews, CountViewsCountViews
|
151
153
|
from .count_workflows import CountWorkflows, CountWorkflowsCountWorkflows
|
152
154
|
from .create_alert import CreateAlert, CreateAlertCreateAlert
|
153
155
|
from .create_category import CreateCategory, CreateCategoryCreateCategory
|
154
156
|
from .create_collection import CreateCollection, CreateCollectionCreateCollection
|
157
|
+
from .create_connector import CreateConnector, CreateConnectorCreateConnector
|
155
158
|
from .create_conversation import (
|
156
159
|
CreateConversation,
|
157
160
|
CreateConversationCreateConversation,
|
@@ -212,6 +215,60 @@ from .create_specification import (
|
|
212
215
|
CreateSpecificationCreateSpecification,
|
213
216
|
)
|
214
217
|
from .create_user import CreateUser, CreateUserCreateUser
|
218
|
+
from .create_view import (
|
219
|
+
CreateView,
|
220
|
+
CreateViewCreateView,
|
221
|
+
CreateViewCreateViewAugmentedFilter,
|
222
|
+
CreateViewCreateViewAugmentedFilterAnd,
|
223
|
+
CreateViewCreateViewAugmentedFilterAndCollections,
|
224
|
+
CreateViewCreateViewAugmentedFilterAndFeeds,
|
225
|
+
CreateViewCreateViewAugmentedFilterAndObservations,
|
226
|
+
CreateViewCreateViewAugmentedFilterAndObservationsObservable,
|
227
|
+
CreateViewCreateViewAugmentedFilterAndUsers,
|
228
|
+
CreateViewCreateViewAugmentedFilterAndWorkflows,
|
229
|
+
CreateViewCreateViewAugmentedFilterCollections,
|
230
|
+
CreateViewCreateViewAugmentedFilterContents,
|
231
|
+
CreateViewCreateViewAugmentedFilterCreationDateRange,
|
232
|
+
CreateViewCreateViewAugmentedFilterDateRange,
|
233
|
+
CreateViewCreateViewAugmentedFilterFeeds,
|
234
|
+
CreateViewCreateViewAugmentedFilterObservations,
|
235
|
+
CreateViewCreateViewAugmentedFilterObservationsObservable,
|
236
|
+
CreateViewCreateViewAugmentedFilterOr,
|
237
|
+
CreateViewCreateViewAugmentedFilterOrCollections,
|
238
|
+
CreateViewCreateViewAugmentedFilterOrFeeds,
|
239
|
+
CreateViewCreateViewAugmentedFilterOrObservations,
|
240
|
+
CreateViewCreateViewAugmentedFilterOrObservationsObservable,
|
241
|
+
CreateViewCreateViewAugmentedFilterOrUsers,
|
242
|
+
CreateViewCreateViewAugmentedFilterOrWorkflows,
|
243
|
+
CreateViewCreateViewAugmentedFilterSimilarContents,
|
244
|
+
CreateViewCreateViewAugmentedFilterUsers,
|
245
|
+
CreateViewCreateViewAugmentedFilterWorkflows,
|
246
|
+
CreateViewCreateViewFilter,
|
247
|
+
CreateViewCreateViewFilterAnd,
|
248
|
+
CreateViewCreateViewFilterAndCollections,
|
249
|
+
CreateViewCreateViewFilterAndFeeds,
|
250
|
+
CreateViewCreateViewFilterAndObservations,
|
251
|
+
CreateViewCreateViewFilterAndObservationsObservable,
|
252
|
+
CreateViewCreateViewFilterAndUsers,
|
253
|
+
CreateViewCreateViewFilterAndWorkflows,
|
254
|
+
CreateViewCreateViewFilterCollections,
|
255
|
+
CreateViewCreateViewFilterContents,
|
256
|
+
CreateViewCreateViewFilterCreationDateRange,
|
257
|
+
CreateViewCreateViewFilterDateRange,
|
258
|
+
CreateViewCreateViewFilterFeeds,
|
259
|
+
CreateViewCreateViewFilterObservations,
|
260
|
+
CreateViewCreateViewFilterObservationsObservable,
|
261
|
+
CreateViewCreateViewFilterOr,
|
262
|
+
CreateViewCreateViewFilterOrCollections,
|
263
|
+
CreateViewCreateViewFilterOrFeeds,
|
264
|
+
CreateViewCreateViewFilterOrObservations,
|
265
|
+
CreateViewCreateViewFilterOrObservationsObservable,
|
266
|
+
CreateViewCreateViewFilterOrUsers,
|
267
|
+
CreateViewCreateViewFilterOrWorkflows,
|
268
|
+
CreateViewCreateViewFilterSimilarContents,
|
269
|
+
CreateViewCreateViewFilterUsers,
|
270
|
+
CreateViewCreateViewFilterWorkflows,
|
271
|
+
)
|
215
272
|
from .create_workflow import (
|
216
273
|
CreateWorkflow,
|
217
274
|
CreateWorkflowCreateWorkflow,
|
@@ -356,6 +413,7 @@ from .delete_categories import DeleteCategories, DeleteCategoriesDeleteCategorie
|
|
356
413
|
from .delete_category import DeleteCategory, DeleteCategoryDeleteCategory
|
357
414
|
from .delete_collection import DeleteCollection, DeleteCollectionDeleteCollection
|
358
415
|
from .delete_collections import DeleteCollections, DeleteCollectionsDeleteCollections
|
416
|
+
from .delete_connector import DeleteConnector, DeleteConnectorDeleteConnector
|
359
417
|
from .delete_content import DeleteContent, DeleteContentDeleteContent
|
360
418
|
from .delete_contents import DeleteContents, DeleteContentsDeleteContents
|
361
419
|
from .delete_conversation import (
|
@@ -482,6 +540,7 @@ from .delete_specifications import (
|
|
482
540
|
DeleteSpecificationsDeleteSpecifications,
|
483
541
|
)
|
484
542
|
from .delete_user import DeleteUser, DeleteUserDeleteUser
|
543
|
+
from .delete_view import DeleteView, DeleteViewDeleteView
|
485
544
|
from .delete_workflow import DeleteWorkflow, DeleteWorkflowDeleteWorkflow
|
486
545
|
from .delete_workflows import DeleteWorkflows, DeleteWorkflowsDeleteWorkflows
|
487
546
|
from .describe_encoded_image import (
|
@@ -562,7 +621,11 @@ from .enums import (
|
|
562
621
|
FeedTypes,
|
563
622
|
FilePreparationServiceTypes,
|
564
623
|
FileTypes,
|
624
|
+
GitHubAuthenticationTypes,
|
625
|
+
GitHubIssueAuthenticationTypes,
|
626
|
+
GoogleCalendarAuthenticationTypes,
|
565
627
|
GoogleDriveAuthenticationTypes,
|
628
|
+
GoogleEmailAuthenticationTypes,
|
566
629
|
GoogleModels,
|
567
630
|
GraphStrategyTypes,
|
568
631
|
GroqModels,
|
@@ -587,12 +650,15 @@ from .enums import (
|
|
587
650
|
MedicalTestFacetTypes,
|
588
651
|
MedicalTherapyFacetTypes,
|
589
652
|
MetadataTypes,
|
653
|
+
MicrosoftCalendarAuthenticationTypes,
|
654
|
+
MicrosoftEmailAuthenticationTypes,
|
590
655
|
MistralModels,
|
591
656
|
ModelServiceTypes,
|
592
657
|
ModelTypes,
|
593
658
|
NotionTypes,
|
594
659
|
ObservableTypes,
|
595
660
|
OccurrenceTypes,
|
661
|
+
OneDriveAuthenticationTypes,
|
596
662
|
OpenAIImageModels,
|
597
663
|
OpenAIModels,
|
598
664
|
OpenAIReasoningEffortLevels,
|
@@ -637,6 +703,7 @@ from .enums import (
|
|
637
703
|
TwitterListingTypes,
|
638
704
|
UnitTypes,
|
639
705
|
UserTypes,
|
706
|
+
ViewTypes,
|
640
707
|
VoyageModels,
|
641
708
|
YouTubeTypes,
|
642
709
|
)
|
@@ -736,6 +803,19 @@ from .get_collection import (
|
|
736
803
|
GetCollectionCollectionContents,
|
737
804
|
GetCollectionCollectionOwner,
|
738
805
|
)
|
806
|
+
from .get_connector import (
|
807
|
+
GetConnector,
|
808
|
+
GetConnectorConnector,
|
809
|
+
GetConnectorConnectorAuthentication,
|
810
|
+
GetConnectorConnectorAuthenticationArcade,
|
811
|
+
GetConnectorConnectorAuthenticationGoogle,
|
812
|
+
GetConnectorConnectorAuthenticationMicrosoft,
|
813
|
+
GetConnectorConnectorIntegration,
|
814
|
+
GetConnectorConnectorIntegrationEmail,
|
815
|
+
GetConnectorConnectorIntegrationSlack,
|
816
|
+
GetConnectorConnectorIntegrationTwitter,
|
817
|
+
GetConnectorConnectorOwner,
|
818
|
+
)
|
739
819
|
from .get_content import (
|
740
820
|
GetContent,
|
741
821
|
GetContentContent,
|
@@ -974,6 +1054,7 @@ from .get_user import (
|
|
974
1054
|
GetUserUser,
|
975
1055
|
GetUserUserConnectors,
|
976
1056
|
GetUserUserConnectorsAuthentication,
|
1057
|
+
GetUserUserConnectorsAuthenticationArcade,
|
977
1058
|
GetUserUserConnectorsAuthenticationGoogle,
|
978
1059
|
GetUserUserConnectorsAuthenticationMicrosoft,
|
979
1060
|
GetUserUserConnectorsIntegration,
|
@@ -987,6 +1068,7 @@ from .get_user_by_identifier import (
|
|
987
1068
|
GetUserByIdentifierUserByIdentifier,
|
988
1069
|
GetUserByIdentifierUserByIdentifierConnectors,
|
989
1070
|
GetUserByIdentifierUserByIdentifierConnectorsAuthentication,
|
1071
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade,
|
990
1072
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle,
|
991
1073
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft,
|
992
1074
|
GetUserByIdentifierUserByIdentifierConnectorsIntegration,
|
@@ -995,6 +1077,61 @@ from .get_user_by_identifier import (
|
|
995
1077
|
GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter,
|
996
1078
|
GetUserByIdentifierUserByIdentifierOwner,
|
997
1079
|
)
|
1080
|
+
from .get_view import (
|
1081
|
+
GetView,
|
1082
|
+
GetViewView,
|
1083
|
+
GetViewViewAugmentedFilter,
|
1084
|
+
GetViewViewAugmentedFilterAnd,
|
1085
|
+
GetViewViewAugmentedFilterAndCollections,
|
1086
|
+
GetViewViewAugmentedFilterAndFeeds,
|
1087
|
+
GetViewViewAugmentedFilterAndObservations,
|
1088
|
+
GetViewViewAugmentedFilterAndObservationsObservable,
|
1089
|
+
GetViewViewAugmentedFilterAndUsers,
|
1090
|
+
GetViewViewAugmentedFilterAndWorkflows,
|
1091
|
+
GetViewViewAugmentedFilterCollections,
|
1092
|
+
GetViewViewAugmentedFilterContents,
|
1093
|
+
GetViewViewAugmentedFilterCreationDateRange,
|
1094
|
+
GetViewViewAugmentedFilterDateRange,
|
1095
|
+
GetViewViewAugmentedFilterFeeds,
|
1096
|
+
GetViewViewAugmentedFilterObservations,
|
1097
|
+
GetViewViewAugmentedFilterObservationsObservable,
|
1098
|
+
GetViewViewAugmentedFilterOr,
|
1099
|
+
GetViewViewAugmentedFilterOrCollections,
|
1100
|
+
GetViewViewAugmentedFilterOrFeeds,
|
1101
|
+
GetViewViewAugmentedFilterOrObservations,
|
1102
|
+
GetViewViewAugmentedFilterOrObservationsObservable,
|
1103
|
+
GetViewViewAugmentedFilterOrUsers,
|
1104
|
+
GetViewViewAugmentedFilterOrWorkflows,
|
1105
|
+
GetViewViewAugmentedFilterSimilarContents,
|
1106
|
+
GetViewViewAugmentedFilterUsers,
|
1107
|
+
GetViewViewAugmentedFilterWorkflows,
|
1108
|
+
GetViewViewFilter,
|
1109
|
+
GetViewViewFilterAnd,
|
1110
|
+
GetViewViewFilterAndCollections,
|
1111
|
+
GetViewViewFilterAndFeeds,
|
1112
|
+
GetViewViewFilterAndObservations,
|
1113
|
+
GetViewViewFilterAndObservationsObservable,
|
1114
|
+
GetViewViewFilterAndUsers,
|
1115
|
+
GetViewViewFilterAndWorkflows,
|
1116
|
+
GetViewViewFilterCollections,
|
1117
|
+
GetViewViewFilterContents,
|
1118
|
+
GetViewViewFilterCreationDateRange,
|
1119
|
+
GetViewViewFilterDateRange,
|
1120
|
+
GetViewViewFilterFeeds,
|
1121
|
+
GetViewViewFilterObservations,
|
1122
|
+
GetViewViewFilterObservationsObservable,
|
1123
|
+
GetViewViewFilterOr,
|
1124
|
+
GetViewViewFilterOrCollections,
|
1125
|
+
GetViewViewFilterOrFeeds,
|
1126
|
+
GetViewViewFilterOrObservations,
|
1127
|
+
GetViewViewFilterOrObservationsObservable,
|
1128
|
+
GetViewViewFilterOrUsers,
|
1129
|
+
GetViewViewFilterOrWorkflows,
|
1130
|
+
GetViewViewFilterSimilarContents,
|
1131
|
+
GetViewViewFilterUsers,
|
1132
|
+
GetViewViewFilterWorkflows,
|
1133
|
+
GetViewViewOwner,
|
1134
|
+
)
|
998
1135
|
from .get_workflow import (
|
999
1136
|
GetWorkflow,
|
1000
1137
|
GetWorkflowWorkflow,
|
@@ -1134,6 +1271,7 @@ from .input_types import (
|
|
1134
1271
|
AmazonFeedPropertiesUpdateInput,
|
1135
1272
|
AnthropicModelPropertiesInput,
|
1136
1273
|
AnthropicModelPropertiesUpdateInput,
|
1274
|
+
ArcadeAuthenticationPropertiesInput,
|
1137
1275
|
AssemblyAIAudioPreparationPropertiesInput,
|
1138
1276
|
AtlassianJiraFeedPropertiesInput,
|
1139
1277
|
AtlassianJiraFeedPropertiesUpdateInput,
|
@@ -1202,8 +1340,10 @@ from .input_types import (
|
|
1202
1340
|
DeepseekModelPropertiesInput,
|
1203
1341
|
DeepseekModelPropertiesUpdateInput,
|
1204
1342
|
DiffbotEnrichmentPropertiesInput,
|
1343
|
+
DiscordChannelsInput,
|
1205
1344
|
DiscordFeedPropertiesInput,
|
1206
1345
|
DiscordFeedPropertiesUpdateInput,
|
1346
|
+
DiscordGuildsInput,
|
1207
1347
|
DocumentMetadataInput,
|
1208
1348
|
DocumentPreparationPropertiesInput,
|
1209
1349
|
DrawingMetadataInput,
|
@@ -1452,6 +1592,9 @@ from .input_types import (
|
|
1452
1592
|
UserInput,
|
1453
1593
|
UserUpdateInput,
|
1454
1594
|
VideoMetadataInput,
|
1595
|
+
ViewFilter,
|
1596
|
+
ViewInput,
|
1597
|
+
ViewUpdateInput,
|
1455
1598
|
VoyageModelPropertiesInput,
|
1456
1599
|
VoyageModelPropertiesUpdateInput,
|
1457
1600
|
WebFeedPropertiesInput,
|
@@ -1525,6 +1668,7 @@ from .operations import (
|
|
1525
1668
|
COUNT_ALERTS_GQL,
|
1526
1669
|
COUNT_CATEGORIES_GQL,
|
1527
1670
|
COUNT_COLLECTIONS_GQL,
|
1671
|
+
COUNT_CONNECTORS_GQL,
|
1528
1672
|
COUNT_CONTENTS_GQL,
|
1529
1673
|
COUNT_CONVERSATIONS_GQL,
|
1530
1674
|
COUNT_EVENTS_GQL,
|
@@ -1549,10 +1693,12 @@ from .operations import (
|
|
1549
1693
|
COUNT_SOFTWARES_GQL,
|
1550
1694
|
COUNT_SPECIFICATIONS_GQL,
|
1551
1695
|
COUNT_USERS_GQL,
|
1696
|
+
COUNT_VIEWS_GQL,
|
1552
1697
|
COUNT_WORKFLOWS_GQL,
|
1553
1698
|
CREATE_ALERT_GQL,
|
1554
1699
|
CREATE_CATEGORY_GQL,
|
1555
1700
|
CREATE_COLLECTION_GQL,
|
1701
|
+
CREATE_CONNECTOR_GQL,
|
1556
1702
|
CREATE_CONVERSATION_GQL,
|
1557
1703
|
CREATE_EVENT_GQL,
|
1558
1704
|
CREATE_FEED_GQL,
|
@@ -1577,6 +1723,7 @@ from .operations import (
|
|
1577
1723
|
CREATE_SOFTWARE_GQL,
|
1578
1724
|
CREATE_SPECIFICATION_GQL,
|
1579
1725
|
CREATE_USER_GQL,
|
1726
|
+
CREATE_VIEW_GQL,
|
1580
1727
|
CREATE_WORKFLOW_GQL,
|
1581
1728
|
DELETE_ALERT_GQL,
|
1582
1729
|
DELETE_ALERTS_GQL,
|
@@ -1611,6 +1758,7 @@ from .operations import (
|
|
1611
1758
|
DELETE_CATEGORY_GQL,
|
1612
1759
|
DELETE_COLLECTION_GQL,
|
1613
1760
|
DELETE_COLLECTIONS_GQL,
|
1761
|
+
DELETE_CONNECTOR_GQL,
|
1614
1762
|
DELETE_CONTENT_GQL,
|
1615
1763
|
DELETE_CONTENTS_GQL,
|
1616
1764
|
DELETE_CONVERSATION_GQL,
|
@@ -1659,6 +1807,7 @@ from .operations import (
|
|
1659
1807
|
DELETE_SPECIFICATION_GQL,
|
1660
1808
|
DELETE_SPECIFICATIONS_GQL,
|
1661
1809
|
DELETE_USER_GQL,
|
1810
|
+
DELETE_VIEW_GQL,
|
1662
1811
|
DELETE_WORKFLOW_GQL,
|
1663
1812
|
DELETE_WORKFLOWS_GQL,
|
1664
1813
|
DESCRIBE_ENCODED_IMAGE_GQL,
|
@@ -1676,6 +1825,7 @@ from .operations import (
|
|
1676
1825
|
GET_ALERT_GQL,
|
1677
1826
|
GET_CATEGORY_GQL,
|
1678
1827
|
GET_COLLECTION_GQL,
|
1828
|
+
GET_CONNECTOR_GQL,
|
1679
1829
|
GET_CONTENT_GQL,
|
1680
1830
|
GET_CONVERSATION_GQL,
|
1681
1831
|
GET_EVENT_GQL,
|
@@ -1703,6 +1853,7 @@ from .operations import (
|
|
1703
1853
|
GET_SPECIFICATION_GQL,
|
1704
1854
|
GET_USER_BY_IDENTIFIER_GQL,
|
1705
1855
|
GET_USER_GQL,
|
1856
|
+
GET_VIEW_GQL,
|
1706
1857
|
GET_WORKFLOW_GQL,
|
1707
1858
|
INGEST_BATCH_GQL,
|
1708
1859
|
INGEST_ENCODED_FILE_GQL,
|
@@ -1727,6 +1878,7 @@ from .operations import (
|
|
1727
1878
|
QUERY_BOX_FOLDERS_GQL,
|
1728
1879
|
QUERY_CATEGORIES_GQL,
|
1729
1880
|
QUERY_COLLECTIONS_GQL,
|
1881
|
+
QUERY_CONNECTORS_GQL,
|
1730
1882
|
QUERY_CONTENTS_FACETS_GQL,
|
1731
1883
|
QUERY_CONTENTS_GQL,
|
1732
1884
|
QUERY_CONTENTS_GRAPH_GQL,
|
@@ -1771,6 +1923,7 @@ from .operations import (
|
|
1771
1923
|
QUERY_TOKENS_GQL,
|
1772
1924
|
QUERY_USAGE_GQL,
|
1773
1925
|
QUERY_USERS_GQL,
|
1926
|
+
QUERY_VIEWS_GQL,
|
1774
1927
|
QUERY_WORKFLOWS_GQL,
|
1775
1928
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
1776
1929
|
RETRIEVE_SOURCES_GQL,
|
@@ -1788,6 +1941,7 @@ from .operations import (
|
|
1788
1941
|
UPDATE_ALERT_GQL,
|
1789
1942
|
UPDATE_CATEGORY_GQL,
|
1790
1943
|
UPDATE_COLLECTION_GQL,
|
1944
|
+
UPDATE_CONNECTOR_GQL,
|
1791
1945
|
UPDATE_CONTENT_GQL,
|
1792
1946
|
UPDATE_CONVERSATION_GQL,
|
1793
1947
|
UPDATE_EVENT_GQL,
|
@@ -1814,6 +1968,7 @@ from .operations import (
|
|
1814
1968
|
UPDATE_SOFTWARE_GQL,
|
1815
1969
|
UPDATE_SPECIFICATION_GQL,
|
1816
1970
|
UPDATE_USER_GQL,
|
1971
|
+
UPDATE_VIEW_GQL,
|
1817
1972
|
UPDATE_WORKFLOW_GQL,
|
1818
1973
|
UPSERT_CATEGORY_GQL,
|
1819
1974
|
UPSERT_LABEL_GQL,
|
@@ -1966,6 +2121,20 @@ from .query_collections import (
|
|
1966
2121
|
QueryCollectionsCollectionsResults,
|
1967
2122
|
QueryCollectionsCollectionsResultsOwner,
|
1968
2123
|
)
|
2124
|
+
from .query_connectors import (
|
2125
|
+
QueryConnectors,
|
2126
|
+
QueryConnectorsConnectors,
|
2127
|
+
QueryConnectorsConnectorsResults,
|
2128
|
+
QueryConnectorsConnectorsResultsAuthentication,
|
2129
|
+
QueryConnectorsConnectorsResultsAuthenticationArcade,
|
2130
|
+
QueryConnectorsConnectorsResultsAuthenticationGoogle,
|
2131
|
+
QueryConnectorsConnectorsResultsAuthenticationMicrosoft,
|
2132
|
+
QueryConnectorsConnectorsResultsIntegration,
|
2133
|
+
QueryConnectorsConnectorsResultsIntegrationEmail,
|
2134
|
+
QueryConnectorsConnectorsResultsIntegrationSlack,
|
2135
|
+
QueryConnectorsConnectorsResultsIntegrationTwitter,
|
2136
|
+
QueryConnectorsConnectorsResultsOwner,
|
2137
|
+
)
|
1969
2138
|
from .query_contents import (
|
1970
2139
|
QueryContents,
|
1971
2140
|
QueryContentsContents,
|
@@ -2357,6 +2526,7 @@ from .query_users import (
|
|
2357
2526
|
QueryUsersUsersResults,
|
2358
2527
|
QueryUsersUsersResultsConnectors,
|
2359
2528
|
QueryUsersUsersResultsConnectorsAuthentication,
|
2529
|
+
QueryUsersUsersResultsConnectorsAuthenticationArcade,
|
2360
2530
|
QueryUsersUsersResultsConnectorsAuthenticationGoogle,
|
2361
2531
|
QueryUsersUsersResultsConnectorsAuthenticationMicrosoft,
|
2362
2532
|
QueryUsersUsersResultsConnectorsIntegration,
|
@@ -2365,6 +2535,62 @@ from .query_users import (
|
|
2365
2535
|
QueryUsersUsersResultsConnectorsIntegrationTwitter,
|
2366
2536
|
QueryUsersUsersResultsOwner,
|
2367
2537
|
)
|
2538
|
+
from .query_views import (
|
2539
|
+
QueryViews,
|
2540
|
+
QueryViewsViews,
|
2541
|
+
QueryViewsViewsResults,
|
2542
|
+
QueryViewsViewsResultsAugmentedFilter,
|
2543
|
+
QueryViewsViewsResultsAugmentedFilterAnd,
|
2544
|
+
QueryViewsViewsResultsAugmentedFilterAndCollections,
|
2545
|
+
QueryViewsViewsResultsAugmentedFilterAndFeeds,
|
2546
|
+
QueryViewsViewsResultsAugmentedFilterAndObservations,
|
2547
|
+
QueryViewsViewsResultsAugmentedFilterAndObservationsObservable,
|
2548
|
+
QueryViewsViewsResultsAugmentedFilterAndUsers,
|
2549
|
+
QueryViewsViewsResultsAugmentedFilterAndWorkflows,
|
2550
|
+
QueryViewsViewsResultsAugmentedFilterCollections,
|
2551
|
+
QueryViewsViewsResultsAugmentedFilterContents,
|
2552
|
+
QueryViewsViewsResultsAugmentedFilterCreationDateRange,
|
2553
|
+
QueryViewsViewsResultsAugmentedFilterDateRange,
|
2554
|
+
QueryViewsViewsResultsAugmentedFilterFeeds,
|
2555
|
+
QueryViewsViewsResultsAugmentedFilterObservations,
|
2556
|
+
QueryViewsViewsResultsAugmentedFilterObservationsObservable,
|
2557
|
+
QueryViewsViewsResultsAugmentedFilterOr,
|
2558
|
+
QueryViewsViewsResultsAugmentedFilterOrCollections,
|
2559
|
+
QueryViewsViewsResultsAugmentedFilterOrFeeds,
|
2560
|
+
QueryViewsViewsResultsAugmentedFilterOrObservations,
|
2561
|
+
QueryViewsViewsResultsAugmentedFilterOrObservationsObservable,
|
2562
|
+
QueryViewsViewsResultsAugmentedFilterOrUsers,
|
2563
|
+
QueryViewsViewsResultsAugmentedFilterOrWorkflows,
|
2564
|
+
QueryViewsViewsResultsAugmentedFilterSimilarContents,
|
2565
|
+
QueryViewsViewsResultsAugmentedFilterUsers,
|
2566
|
+
QueryViewsViewsResultsAugmentedFilterWorkflows,
|
2567
|
+
QueryViewsViewsResultsFilter,
|
2568
|
+
QueryViewsViewsResultsFilterAnd,
|
2569
|
+
QueryViewsViewsResultsFilterAndCollections,
|
2570
|
+
QueryViewsViewsResultsFilterAndFeeds,
|
2571
|
+
QueryViewsViewsResultsFilterAndObservations,
|
2572
|
+
QueryViewsViewsResultsFilterAndObservationsObservable,
|
2573
|
+
QueryViewsViewsResultsFilterAndUsers,
|
2574
|
+
QueryViewsViewsResultsFilterAndWorkflows,
|
2575
|
+
QueryViewsViewsResultsFilterCollections,
|
2576
|
+
QueryViewsViewsResultsFilterContents,
|
2577
|
+
QueryViewsViewsResultsFilterCreationDateRange,
|
2578
|
+
QueryViewsViewsResultsFilterDateRange,
|
2579
|
+
QueryViewsViewsResultsFilterFeeds,
|
2580
|
+
QueryViewsViewsResultsFilterObservations,
|
2581
|
+
QueryViewsViewsResultsFilterObservationsObservable,
|
2582
|
+
QueryViewsViewsResultsFilterOr,
|
2583
|
+
QueryViewsViewsResultsFilterOrCollections,
|
2584
|
+
QueryViewsViewsResultsFilterOrFeeds,
|
2585
|
+
QueryViewsViewsResultsFilterOrObservations,
|
2586
|
+
QueryViewsViewsResultsFilterOrObservationsObservable,
|
2587
|
+
QueryViewsViewsResultsFilterOrUsers,
|
2588
|
+
QueryViewsViewsResultsFilterOrWorkflows,
|
2589
|
+
QueryViewsViewsResultsFilterSimilarContents,
|
2590
|
+
QueryViewsViewsResultsFilterUsers,
|
2591
|
+
QueryViewsViewsResultsFilterWorkflows,
|
2592
|
+
QueryViewsViewsResultsOwner,
|
2593
|
+
)
|
2368
2594
|
from .query_workflows import (
|
2369
2595
|
QueryWorkflows,
|
2370
2596
|
QueryWorkflowsWorkflows,
|
@@ -2524,6 +2750,7 @@ from .summarize_text import (
|
|
2524
2750
|
from .update_alert import UpdateAlert, UpdateAlertUpdateAlert
|
2525
2751
|
from .update_category import UpdateCategory, UpdateCategoryUpdateCategory
|
2526
2752
|
from .update_collection import UpdateCollection, UpdateCollectionUpdateCollection
|
2753
|
+
from .update_connector import UpdateConnector, UpdateConnectorUpdateConnector
|
2527
2754
|
from .update_content import (
|
2528
2755
|
UpdateContent,
|
2529
2756
|
UpdateContentUpdateContent,
|
@@ -2595,6 +2822,60 @@ from .update_specification import (
|
|
2595
2822
|
UpdateSpecificationUpdateSpecification,
|
2596
2823
|
)
|
2597
2824
|
from .update_user import UpdateUser, UpdateUserUpdateUser
|
2825
|
+
from .update_view import (
|
2826
|
+
UpdateView,
|
2827
|
+
UpdateViewUpdateView,
|
2828
|
+
UpdateViewUpdateViewAugmentedFilter,
|
2829
|
+
UpdateViewUpdateViewAugmentedFilterAnd,
|
2830
|
+
UpdateViewUpdateViewAugmentedFilterAndCollections,
|
2831
|
+
UpdateViewUpdateViewAugmentedFilterAndFeeds,
|
2832
|
+
UpdateViewUpdateViewAugmentedFilterAndObservations,
|
2833
|
+
UpdateViewUpdateViewAugmentedFilterAndObservationsObservable,
|
2834
|
+
UpdateViewUpdateViewAugmentedFilterAndUsers,
|
2835
|
+
UpdateViewUpdateViewAugmentedFilterAndWorkflows,
|
2836
|
+
UpdateViewUpdateViewAugmentedFilterCollections,
|
2837
|
+
UpdateViewUpdateViewAugmentedFilterContents,
|
2838
|
+
UpdateViewUpdateViewAugmentedFilterCreationDateRange,
|
2839
|
+
UpdateViewUpdateViewAugmentedFilterDateRange,
|
2840
|
+
UpdateViewUpdateViewAugmentedFilterFeeds,
|
2841
|
+
UpdateViewUpdateViewAugmentedFilterObservations,
|
2842
|
+
UpdateViewUpdateViewAugmentedFilterObservationsObservable,
|
2843
|
+
UpdateViewUpdateViewAugmentedFilterOr,
|
2844
|
+
UpdateViewUpdateViewAugmentedFilterOrCollections,
|
2845
|
+
UpdateViewUpdateViewAugmentedFilterOrFeeds,
|
2846
|
+
UpdateViewUpdateViewAugmentedFilterOrObservations,
|
2847
|
+
UpdateViewUpdateViewAugmentedFilterOrObservationsObservable,
|
2848
|
+
UpdateViewUpdateViewAugmentedFilterOrUsers,
|
2849
|
+
UpdateViewUpdateViewAugmentedFilterOrWorkflows,
|
2850
|
+
UpdateViewUpdateViewAugmentedFilterSimilarContents,
|
2851
|
+
UpdateViewUpdateViewAugmentedFilterUsers,
|
2852
|
+
UpdateViewUpdateViewAugmentedFilterWorkflows,
|
2853
|
+
UpdateViewUpdateViewFilter,
|
2854
|
+
UpdateViewUpdateViewFilterAnd,
|
2855
|
+
UpdateViewUpdateViewFilterAndCollections,
|
2856
|
+
UpdateViewUpdateViewFilterAndFeeds,
|
2857
|
+
UpdateViewUpdateViewFilterAndObservations,
|
2858
|
+
UpdateViewUpdateViewFilterAndObservationsObservable,
|
2859
|
+
UpdateViewUpdateViewFilterAndUsers,
|
2860
|
+
UpdateViewUpdateViewFilterAndWorkflows,
|
2861
|
+
UpdateViewUpdateViewFilterCollections,
|
2862
|
+
UpdateViewUpdateViewFilterContents,
|
2863
|
+
UpdateViewUpdateViewFilterCreationDateRange,
|
2864
|
+
UpdateViewUpdateViewFilterDateRange,
|
2865
|
+
UpdateViewUpdateViewFilterFeeds,
|
2866
|
+
UpdateViewUpdateViewFilterObservations,
|
2867
|
+
UpdateViewUpdateViewFilterObservationsObservable,
|
2868
|
+
UpdateViewUpdateViewFilterOr,
|
2869
|
+
UpdateViewUpdateViewFilterOrCollections,
|
2870
|
+
UpdateViewUpdateViewFilterOrFeeds,
|
2871
|
+
UpdateViewUpdateViewFilterOrObservations,
|
2872
|
+
UpdateViewUpdateViewFilterOrObservationsObservable,
|
2873
|
+
UpdateViewUpdateViewFilterOrUsers,
|
2874
|
+
UpdateViewUpdateViewFilterOrWorkflows,
|
2875
|
+
UpdateViewUpdateViewFilterSimilarContents,
|
2876
|
+
UpdateViewUpdateViewFilterUsers,
|
2877
|
+
UpdateViewUpdateViewFilterWorkflows,
|
2878
|
+
)
|
2598
2879
|
from .update_workflow import (
|
2599
2880
|
UpdateWorkflow,
|
2600
2881
|
UpdateWorkflowUpdateWorkflow,
|
@@ -2736,6 +3017,7 @@ __all__ = [
|
|
2736
3017
|
"AnthropicModelPropertiesUpdateInput",
|
2737
3018
|
"AnthropicModels",
|
2738
3019
|
"ApplyPolicy",
|
3020
|
+
"ArcadeAuthenticationPropertiesInput",
|
2739
3021
|
"AskGraphlit",
|
2740
3022
|
"AskGraphlitAskGraphlit",
|
2741
3023
|
"AskGraphlitAskGraphlitConversation",
|
@@ -2788,6 +3070,7 @@ __all__ = [
|
|
2788
3070
|
"COUNT_ALERTS_GQL",
|
2789
3071
|
"COUNT_CATEGORIES_GQL",
|
2790
3072
|
"COUNT_COLLECTIONS_GQL",
|
3073
|
+
"COUNT_CONNECTORS_GQL",
|
2791
3074
|
"COUNT_CONTENTS_GQL",
|
2792
3075
|
"COUNT_CONVERSATIONS_GQL",
|
2793
3076
|
"COUNT_EVENTS_GQL",
|
@@ -2812,10 +3095,12 @@ __all__ = [
|
|
2812
3095
|
"COUNT_SOFTWARES_GQL",
|
2813
3096
|
"COUNT_SPECIFICATIONS_GQL",
|
2814
3097
|
"COUNT_USERS_GQL",
|
3098
|
+
"COUNT_VIEWS_GQL",
|
2815
3099
|
"COUNT_WORKFLOWS_GQL",
|
2816
3100
|
"CREATE_ALERT_GQL",
|
2817
3101
|
"CREATE_CATEGORY_GQL",
|
2818
3102
|
"CREATE_COLLECTION_GQL",
|
3103
|
+
"CREATE_CONNECTOR_GQL",
|
2819
3104
|
"CREATE_CONVERSATION_GQL",
|
2820
3105
|
"CREATE_EVENT_GQL",
|
2821
3106
|
"CREATE_FEED_GQL",
|
@@ -2840,6 +3125,7 @@ __all__ = [
|
|
2840
3125
|
"CREATE_SOFTWARE_GQL",
|
2841
3126
|
"CREATE_SPECIFICATION_GQL",
|
2842
3127
|
"CREATE_USER_GQL",
|
3128
|
+
"CREATE_VIEW_GQL",
|
2843
3129
|
"CREATE_WORKFLOW_GQL",
|
2844
3130
|
"CalendarAttendeeInput",
|
2845
3131
|
"CalendarAttendeeResponseStatus",
|
@@ -2967,6 +3253,8 @@ __all__ = [
|
|
2967
3253
|
"CountCategoriesCountCategories",
|
2968
3254
|
"CountCollections",
|
2969
3255
|
"CountCollectionsCountCollections",
|
3256
|
+
"CountConnectors",
|
3257
|
+
"CountConnectorsCountConnectors",
|
2970
3258
|
"CountContents",
|
2971
3259
|
"CountContentsCountContents",
|
2972
3260
|
"CountConversations",
|
@@ -3015,6 +3303,8 @@ __all__ = [
|
|
3015
3303
|
"CountSpecificationsCountSpecifications",
|
3016
3304
|
"CountUsers",
|
3017
3305
|
"CountUsersCountUsers",
|
3306
|
+
"CountViews",
|
3307
|
+
"CountViewsCountViews",
|
3018
3308
|
"CountWorkflows",
|
3019
3309
|
"CountWorkflowsCountWorkflows",
|
3020
3310
|
"CreateAlert",
|
@@ -3023,6 +3313,8 @@ __all__ = [
|
|
3023
3313
|
"CreateCategoryCreateCategory",
|
3024
3314
|
"CreateCollection",
|
3025
3315
|
"CreateCollectionCreateCollection",
|
3316
|
+
"CreateConnector",
|
3317
|
+
"CreateConnectorCreateConnector",
|
3026
3318
|
"CreateConversation",
|
3027
3319
|
"CreateConversationCreateConversation",
|
3028
3320
|
"CreateEvent",
|
@@ -3071,6 +3363,58 @@ __all__ = [
|
|
3071
3363
|
"CreateSpecificationCreateSpecification",
|
3072
3364
|
"CreateUser",
|
3073
3365
|
"CreateUserCreateUser",
|
3366
|
+
"CreateView",
|
3367
|
+
"CreateViewCreateView",
|
3368
|
+
"CreateViewCreateViewAugmentedFilter",
|
3369
|
+
"CreateViewCreateViewAugmentedFilterAnd",
|
3370
|
+
"CreateViewCreateViewAugmentedFilterAndCollections",
|
3371
|
+
"CreateViewCreateViewAugmentedFilterAndFeeds",
|
3372
|
+
"CreateViewCreateViewAugmentedFilterAndObservations",
|
3373
|
+
"CreateViewCreateViewAugmentedFilterAndObservationsObservable",
|
3374
|
+
"CreateViewCreateViewAugmentedFilterAndUsers",
|
3375
|
+
"CreateViewCreateViewAugmentedFilterAndWorkflows",
|
3376
|
+
"CreateViewCreateViewAugmentedFilterCollections",
|
3377
|
+
"CreateViewCreateViewAugmentedFilterContents",
|
3378
|
+
"CreateViewCreateViewAugmentedFilterCreationDateRange",
|
3379
|
+
"CreateViewCreateViewAugmentedFilterDateRange",
|
3380
|
+
"CreateViewCreateViewAugmentedFilterFeeds",
|
3381
|
+
"CreateViewCreateViewAugmentedFilterObservations",
|
3382
|
+
"CreateViewCreateViewAugmentedFilterObservationsObservable",
|
3383
|
+
"CreateViewCreateViewAugmentedFilterOr",
|
3384
|
+
"CreateViewCreateViewAugmentedFilterOrCollections",
|
3385
|
+
"CreateViewCreateViewAugmentedFilterOrFeeds",
|
3386
|
+
"CreateViewCreateViewAugmentedFilterOrObservations",
|
3387
|
+
"CreateViewCreateViewAugmentedFilterOrObservationsObservable",
|
3388
|
+
"CreateViewCreateViewAugmentedFilterOrUsers",
|
3389
|
+
"CreateViewCreateViewAugmentedFilterOrWorkflows",
|
3390
|
+
"CreateViewCreateViewAugmentedFilterSimilarContents",
|
3391
|
+
"CreateViewCreateViewAugmentedFilterUsers",
|
3392
|
+
"CreateViewCreateViewAugmentedFilterWorkflows",
|
3393
|
+
"CreateViewCreateViewFilter",
|
3394
|
+
"CreateViewCreateViewFilterAnd",
|
3395
|
+
"CreateViewCreateViewFilterAndCollections",
|
3396
|
+
"CreateViewCreateViewFilterAndFeeds",
|
3397
|
+
"CreateViewCreateViewFilterAndObservations",
|
3398
|
+
"CreateViewCreateViewFilterAndObservationsObservable",
|
3399
|
+
"CreateViewCreateViewFilterAndUsers",
|
3400
|
+
"CreateViewCreateViewFilterAndWorkflows",
|
3401
|
+
"CreateViewCreateViewFilterCollections",
|
3402
|
+
"CreateViewCreateViewFilterContents",
|
3403
|
+
"CreateViewCreateViewFilterCreationDateRange",
|
3404
|
+
"CreateViewCreateViewFilterDateRange",
|
3405
|
+
"CreateViewCreateViewFilterFeeds",
|
3406
|
+
"CreateViewCreateViewFilterObservations",
|
3407
|
+
"CreateViewCreateViewFilterObservationsObservable",
|
3408
|
+
"CreateViewCreateViewFilterOr",
|
3409
|
+
"CreateViewCreateViewFilterOrCollections",
|
3410
|
+
"CreateViewCreateViewFilterOrFeeds",
|
3411
|
+
"CreateViewCreateViewFilterOrObservations",
|
3412
|
+
"CreateViewCreateViewFilterOrObservationsObservable",
|
3413
|
+
"CreateViewCreateViewFilterOrUsers",
|
3414
|
+
"CreateViewCreateViewFilterOrWorkflows",
|
3415
|
+
"CreateViewCreateViewFilterSimilarContents",
|
3416
|
+
"CreateViewCreateViewFilterUsers",
|
3417
|
+
"CreateViewCreateViewFilterWorkflows",
|
3074
3418
|
"CreateWorkflow",
|
3075
3419
|
"CreateWorkflowCreateWorkflow",
|
3076
3420
|
"CreateWorkflowCreateWorkflowActions",
|
@@ -3159,6 +3503,7 @@ __all__ = [
|
|
3159
3503
|
"DELETE_CATEGORY_GQL",
|
3160
3504
|
"DELETE_COLLECTIONS_GQL",
|
3161
3505
|
"DELETE_COLLECTION_GQL",
|
3506
|
+
"DELETE_CONNECTOR_GQL",
|
3162
3507
|
"DELETE_CONTENTS_GQL",
|
3163
3508
|
"DELETE_CONTENT_GQL",
|
3164
3509
|
"DELETE_CONVERSATIONS_GQL",
|
@@ -3207,6 +3552,7 @@ __all__ = [
|
|
3207
3552
|
"DELETE_SPECIFICATIONS_GQL",
|
3208
3553
|
"DELETE_SPECIFICATION_GQL",
|
3209
3554
|
"DELETE_USER_GQL",
|
3555
|
+
"DELETE_VIEW_GQL",
|
3210
3556
|
"DELETE_WORKFLOWS_GQL",
|
3211
3557
|
"DELETE_WORKFLOW_GQL",
|
3212
3558
|
"DESCRIBE_ENCODED_IMAGE_GQL",
|
@@ -3287,6 +3633,8 @@ __all__ = [
|
|
3287
3633
|
"DeleteCollectionDeleteCollection",
|
3288
3634
|
"DeleteCollections",
|
3289
3635
|
"DeleteCollectionsDeleteCollections",
|
3636
|
+
"DeleteConnector",
|
3637
|
+
"DeleteConnectorDeleteConnector",
|
3290
3638
|
"DeleteContent",
|
3291
3639
|
"DeleteContentDeleteContent",
|
3292
3640
|
"DeleteContents",
|
@@ -3383,6 +3731,8 @@ __all__ = [
|
|
3383
3731
|
"DeleteSpecificationsDeleteSpecifications",
|
3384
3732
|
"DeleteUser",
|
3385
3733
|
"DeleteUserDeleteUser",
|
3734
|
+
"DeleteView",
|
3735
|
+
"DeleteViewDeleteView",
|
3386
3736
|
"DeleteWorkflow",
|
3387
3737
|
"DeleteWorkflowDeleteWorkflow",
|
3388
3738
|
"DeleteWorkflows",
|
@@ -3413,8 +3763,10 @@ __all__ = [
|
|
3413
3763
|
"DisableFeedDisableFeed",
|
3414
3764
|
"DisableUser",
|
3415
3765
|
"DisableUserDisableUser",
|
3766
|
+
"DiscordChannelsInput",
|
3416
3767
|
"DiscordFeedPropertiesInput",
|
3417
3768
|
"DiscordFeedPropertiesUpdateInput",
|
3769
|
+
"DiscordGuildsInput",
|
3418
3770
|
"DocumentMetadataInput",
|
3419
3771
|
"DocumentPreparationPropertiesInput",
|
3420
3772
|
"DrawingMetadataInput",
|
@@ -3515,6 +3867,7 @@ __all__ = [
|
|
3515
3867
|
"GET_ALERT_GQL",
|
3516
3868
|
"GET_CATEGORY_GQL",
|
3517
3869
|
"GET_COLLECTION_GQL",
|
3870
|
+
"GET_CONNECTOR_GQL",
|
3518
3871
|
"GET_CONTENT_GQL",
|
3519
3872
|
"GET_CONVERSATION_GQL",
|
3520
3873
|
"GET_EVENT_GQL",
|
@@ -3542,6 +3895,7 @@ __all__ = [
|
|
3542
3895
|
"GET_SPECIFICATION_GQL",
|
3543
3896
|
"GET_USER_BY_IDENTIFIER_GQL",
|
3544
3897
|
"GET_USER_GQL",
|
3898
|
+
"GET_VIEW_GQL",
|
3545
3899
|
"GET_WORKFLOW_GQL",
|
3546
3900
|
"GeometryMetadataInput",
|
3547
3901
|
"GetAlert",
|
@@ -3588,6 +3942,17 @@ __all__ = [
|
|
3588
3942
|
"GetCollectionCollection",
|
3589
3943
|
"GetCollectionCollectionContents",
|
3590
3944
|
"GetCollectionCollectionOwner",
|
3945
|
+
"GetConnector",
|
3946
|
+
"GetConnectorConnector",
|
3947
|
+
"GetConnectorConnectorAuthentication",
|
3948
|
+
"GetConnectorConnectorAuthenticationArcade",
|
3949
|
+
"GetConnectorConnectorAuthenticationGoogle",
|
3950
|
+
"GetConnectorConnectorAuthenticationMicrosoft",
|
3951
|
+
"GetConnectorConnectorIntegration",
|
3952
|
+
"GetConnectorConnectorIntegrationEmail",
|
3953
|
+
"GetConnectorConnectorIntegrationSlack",
|
3954
|
+
"GetConnectorConnectorIntegrationTwitter",
|
3955
|
+
"GetConnectorConnectorOwner",
|
3591
3956
|
"GetContent",
|
3592
3957
|
"GetContentContent",
|
3593
3958
|
"GetContentContentAddress",
|
@@ -3813,6 +4178,7 @@ __all__ = [
|
|
3813
4178
|
"GetUserByIdentifierUserByIdentifier",
|
3814
4179
|
"GetUserByIdentifierUserByIdentifierConnectors",
|
3815
4180
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthentication",
|
4181
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade",
|
3816
4182
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle",
|
3817
4183
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft",
|
3818
4184
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegration",
|
@@ -3823,6 +4189,7 @@ __all__ = [
|
|
3823
4189
|
"GetUserUser",
|
3824
4190
|
"GetUserUserConnectors",
|
3825
4191
|
"GetUserUserConnectorsAuthentication",
|
4192
|
+
"GetUserUserConnectorsAuthenticationArcade",
|
3826
4193
|
"GetUserUserConnectorsAuthenticationGoogle",
|
3827
4194
|
"GetUserUserConnectorsAuthenticationMicrosoft",
|
3828
4195
|
"GetUserUserConnectorsIntegration",
|
@@ -3830,6 +4197,59 @@ __all__ = [
|
|
3830
4197
|
"GetUserUserConnectorsIntegrationSlack",
|
3831
4198
|
"GetUserUserConnectorsIntegrationTwitter",
|
3832
4199
|
"GetUserUserOwner",
|
4200
|
+
"GetView",
|
4201
|
+
"GetViewView",
|
4202
|
+
"GetViewViewAugmentedFilter",
|
4203
|
+
"GetViewViewAugmentedFilterAnd",
|
4204
|
+
"GetViewViewAugmentedFilterAndCollections",
|
4205
|
+
"GetViewViewAugmentedFilterAndFeeds",
|
4206
|
+
"GetViewViewAugmentedFilterAndObservations",
|
4207
|
+
"GetViewViewAugmentedFilterAndObservationsObservable",
|
4208
|
+
"GetViewViewAugmentedFilterAndUsers",
|
4209
|
+
"GetViewViewAugmentedFilterAndWorkflows",
|
4210
|
+
"GetViewViewAugmentedFilterCollections",
|
4211
|
+
"GetViewViewAugmentedFilterContents",
|
4212
|
+
"GetViewViewAugmentedFilterCreationDateRange",
|
4213
|
+
"GetViewViewAugmentedFilterDateRange",
|
4214
|
+
"GetViewViewAugmentedFilterFeeds",
|
4215
|
+
"GetViewViewAugmentedFilterObservations",
|
4216
|
+
"GetViewViewAugmentedFilterObservationsObservable",
|
4217
|
+
"GetViewViewAugmentedFilterOr",
|
4218
|
+
"GetViewViewAugmentedFilterOrCollections",
|
4219
|
+
"GetViewViewAugmentedFilterOrFeeds",
|
4220
|
+
"GetViewViewAugmentedFilterOrObservations",
|
4221
|
+
"GetViewViewAugmentedFilterOrObservationsObservable",
|
4222
|
+
"GetViewViewAugmentedFilterOrUsers",
|
4223
|
+
"GetViewViewAugmentedFilterOrWorkflows",
|
4224
|
+
"GetViewViewAugmentedFilterSimilarContents",
|
4225
|
+
"GetViewViewAugmentedFilterUsers",
|
4226
|
+
"GetViewViewAugmentedFilterWorkflows",
|
4227
|
+
"GetViewViewFilter",
|
4228
|
+
"GetViewViewFilterAnd",
|
4229
|
+
"GetViewViewFilterAndCollections",
|
4230
|
+
"GetViewViewFilterAndFeeds",
|
4231
|
+
"GetViewViewFilterAndObservations",
|
4232
|
+
"GetViewViewFilterAndObservationsObservable",
|
4233
|
+
"GetViewViewFilterAndUsers",
|
4234
|
+
"GetViewViewFilterAndWorkflows",
|
4235
|
+
"GetViewViewFilterCollections",
|
4236
|
+
"GetViewViewFilterContents",
|
4237
|
+
"GetViewViewFilterCreationDateRange",
|
4238
|
+
"GetViewViewFilterDateRange",
|
4239
|
+
"GetViewViewFilterFeeds",
|
4240
|
+
"GetViewViewFilterObservations",
|
4241
|
+
"GetViewViewFilterObservationsObservable",
|
4242
|
+
"GetViewViewFilterOr",
|
4243
|
+
"GetViewViewFilterOrCollections",
|
4244
|
+
"GetViewViewFilterOrFeeds",
|
4245
|
+
"GetViewViewFilterOrObservations",
|
4246
|
+
"GetViewViewFilterOrObservationsObservable",
|
4247
|
+
"GetViewViewFilterOrUsers",
|
4248
|
+
"GetViewViewFilterOrWorkflows",
|
4249
|
+
"GetViewViewFilterSimilarContents",
|
4250
|
+
"GetViewViewFilterUsers",
|
4251
|
+
"GetViewViewFilterWorkflows",
|
4252
|
+
"GetViewViewOwner",
|
3833
4253
|
"GetWorkflow",
|
3834
4254
|
"GetWorkflowWorkflow",
|
3835
4255
|
"GetWorkflowWorkflowActions",
|
@@ -3886,11 +4306,14 @@ __all__ = [
|
|
3886
4306
|
"GetWorkflowWorkflowPreparationSummarizationsSpecification",
|
3887
4307
|
"GetWorkflowWorkflowStorage",
|
3888
4308
|
"GetWorkflowWorkflowStoragePolicy",
|
4309
|
+
"GitHubAuthenticationTypes",
|
3889
4310
|
"GitHubFeedPropertiesInput",
|
3890
4311
|
"GitHubFeedPropertiesUpdateInput",
|
4312
|
+
"GitHubIssueAuthenticationTypes",
|
3891
4313
|
"GitHubIssuesFeedPropertiesInput",
|
3892
4314
|
"GitHubIssuesFeedPropertiesUpdateInput",
|
3893
4315
|
"GoogleAuthenticationPropertiesInput",
|
4316
|
+
"GoogleCalendarAuthenticationTypes",
|
3894
4317
|
"GoogleCalendarFeedPropertiesInput",
|
3895
4318
|
"GoogleCalendarFeedPropertiesUpdateInput",
|
3896
4319
|
"GoogleCalendarsInput",
|
@@ -3898,6 +4321,7 @@ __all__ = [
|
|
3898
4321
|
"GoogleDriveFeedPropertiesInput",
|
3899
4322
|
"GoogleDriveFeedPropertiesUpdateInput",
|
3900
4323
|
"GoogleDriveFoldersInput",
|
4324
|
+
"GoogleEmailAuthenticationTypes",
|
3901
4325
|
"GoogleEmailFeedPropertiesInput",
|
3902
4326
|
"GoogleEmailFeedPropertiesUpdateInput",
|
3903
4327
|
"GoogleFeedPropertiesInput",
|
@@ -4133,9 +4557,11 @@ __all__ = [
|
|
4133
4557
|
"MetadataTypes",
|
4134
4558
|
"MetadataUpdateInput",
|
4135
4559
|
"MicrosoftAuthenticationPropertiesInput",
|
4560
|
+
"MicrosoftCalendarAuthenticationTypes",
|
4136
4561
|
"MicrosoftCalendarFeedPropertiesInput",
|
4137
4562
|
"MicrosoftCalendarFeedPropertiesUpdateInput",
|
4138
4563
|
"MicrosoftCalendarsInput",
|
4564
|
+
"MicrosoftEmailAuthenticationTypes",
|
4139
4565
|
"MicrosoftEmailFeedPropertiesInput",
|
4140
4566
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4141
4567
|
"MicrosoftTeamsChannelsInput",
|
@@ -4167,6 +4593,7 @@ __all__ = [
|
|
4167
4593
|
"ObservationReferenceInput",
|
4168
4594
|
"ObservationUpdateInput",
|
4169
4595
|
"OccurrenceTypes",
|
4596
|
+
"OneDriveAuthenticationTypes",
|
4170
4597
|
"OneDriveFeedPropertiesInput",
|
4171
4598
|
"OneDriveFeedPropertiesUpdateInput",
|
4172
4599
|
"OneDriveFoldersInput",
|
@@ -4303,6 +4730,7 @@ __all__ = [
|
|
4303
4730
|
"QUERY_BOX_FOLDERS_GQL",
|
4304
4731
|
"QUERY_CATEGORIES_GQL",
|
4305
4732
|
"QUERY_COLLECTIONS_GQL",
|
4733
|
+
"QUERY_CONNECTORS_GQL",
|
4306
4734
|
"QUERY_CONTENTS_FACETS_GQL",
|
4307
4735
|
"QUERY_CONTENTS_GQL",
|
4308
4736
|
"QUERY_CONTENTS_GRAPH_GQL",
|
@@ -4347,6 +4775,7 @@ __all__ = [
|
|
4347
4775
|
"QUERY_TOKENS_GQL",
|
4348
4776
|
"QUERY_USAGE_GQL",
|
4349
4777
|
"QUERY_USERS_GQL",
|
4778
|
+
"QUERY_VIEWS_GQL",
|
4350
4779
|
"QUERY_WORKFLOWS_GQL",
|
4351
4780
|
"QueryAlerts",
|
4352
4781
|
"QueryAlertsAlerts",
|
@@ -4397,6 +4826,18 @@ __all__ = [
|
|
4397
4826
|
"QueryCollectionsCollections",
|
4398
4827
|
"QueryCollectionsCollectionsResults",
|
4399
4828
|
"QueryCollectionsCollectionsResultsOwner",
|
4829
|
+
"QueryConnectors",
|
4830
|
+
"QueryConnectorsConnectors",
|
4831
|
+
"QueryConnectorsConnectorsResults",
|
4832
|
+
"QueryConnectorsConnectorsResultsAuthentication",
|
4833
|
+
"QueryConnectorsConnectorsResultsAuthenticationArcade",
|
4834
|
+
"QueryConnectorsConnectorsResultsAuthenticationGoogle",
|
4835
|
+
"QueryConnectorsConnectorsResultsAuthenticationMicrosoft",
|
4836
|
+
"QueryConnectorsConnectorsResultsIntegration",
|
4837
|
+
"QueryConnectorsConnectorsResultsIntegrationEmail",
|
4838
|
+
"QueryConnectorsConnectorsResultsIntegrationSlack",
|
4839
|
+
"QueryConnectorsConnectorsResultsIntegrationTwitter",
|
4840
|
+
"QueryConnectorsConnectorsResultsOwner",
|
4400
4841
|
"QueryContents",
|
4401
4842
|
"QueryContentsContents",
|
4402
4843
|
"QueryContentsContentsResults",
|
@@ -4721,6 +5162,7 @@ __all__ = [
|
|
4721
5162
|
"QueryUsersUsersResults",
|
4722
5163
|
"QueryUsersUsersResultsConnectors",
|
4723
5164
|
"QueryUsersUsersResultsConnectorsAuthentication",
|
5165
|
+
"QueryUsersUsersResultsConnectorsAuthenticationArcade",
|
4724
5166
|
"QueryUsersUsersResultsConnectorsAuthenticationGoogle",
|
4725
5167
|
"QueryUsersUsersResultsConnectorsAuthenticationMicrosoft",
|
4726
5168
|
"QueryUsersUsersResultsConnectorsIntegration",
|
@@ -4728,6 +5170,60 @@ __all__ = [
|
|
4728
5170
|
"QueryUsersUsersResultsConnectorsIntegrationSlack",
|
4729
5171
|
"QueryUsersUsersResultsConnectorsIntegrationTwitter",
|
4730
5172
|
"QueryUsersUsersResultsOwner",
|
5173
|
+
"QueryViews",
|
5174
|
+
"QueryViewsViews",
|
5175
|
+
"QueryViewsViewsResults",
|
5176
|
+
"QueryViewsViewsResultsAugmentedFilter",
|
5177
|
+
"QueryViewsViewsResultsAugmentedFilterAnd",
|
5178
|
+
"QueryViewsViewsResultsAugmentedFilterAndCollections",
|
5179
|
+
"QueryViewsViewsResultsAugmentedFilterAndFeeds",
|
5180
|
+
"QueryViewsViewsResultsAugmentedFilterAndObservations",
|
5181
|
+
"QueryViewsViewsResultsAugmentedFilterAndObservationsObservable",
|
5182
|
+
"QueryViewsViewsResultsAugmentedFilterAndUsers",
|
5183
|
+
"QueryViewsViewsResultsAugmentedFilterAndWorkflows",
|
5184
|
+
"QueryViewsViewsResultsAugmentedFilterCollections",
|
5185
|
+
"QueryViewsViewsResultsAugmentedFilterContents",
|
5186
|
+
"QueryViewsViewsResultsAugmentedFilterCreationDateRange",
|
5187
|
+
"QueryViewsViewsResultsAugmentedFilterDateRange",
|
5188
|
+
"QueryViewsViewsResultsAugmentedFilterFeeds",
|
5189
|
+
"QueryViewsViewsResultsAugmentedFilterObservations",
|
5190
|
+
"QueryViewsViewsResultsAugmentedFilterObservationsObservable",
|
5191
|
+
"QueryViewsViewsResultsAugmentedFilterOr",
|
5192
|
+
"QueryViewsViewsResultsAugmentedFilterOrCollections",
|
5193
|
+
"QueryViewsViewsResultsAugmentedFilterOrFeeds",
|
5194
|
+
"QueryViewsViewsResultsAugmentedFilterOrObservations",
|
5195
|
+
"QueryViewsViewsResultsAugmentedFilterOrObservationsObservable",
|
5196
|
+
"QueryViewsViewsResultsAugmentedFilterOrUsers",
|
5197
|
+
"QueryViewsViewsResultsAugmentedFilterOrWorkflows",
|
5198
|
+
"QueryViewsViewsResultsAugmentedFilterSimilarContents",
|
5199
|
+
"QueryViewsViewsResultsAugmentedFilterUsers",
|
5200
|
+
"QueryViewsViewsResultsAugmentedFilterWorkflows",
|
5201
|
+
"QueryViewsViewsResultsFilter",
|
5202
|
+
"QueryViewsViewsResultsFilterAnd",
|
5203
|
+
"QueryViewsViewsResultsFilterAndCollections",
|
5204
|
+
"QueryViewsViewsResultsFilterAndFeeds",
|
5205
|
+
"QueryViewsViewsResultsFilterAndObservations",
|
5206
|
+
"QueryViewsViewsResultsFilterAndObservationsObservable",
|
5207
|
+
"QueryViewsViewsResultsFilterAndUsers",
|
5208
|
+
"QueryViewsViewsResultsFilterAndWorkflows",
|
5209
|
+
"QueryViewsViewsResultsFilterCollections",
|
5210
|
+
"QueryViewsViewsResultsFilterContents",
|
5211
|
+
"QueryViewsViewsResultsFilterCreationDateRange",
|
5212
|
+
"QueryViewsViewsResultsFilterDateRange",
|
5213
|
+
"QueryViewsViewsResultsFilterFeeds",
|
5214
|
+
"QueryViewsViewsResultsFilterObservations",
|
5215
|
+
"QueryViewsViewsResultsFilterObservationsObservable",
|
5216
|
+
"QueryViewsViewsResultsFilterOr",
|
5217
|
+
"QueryViewsViewsResultsFilterOrCollections",
|
5218
|
+
"QueryViewsViewsResultsFilterOrFeeds",
|
5219
|
+
"QueryViewsViewsResultsFilterOrObservations",
|
5220
|
+
"QueryViewsViewsResultsFilterOrObservationsObservable",
|
5221
|
+
"QueryViewsViewsResultsFilterOrUsers",
|
5222
|
+
"QueryViewsViewsResultsFilterOrWorkflows",
|
5223
|
+
"QueryViewsViewsResultsFilterSimilarContents",
|
5224
|
+
"QueryViewsViewsResultsFilterUsers",
|
5225
|
+
"QueryViewsViewsResultsFilterWorkflows",
|
5226
|
+
"QueryViewsViewsResultsOwner",
|
4731
5227
|
"QueryWorkflows",
|
4732
5228
|
"QueryWorkflowsWorkflows",
|
4733
5229
|
"QueryWorkflowsWorkflowsResults",
|
@@ -4956,6 +5452,7 @@ __all__ = [
|
|
4956
5452
|
"UPDATE_ALERT_GQL",
|
4957
5453
|
"UPDATE_CATEGORY_GQL",
|
4958
5454
|
"UPDATE_COLLECTION_GQL",
|
5455
|
+
"UPDATE_CONNECTOR_GQL",
|
4959
5456
|
"UPDATE_CONTENT_GQL",
|
4960
5457
|
"UPDATE_CONVERSATION_GQL",
|
4961
5458
|
"UPDATE_EVENT_GQL",
|
@@ -4982,6 +5479,7 @@ __all__ = [
|
|
4982
5479
|
"UPDATE_SOFTWARE_GQL",
|
4983
5480
|
"UPDATE_SPECIFICATION_GQL",
|
4984
5481
|
"UPDATE_USER_GQL",
|
5482
|
+
"UPDATE_VIEW_GQL",
|
4985
5483
|
"UPDATE_WORKFLOW_GQL",
|
4986
5484
|
"UPSERT_CATEGORY_GQL",
|
4987
5485
|
"UPSERT_LABEL_GQL",
|
@@ -4994,6 +5492,8 @@ __all__ = [
|
|
4994
5492
|
"UpdateCategoryUpdateCategory",
|
4995
5493
|
"UpdateCollection",
|
4996
5494
|
"UpdateCollectionUpdateCollection",
|
5495
|
+
"UpdateConnector",
|
5496
|
+
"UpdateConnectorUpdateConnector",
|
4997
5497
|
"UpdateContent",
|
4998
5498
|
"UpdateContentUpdateContent",
|
4999
5499
|
"UpdateContentUpdateContentCollections",
|
@@ -5052,6 +5552,58 @@ __all__ = [
|
|
5052
5552
|
"UpdateSpecificationUpdateSpecification",
|
5053
5553
|
"UpdateUser",
|
5054
5554
|
"UpdateUserUpdateUser",
|
5555
|
+
"UpdateView",
|
5556
|
+
"UpdateViewUpdateView",
|
5557
|
+
"UpdateViewUpdateViewAugmentedFilter",
|
5558
|
+
"UpdateViewUpdateViewAugmentedFilterAnd",
|
5559
|
+
"UpdateViewUpdateViewAugmentedFilterAndCollections",
|
5560
|
+
"UpdateViewUpdateViewAugmentedFilterAndFeeds",
|
5561
|
+
"UpdateViewUpdateViewAugmentedFilterAndObservations",
|
5562
|
+
"UpdateViewUpdateViewAugmentedFilterAndObservationsObservable",
|
5563
|
+
"UpdateViewUpdateViewAugmentedFilterAndUsers",
|
5564
|
+
"UpdateViewUpdateViewAugmentedFilterAndWorkflows",
|
5565
|
+
"UpdateViewUpdateViewAugmentedFilterCollections",
|
5566
|
+
"UpdateViewUpdateViewAugmentedFilterContents",
|
5567
|
+
"UpdateViewUpdateViewAugmentedFilterCreationDateRange",
|
5568
|
+
"UpdateViewUpdateViewAugmentedFilterDateRange",
|
5569
|
+
"UpdateViewUpdateViewAugmentedFilterFeeds",
|
5570
|
+
"UpdateViewUpdateViewAugmentedFilterObservations",
|
5571
|
+
"UpdateViewUpdateViewAugmentedFilterObservationsObservable",
|
5572
|
+
"UpdateViewUpdateViewAugmentedFilterOr",
|
5573
|
+
"UpdateViewUpdateViewAugmentedFilterOrCollections",
|
5574
|
+
"UpdateViewUpdateViewAugmentedFilterOrFeeds",
|
5575
|
+
"UpdateViewUpdateViewAugmentedFilterOrObservations",
|
5576
|
+
"UpdateViewUpdateViewAugmentedFilterOrObservationsObservable",
|
5577
|
+
"UpdateViewUpdateViewAugmentedFilterOrUsers",
|
5578
|
+
"UpdateViewUpdateViewAugmentedFilterOrWorkflows",
|
5579
|
+
"UpdateViewUpdateViewAugmentedFilterSimilarContents",
|
5580
|
+
"UpdateViewUpdateViewAugmentedFilterUsers",
|
5581
|
+
"UpdateViewUpdateViewAugmentedFilterWorkflows",
|
5582
|
+
"UpdateViewUpdateViewFilter",
|
5583
|
+
"UpdateViewUpdateViewFilterAnd",
|
5584
|
+
"UpdateViewUpdateViewFilterAndCollections",
|
5585
|
+
"UpdateViewUpdateViewFilterAndFeeds",
|
5586
|
+
"UpdateViewUpdateViewFilterAndObservations",
|
5587
|
+
"UpdateViewUpdateViewFilterAndObservationsObservable",
|
5588
|
+
"UpdateViewUpdateViewFilterAndUsers",
|
5589
|
+
"UpdateViewUpdateViewFilterAndWorkflows",
|
5590
|
+
"UpdateViewUpdateViewFilterCollections",
|
5591
|
+
"UpdateViewUpdateViewFilterContents",
|
5592
|
+
"UpdateViewUpdateViewFilterCreationDateRange",
|
5593
|
+
"UpdateViewUpdateViewFilterDateRange",
|
5594
|
+
"UpdateViewUpdateViewFilterFeeds",
|
5595
|
+
"UpdateViewUpdateViewFilterObservations",
|
5596
|
+
"UpdateViewUpdateViewFilterObservationsObservable",
|
5597
|
+
"UpdateViewUpdateViewFilterOr",
|
5598
|
+
"UpdateViewUpdateViewFilterOrCollections",
|
5599
|
+
"UpdateViewUpdateViewFilterOrFeeds",
|
5600
|
+
"UpdateViewUpdateViewFilterOrObservations",
|
5601
|
+
"UpdateViewUpdateViewFilterOrObservationsObservable",
|
5602
|
+
"UpdateViewUpdateViewFilterOrUsers",
|
5603
|
+
"UpdateViewUpdateViewFilterOrWorkflows",
|
5604
|
+
"UpdateViewUpdateViewFilterSimilarContents",
|
5605
|
+
"UpdateViewUpdateViewFilterUsers",
|
5606
|
+
"UpdateViewUpdateViewFilterWorkflows",
|
5055
5607
|
"UpdateWorkflow",
|
5056
5608
|
"UpdateWorkflowUpdateWorkflow",
|
5057
5609
|
"UpdateWorkflowUpdateWorkflowActions",
|
@@ -5174,6 +5726,10 @@ __all__ = [
|
|
5174
5726
|
"UserTypes",
|
5175
5727
|
"UserUpdateInput",
|
5176
5728
|
"VideoMetadataInput",
|
5729
|
+
"ViewFilter",
|
5730
|
+
"ViewInput",
|
5731
|
+
"ViewTypes",
|
5732
|
+
"ViewUpdateInput",
|
5177
5733
|
"VoyageModelPropertiesInput",
|
5178
5734
|
"VoyageModelPropertiesUpdateInput",
|
5179
5735
|
"VoyageModels",
|