graphlit-client 1.0.20250625001__py3-none-any.whl → 1.0.20250627002__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- graphlit_api/__init__.py +571 -0
- graphlit_api/client.py +267 -0
- graphlit_api/count_connectors.py +21 -0
- graphlit_api/count_views.py +19 -0
- graphlit_api/create_connector.py +25 -0
- graphlit_api/create_view.py +316 -0
- graphlit_api/create_workflow.py +6 -0
- graphlit_api/delete_all_views.py +23 -0
- graphlit_api/delete_connector.py +23 -0
- graphlit_api/delete_view.py +21 -0
- graphlit_api/delete_views.py +23 -0
- graphlit_api/enums.py +46 -0
- graphlit_api/get_connector.py +88 -0
- graphlit_api/get_feed.py +32 -1
- graphlit_api/get_user.py +5 -0
- graphlit_api/get_user_by_identifier.py +7 -0
- graphlit_api/get_view.py +321 -0
- graphlit_api/get_workflow.py +6 -0
- graphlit_api/input_types.py +143 -21
- graphlit_api/operations.py +970 -0
- graphlit_api/query_connectors.py +93 -0
- graphlit_api/query_feeds.py +32 -1
- graphlit_api/query_users.py +5 -0
- graphlit_api/query_views.py +330 -0
- graphlit_api/query_workflows.py +6 -0
- graphlit_api/update_connector.py +25 -0
- graphlit_api/update_view.py +316 -0
- graphlit_api/update_workflow.py +6 -0
- graphlit_api/upsert_workflow.py +6 -0
- graphlit_api/view_exists.py +19 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/RECORD +35 -20
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250625001.dist-info → graphlit_client-1.0.20250627002.dist-info}/top_level.txt +0 -0
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,
|
@@ -348,6 +405,7 @@ from .delete_all_specifications import (
|
|
348
405
|
DeleteAllSpecifications,
|
349
406
|
DeleteAllSpecificationsDeleteAllSpecifications,
|
350
407
|
)
|
408
|
+
from .delete_all_views import DeleteAllViews, DeleteAllViewsDeleteAllViews
|
351
409
|
from .delete_all_workflows import (
|
352
410
|
DeleteAllWorkflows,
|
353
411
|
DeleteAllWorkflowsDeleteAllWorkflows,
|
@@ -356,6 +414,7 @@ from .delete_categories import DeleteCategories, DeleteCategoriesDeleteCategorie
|
|
356
414
|
from .delete_category import DeleteCategory, DeleteCategoryDeleteCategory
|
357
415
|
from .delete_collection import DeleteCollection, DeleteCollectionDeleteCollection
|
358
416
|
from .delete_collections import DeleteCollections, DeleteCollectionsDeleteCollections
|
417
|
+
from .delete_connector import DeleteConnector, DeleteConnectorDeleteConnector
|
359
418
|
from .delete_content import DeleteContent, DeleteContentDeleteContent
|
360
419
|
from .delete_contents import DeleteContents, DeleteContentsDeleteContents
|
361
420
|
from .delete_conversation import (
|
@@ -482,6 +541,8 @@ from .delete_specifications import (
|
|
482
541
|
DeleteSpecificationsDeleteSpecifications,
|
483
542
|
)
|
484
543
|
from .delete_user import DeleteUser, DeleteUserDeleteUser
|
544
|
+
from .delete_view import DeleteView, DeleteViewDeleteView
|
545
|
+
from .delete_views import DeleteViews, DeleteViewsDeleteViews
|
485
546
|
from .delete_workflow import DeleteWorkflow, DeleteWorkflowDeleteWorkflow
|
486
547
|
from .delete_workflows import DeleteWorkflows, DeleteWorkflowsDeleteWorkflows
|
487
548
|
from .describe_encoded_image import (
|
@@ -562,7 +623,11 @@ from .enums import (
|
|
562
623
|
FeedTypes,
|
563
624
|
FilePreparationServiceTypes,
|
564
625
|
FileTypes,
|
626
|
+
GitHubAuthenticationTypes,
|
627
|
+
GitHubIssueAuthenticationTypes,
|
628
|
+
GoogleCalendarAuthenticationTypes,
|
565
629
|
GoogleDriveAuthenticationTypes,
|
630
|
+
GoogleEmailAuthenticationTypes,
|
566
631
|
GoogleModels,
|
567
632
|
GraphStrategyTypes,
|
568
633
|
GroqModels,
|
@@ -587,12 +652,15 @@ from .enums import (
|
|
587
652
|
MedicalTestFacetTypes,
|
588
653
|
MedicalTherapyFacetTypes,
|
589
654
|
MetadataTypes,
|
655
|
+
MicrosoftCalendarAuthenticationTypes,
|
656
|
+
MicrosoftEmailAuthenticationTypes,
|
590
657
|
MistralModels,
|
591
658
|
ModelServiceTypes,
|
592
659
|
ModelTypes,
|
593
660
|
NotionTypes,
|
594
661
|
ObservableTypes,
|
595
662
|
OccurrenceTypes,
|
663
|
+
OneDriveAuthenticationTypes,
|
596
664
|
OpenAIImageModels,
|
597
665
|
OpenAIModels,
|
598
666
|
OpenAIReasoningEffortLevels,
|
@@ -637,6 +705,7 @@ from .enums import (
|
|
637
705
|
TwitterListingTypes,
|
638
706
|
UnitTypes,
|
639
707
|
UserTypes,
|
708
|
+
ViewTypes,
|
640
709
|
VoyageModels,
|
641
710
|
YouTubeTypes,
|
642
711
|
)
|
@@ -736,6 +805,19 @@ from .get_collection import (
|
|
736
805
|
GetCollectionCollectionContents,
|
737
806
|
GetCollectionCollectionOwner,
|
738
807
|
)
|
808
|
+
from .get_connector import (
|
809
|
+
GetConnector,
|
810
|
+
GetConnectorConnector,
|
811
|
+
GetConnectorConnectorAuthentication,
|
812
|
+
GetConnectorConnectorAuthenticationArcade,
|
813
|
+
GetConnectorConnectorAuthenticationGoogle,
|
814
|
+
GetConnectorConnectorAuthenticationMicrosoft,
|
815
|
+
GetConnectorConnectorIntegration,
|
816
|
+
GetConnectorConnectorIntegrationEmail,
|
817
|
+
GetConnectorConnectorIntegrationSlack,
|
818
|
+
GetConnectorConnectorIntegrationTwitter,
|
819
|
+
GetConnectorConnectorOwner,
|
820
|
+
)
|
739
821
|
from .get_content import (
|
740
822
|
GetContent,
|
741
823
|
GetContentContent,
|
@@ -974,6 +1056,7 @@ from .get_user import (
|
|
974
1056
|
GetUserUser,
|
975
1057
|
GetUserUserConnectors,
|
976
1058
|
GetUserUserConnectorsAuthentication,
|
1059
|
+
GetUserUserConnectorsAuthenticationArcade,
|
977
1060
|
GetUserUserConnectorsAuthenticationGoogle,
|
978
1061
|
GetUserUserConnectorsAuthenticationMicrosoft,
|
979
1062
|
GetUserUserConnectorsIntegration,
|
@@ -987,6 +1070,7 @@ from .get_user_by_identifier import (
|
|
987
1070
|
GetUserByIdentifierUserByIdentifier,
|
988
1071
|
GetUserByIdentifierUserByIdentifierConnectors,
|
989
1072
|
GetUserByIdentifierUserByIdentifierConnectorsAuthentication,
|
1073
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade,
|
990
1074
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle,
|
991
1075
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft,
|
992
1076
|
GetUserByIdentifierUserByIdentifierConnectorsIntegration,
|
@@ -995,6 +1079,61 @@ from .get_user_by_identifier import (
|
|
995
1079
|
GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter,
|
996
1080
|
GetUserByIdentifierUserByIdentifierOwner,
|
997
1081
|
)
|
1082
|
+
from .get_view import (
|
1083
|
+
GetView,
|
1084
|
+
GetViewView,
|
1085
|
+
GetViewViewAugmentedFilter,
|
1086
|
+
GetViewViewAugmentedFilterAnd,
|
1087
|
+
GetViewViewAugmentedFilterAndCollections,
|
1088
|
+
GetViewViewAugmentedFilterAndFeeds,
|
1089
|
+
GetViewViewAugmentedFilterAndObservations,
|
1090
|
+
GetViewViewAugmentedFilterAndObservationsObservable,
|
1091
|
+
GetViewViewAugmentedFilterAndUsers,
|
1092
|
+
GetViewViewAugmentedFilterAndWorkflows,
|
1093
|
+
GetViewViewAugmentedFilterCollections,
|
1094
|
+
GetViewViewAugmentedFilterContents,
|
1095
|
+
GetViewViewAugmentedFilterCreationDateRange,
|
1096
|
+
GetViewViewAugmentedFilterDateRange,
|
1097
|
+
GetViewViewAugmentedFilterFeeds,
|
1098
|
+
GetViewViewAugmentedFilterObservations,
|
1099
|
+
GetViewViewAugmentedFilterObservationsObservable,
|
1100
|
+
GetViewViewAugmentedFilterOr,
|
1101
|
+
GetViewViewAugmentedFilterOrCollections,
|
1102
|
+
GetViewViewAugmentedFilterOrFeeds,
|
1103
|
+
GetViewViewAugmentedFilterOrObservations,
|
1104
|
+
GetViewViewAugmentedFilterOrObservationsObservable,
|
1105
|
+
GetViewViewAugmentedFilterOrUsers,
|
1106
|
+
GetViewViewAugmentedFilterOrWorkflows,
|
1107
|
+
GetViewViewAugmentedFilterSimilarContents,
|
1108
|
+
GetViewViewAugmentedFilterUsers,
|
1109
|
+
GetViewViewAugmentedFilterWorkflows,
|
1110
|
+
GetViewViewFilter,
|
1111
|
+
GetViewViewFilterAnd,
|
1112
|
+
GetViewViewFilterAndCollections,
|
1113
|
+
GetViewViewFilterAndFeeds,
|
1114
|
+
GetViewViewFilterAndObservations,
|
1115
|
+
GetViewViewFilterAndObservationsObservable,
|
1116
|
+
GetViewViewFilterAndUsers,
|
1117
|
+
GetViewViewFilterAndWorkflows,
|
1118
|
+
GetViewViewFilterCollections,
|
1119
|
+
GetViewViewFilterContents,
|
1120
|
+
GetViewViewFilterCreationDateRange,
|
1121
|
+
GetViewViewFilterDateRange,
|
1122
|
+
GetViewViewFilterFeeds,
|
1123
|
+
GetViewViewFilterObservations,
|
1124
|
+
GetViewViewFilterObservationsObservable,
|
1125
|
+
GetViewViewFilterOr,
|
1126
|
+
GetViewViewFilterOrCollections,
|
1127
|
+
GetViewViewFilterOrFeeds,
|
1128
|
+
GetViewViewFilterOrObservations,
|
1129
|
+
GetViewViewFilterOrObservationsObservable,
|
1130
|
+
GetViewViewFilterOrUsers,
|
1131
|
+
GetViewViewFilterOrWorkflows,
|
1132
|
+
GetViewViewFilterSimilarContents,
|
1133
|
+
GetViewViewFilterUsers,
|
1134
|
+
GetViewViewFilterWorkflows,
|
1135
|
+
GetViewViewOwner,
|
1136
|
+
)
|
998
1137
|
from .get_workflow import (
|
999
1138
|
GetWorkflow,
|
1000
1139
|
GetWorkflowWorkflow,
|
@@ -1134,6 +1273,7 @@ from .input_types import (
|
|
1134
1273
|
AmazonFeedPropertiesUpdateInput,
|
1135
1274
|
AnthropicModelPropertiesInput,
|
1136
1275
|
AnthropicModelPropertiesUpdateInput,
|
1276
|
+
ArcadeAuthenticationPropertiesInput,
|
1137
1277
|
AssemblyAIAudioPreparationPropertiesInput,
|
1138
1278
|
AtlassianJiraFeedPropertiesInput,
|
1139
1279
|
AtlassianJiraFeedPropertiesUpdateInput,
|
@@ -1202,8 +1342,10 @@ from .input_types import (
|
|
1202
1342
|
DeepseekModelPropertiesInput,
|
1203
1343
|
DeepseekModelPropertiesUpdateInput,
|
1204
1344
|
DiffbotEnrichmentPropertiesInput,
|
1345
|
+
DiscordChannelsInput,
|
1205
1346
|
DiscordFeedPropertiesInput,
|
1206
1347
|
DiscordFeedPropertiesUpdateInput,
|
1348
|
+
DiscordGuildsInput,
|
1207
1349
|
DocumentMetadataInput,
|
1208
1350
|
DocumentPreparationPropertiesInput,
|
1209
1351
|
DrawingMetadataInput,
|
@@ -1452,6 +1594,9 @@ from .input_types import (
|
|
1452
1594
|
UserInput,
|
1453
1595
|
UserUpdateInput,
|
1454
1596
|
VideoMetadataInput,
|
1597
|
+
ViewFilter,
|
1598
|
+
ViewInput,
|
1599
|
+
ViewUpdateInput,
|
1455
1600
|
VoyageModelPropertiesInput,
|
1456
1601
|
VoyageModelPropertiesUpdateInput,
|
1457
1602
|
WebFeedPropertiesInput,
|
@@ -1525,6 +1670,7 @@ from .operations import (
|
|
1525
1670
|
COUNT_ALERTS_GQL,
|
1526
1671
|
COUNT_CATEGORIES_GQL,
|
1527
1672
|
COUNT_COLLECTIONS_GQL,
|
1673
|
+
COUNT_CONNECTORS_GQL,
|
1528
1674
|
COUNT_CONTENTS_GQL,
|
1529
1675
|
COUNT_CONVERSATIONS_GQL,
|
1530
1676
|
COUNT_EVENTS_GQL,
|
@@ -1549,10 +1695,12 @@ from .operations import (
|
|
1549
1695
|
COUNT_SOFTWARES_GQL,
|
1550
1696
|
COUNT_SPECIFICATIONS_GQL,
|
1551
1697
|
COUNT_USERS_GQL,
|
1698
|
+
COUNT_VIEWS_GQL,
|
1552
1699
|
COUNT_WORKFLOWS_GQL,
|
1553
1700
|
CREATE_ALERT_GQL,
|
1554
1701
|
CREATE_CATEGORY_GQL,
|
1555
1702
|
CREATE_COLLECTION_GQL,
|
1703
|
+
CREATE_CONNECTOR_GQL,
|
1556
1704
|
CREATE_CONVERSATION_GQL,
|
1557
1705
|
CREATE_EVENT_GQL,
|
1558
1706
|
CREATE_FEED_GQL,
|
@@ -1577,6 +1725,7 @@ from .operations import (
|
|
1577
1725
|
CREATE_SOFTWARE_GQL,
|
1578
1726
|
CREATE_SPECIFICATION_GQL,
|
1579
1727
|
CREATE_USER_GQL,
|
1728
|
+
CREATE_VIEW_GQL,
|
1580
1729
|
CREATE_WORKFLOW_GQL,
|
1581
1730
|
DELETE_ALERT_GQL,
|
1582
1731
|
DELETE_ALERTS_GQL,
|
@@ -1606,11 +1755,13 @@ from .operations import (
|
|
1606
1755
|
DELETE_ALL_REPOS_GQL,
|
1607
1756
|
DELETE_ALL_SOFTWARES_GQL,
|
1608
1757
|
DELETE_ALL_SPECIFICATIONS_GQL,
|
1758
|
+
DELETE_ALL_VIEWS_GQL,
|
1609
1759
|
DELETE_ALL_WORKFLOWS_GQL,
|
1610
1760
|
DELETE_CATEGORIES_GQL,
|
1611
1761
|
DELETE_CATEGORY_GQL,
|
1612
1762
|
DELETE_COLLECTION_GQL,
|
1613
1763
|
DELETE_COLLECTIONS_GQL,
|
1764
|
+
DELETE_CONNECTOR_GQL,
|
1614
1765
|
DELETE_CONTENT_GQL,
|
1615
1766
|
DELETE_CONTENTS_GQL,
|
1616
1767
|
DELETE_CONVERSATION_GQL,
|
@@ -1659,6 +1810,8 @@ from .operations import (
|
|
1659
1810
|
DELETE_SPECIFICATION_GQL,
|
1660
1811
|
DELETE_SPECIFICATIONS_GQL,
|
1661
1812
|
DELETE_USER_GQL,
|
1813
|
+
DELETE_VIEW_GQL,
|
1814
|
+
DELETE_VIEWS_GQL,
|
1662
1815
|
DELETE_WORKFLOW_GQL,
|
1663
1816
|
DELETE_WORKFLOWS_GQL,
|
1664
1817
|
DESCRIBE_ENCODED_IMAGE_GQL,
|
@@ -1676,6 +1829,7 @@ from .operations import (
|
|
1676
1829
|
GET_ALERT_GQL,
|
1677
1830
|
GET_CATEGORY_GQL,
|
1678
1831
|
GET_COLLECTION_GQL,
|
1832
|
+
GET_CONNECTOR_GQL,
|
1679
1833
|
GET_CONTENT_GQL,
|
1680
1834
|
GET_CONVERSATION_GQL,
|
1681
1835
|
GET_EVENT_GQL,
|
@@ -1703,6 +1857,7 @@ from .operations import (
|
|
1703
1857
|
GET_SPECIFICATION_GQL,
|
1704
1858
|
GET_USER_BY_IDENTIFIER_GQL,
|
1705
1859
|
GET_USER_GQL,
|
1860
|
+
GET_VIEW_GQL,
|
1706
1861
|
GET_WORKFLOW_GQL,
|
1707
1862
|
INGEST_BATCH_GQL,
|
1708
1863
|
INGEST_ENCODED_FILE_GQL,
|
@@ -1727,6 +1882,7 @@ from .operations import (
|
|
1727
1882
|
QUERY_BOX_FOLDERS_GQL,
|
1728
1883
|
QUERY_CATEGORIES_GQL,
|
1729
1884
|
QUERY_COLLECTIONS_GQL,
|
1885
|
+
QUERY_CONNECTORS_GQL,
|
1730
1886
|
QUERY_CONTENTS_FACETS_GQL,
|
1731
1887
|
QUERY_CONTENTS_GQL,
|
1732
1888
|
QUERY_CONTENTS_GRAPH_GQL,
|
@@ -1771,6 +1927,7 @@ from .operations import (
|
|
1771
1927
|
QUERY_TOKENS_GQL,
|
1772
1928
|
QUERY_USAGE_GQL,
|
1773
1929
|
QUERY_USERS_GQL,
|
1930
|
+
QUERY_VIEWS_GQL,
|
1774
1931
|
QUERY_WORKFLOWS_GQL,
|
1775
1932
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
1776
1933
|
RETRIEVE_SOURCES_GQL,
|
@@ -1788,6 +1945,7 @@ from .operations import (
|
|
1788
1945
|
UPDATE_ALERT_GQL,
|
1789
1946
|
UPDATE_CATEGORY_GQL,
|
1790
1947
|
UPDATE_COLLECTION_GQL,
|
1948
|
+
UPDATE_CONNECTOR_GQL,
|
1791
1949
|
UPDATE_CONTENT_GQL,
|
1792
1950
|
UPDATE_CONVERSATION_GQL,
|
1793
1951
|
UPDATE_EVENT_GQL,
|
@@ -1814,11 +1972,13 @@ from .operations import (
|
|
1814
1972
|
UPDATE_SOFTWARE_GQL,
|
1815
1973
|
UPDATE_SPECIFICATION_GQL,
|
1816
1974
|
UPDATE_USER_GQL,
|
1975
|
+
UPDATE_VIEW_GQL,
|
1817
1976
|
UPDATE_WORKFLOW_GQL,
|
1818
1977
|
UPSERT_CATEGORY_GQL,
|
1819
1978
|
UPSERT_LABEL_GQL,
|
1820
1979
|
UPSERT_SPECIFICATION_GQL,
|
1821
1980
|
UPSERT_WORKFLOW_GQL,
|
1981
|
+
VIEW_EXISTS_GQL,
|
1822
1982
|
WORKFLOW_EXISTS_GQL,
|
1823
1983
|
)
|
1824
1984
|
from .prompt import (
|
@@ -1966,6 +2126,20 @@ from .query_collections import (
|
|
1966
2126
|
QueryCollectionsCollectionsResults,
|
1967
2127
|
QueryCollectionsCollectionsResultsOwner,
|
1968
2128
|
)
|
2129
|
+
from .query_connectors import (
|
2130
|
+
QueryConnectors,
|
2131
|
+
QueryConnectorsConnectors,
|
2132
|
+
QueryConnectorsConnectorsResults,
|
2133
|
+
QueryConnectorsConnectorsResultsAuthentication,
|
2134
|
+
QueryConnectorsConnectorsResultsAuthenticationArcade,
|
2135
|
+
QueryConnectorsConnectorsResultsAuthenticationGoogle,
|
2136
|
+
QueryConnectorsConnectorsResultsAuthenticationMicrosoft,
|
2137
|
+
QueryConnectorsConnectorsResultsIntegration,
|
2138
|
+
QueryConnectorsConnectorsResultsIntegrationEmail,
|
2139
|
+
QueryConnectorsConnectorsResultsIntegrationSlack,
|
2140
|
+
QueryConnectorsConnectorsResultsIntegrationTwitter,
|
2141
|
+
QueryConnectorsConnectorsResultsOwner,
|
2142
|
+
)
|
1969
2143
|
from .query_contents import (
|
1970
2144
|
QueryContents,
|
1971
2145
|
QueryContentsContents,
|
@@ -2357,6 +2531,7 @@ from .query_users import (
|
|
2357
2531
|
QueryUsersUsersResults,
|
2358
2532
|
QueryUsersUsersResultsConnectors,
|
2359
2533
|
QueryUsersUsersResultsConnectorsAuthentication,
|
2534
|
+
QueryUsersUsersResultsConnectorsAuthenticationArcade,
|
2360
2535
|
QueryUsersUsersResultsConnectorsAuthenticationGoogle,
|
2361
2536
|
QueryUsersUsersResultsConnectorsAuthenticationMicrosoft,
|
2362
2537
|
QueryUsersUsersResultsConnectorsIntegration,
|
@@ -2365,6 +2540,62 @@ from .query_users import (
|
|
2365
2540
|
QueryUsersUsersResultsConnectorsIntegrationTwitter,
|
2366
2541
|
QueryUsersUsersResultsOwner,
|
2367
2542
|
)
|
2543
|
+
from .query_views import (
|
2544
|
+
QueryViews,
|
2545
|
+
QueryViewsViews,
|
2546
|
+
QueryViewsViewsResults,
|
2547
|
+
QueryViewsViewsResultsAugmentedFilter,
|
2548
|
+
QueryViewsViewsResultsAugmentedFilterAnd,
|
2549
|
+
QueryViewsViewsResultsAugmentedFilterAndCollections,
|
2550
|
+
QueryViewsViewsResultsAugmentedFilterAndFeeds,
|
2551
|
+
QueryViewsViewsResultsAugmentedFilterAndObservations,
|
2552
|
+
QueryViewsViewsResultsAugmentedFilterAndObservationsObservable,
|
2553
|
+
QueryViewsViewsResultsAugmentedFilterAndUsers,
|
2554
|
+
QueryViewsViewsResultsAugmentedFilterAndWorkflows,
|
2555
|
+
QueryViewsViewsResultsAugmentedFilterCollections,
|
2556
|
+
QueryViewsViewsResultsAugmentedFilterContents,
|
2557
|
+
QueryViewsViewsResultsAugmentedFilterCreationDateRange,
|
2558
|
+
QueryViewsViewsResultsAugmentedFilterDateRange,
|
2559
|
+
QueryViewsViewsResultsAugmentedFilterFeeds,
|
2560
|
+
QueryViewsViewsResultsAugmentedFilterObservations,
|
2561
|
+
QueryViewsViewsResultsAugmentedFilterObservationsObservable,
|
2562
|
+
QueryViewsViewsResultsAugmentedFilterOr,
|
2563
|
+
QueryViewsViewsResultsAugmentedFilterOrCollections,
|
2564
|
+
QueryViewsViewsResultsAugmentedFilterOrFeeds,
|
2565
|
+
QueryViewsViewsResultsAugmentedFilterOrObservations,
|
2566
|
+
QueryViewsViewsResultsAugmentedFilterOrObservationsObservable,
|
2567
|
+
QueryViewsViewsResultsAugmentedFilterOrUsers,
|
2568
|
+
QueryViewsViewsResultsAugmentedFilterOrWorkflows,
|
2569
|
+
QueryViewsViewsResultsAugmentedFilterSimilarContents,
|
2570
|
+
QueryViewsViewsResultsAugmentedFilterUsers,
|
2571
|
+
QueryViewsViewsResultsAugmentedFilterWorkflows,
|
2572
|
+
QueryViewsViewsResultsFilter,
|
2573
|
+
QueryViewsViewsResultsFilterAnd,
|
2574
|
+
QueryViewsViewsResultsFilterAndCollections,
|
2575
|
+
QueryViewsViewsResultsFilterAndFeeds,
|
2576
|
+
QueryViewsViewsResultsFilterAndObservations,
|
2577
|
+
QueryViewsViewsResultsFilterAndObservationsObservable,
|
2578
|
+
QueryViewsViewsResultsFilterAndUsers,
|
2579
|
+
QueryViewsViewsResultsFilterAndWorkflows,
|
2580
|
+
QueryViewsViewsResultsFilterCollections,
|
2581
|
+
QueryViewsViewsResultsFilterContents,
|
2582
|
+
QueryViewsViewsResultsFilterCreationDateRange,
|
2583
|
+
QueryViewsViewsResultsFilterDateRange,
|
2584
|
+
QueryViewsViewsResultsFilterFeeds,
|
2585
|
+
QueryViewsViewsResultsFilterObservations,
|
2586
|
+
QueryViewsViewsResultsFilterObservationsObservable,
|
2587
|
+
QueryViewsViewsResultsFilterOr,
|
2588
|
+
QueryViewsViewsResultsFilterOrCollections,
|
2589
|
+
QueryViewsViewsResultsFilterOrFeeds,
|
2590
|
+
QueryViewsViewsResultsFilterOrObservations,
|
2591
|
+
QueryViewsViewsResultsFilterOrObservationsObservable,
|
2592
|
+
QueryViewsViewsResultsFilterOrUsers,
|
2593
|
+
QueryViewsViewsResultsFilterOrWorkflows,
|
2594
|
+
QueryViewsViewsResultsFilterSimilarContents,
|
2595
|
+
QueryViewsViewsResultsFilterUsers,
|
2596
|
+
QueryViewsViewsResultsFilterWorkflows,
|
2597
|
+
QueryViewsViewsResultsOwner,
|
2598
|
+
)
|
2368
2599
|
from .query_workflows import (
|
2369
2600
|
QueryWorkflows,
|
2370
2601
|
QueryWorkflowsWorkflows,
|
@@ -2524,6 +2755,7 @@ from .summarize_text import (
|
|
2524
2755
|
from .update_alert import UpdateAlert, UpdateAlertUpdateAlert
|
2525
2756
|
from .update_category import UpdateCategory, UpdateCategoryUpdateCategory
|
2526
2757
|
from .update_collection import UpdateCollection, UpdateCollectionUpdateCollection
|
2758
|
+
from .update_connector import UpdateConnector, UpdateConnectorUpdateConnector
|
2527
2759
|
from .update_content import (
|
2528
2760
|
UpdateContent,
|
2529
2761
|
UpdateContentUpdateContent,
|
@@ -2595,6 +2827,60 @@ from .update_specification import (
|
|
2595
2827
|
UpdateSpecificationUpdateSpecification,
|
2596
2828
|
)
|
2597
2829
|
from .update_user import UpdateUser, UpdateUserUpdateUser
|
2830
|
+
from .update_view import (
|
2831
|
+
UpdateView,
|
2832
|
+
UpdateViewUpdateView,
|
2833
|
+
UpdateViewUpdateViewAugmentedFilter,
|
2834
|
+
UpdateViewUpdateViewAugmentedFilterAnd,
|
2835
|
+
UpdateViewUpdateViewAugmentedFilterAndCollections,
|
2836
|
+
UpdateViewUpdateViewAugmentedFilterAndFeeds,
|
2837
|
+
UpdateViewUpdateViewAugmentedFilterAndObservations,
|
2838
|
+
UpdateViewUpdateViewAugmentedFilterAndObservationsObservable,
|
2839
|
+
UpdateViewUpdateViewAugmentedFilterAndUsers,
|
2840
|
+
UpdateViewUpdateViewAugmentedFilterAndWorkflows,
|
2841
|
+
UpdateViewUpdateViewAugmentedFilterCollections,
|
2842
|
+
UpdateViewUpdateViewAugmentedFilterContents,
|
2843
|
+
UpdateViewUpdateViewAugmentedFilterCreationDateRange,
|
2844
|
+
UpdateViewUpdateViewAugmentedFilterDateRange,
|
2845
|
+
UpdateViewUpdateViewAugmentedFilterFeeds,
|
2846
|
+
UpdateViewUpdateViewAugmentedFilterObservations,
|
2847
|
+
UpdateViewUpdateViewAugmentedFilterObservationsObservable,
|
2848
|
+
UpdateViewUpdateViewAugmentedFilterOr,
|
2849
|
+
UpdateViewUpdateViewAugmentedFilterOrCollections,
|
2850
|
+
UpdateViewUpdateViewAugmentedFilterOrFeeds,
|
2851
|
+
UpdateViewUpdateViewAugmentedFilterOrObservations,
|
2852
|
+
UpdateViewUpdateViewAugmentedFilterOrObservationsObservable,
|
2853
|
+
UpdateViewUpdateViewAugmentedFilterOrUsers,
|
2854
|
+
UpdateViewUpdateViewAugmentedFilterOrWorkflows,
|
2855
|
+
UpdateViewUpdateViewAugmentedFilterSimilarContents,
|
2856
|
+
UpdateViewUpdateViewAugmentedFilterUsers,
|
2857
|
+
UpdateViewUpdateViewAugmentedFilterWorkflows,
|
2858
|
+
UpdateViewUpdateViewFilter,
|
2859
|
+
UpdateViewUpdateViewFilterAnd,
|
2860
|
+
UpdateViewUpdateViewFilterAndCollections,
|
2861
|
+
UpdateViewUpdateViewFilterAndFeeds,
|
2862
|
+
UpdateViewUpdateViewFilterAndObservations,
|
2863
|
+
UpdateViewUpdateViewFilterAndObservationsObservable,
|
2864
|
+
UpdateViewUpdateViewFilterAndUsers,
|
2865
|
+
UpdateViewUpdateViewFilterAndWorkflows,
|
2866
|
+
UpdateViewUpdateViewFilterCollections,
|
2867
|
+
UpdateViewUpdateViewFilterContents,
|
2868
|
+
UpdateViewUpdateViewFilterCreationDateRange,
|
2869
|
+
UpdateViewUpdateViewFilterDateRange,
|
2870
|
+
UpdateViewUpdateViewFilterFeeds,
|
2871
|
+
UpdateViewUpdateViewFilterObservations,
|
2872
|
+
UpdateViewUpdateViewFilterObservationsObservable,
|
2873
|
+
UpdateViewUpdateViewFilterOr,
|
2874
|
+
UpdateViewUpdateViewFilterOrCollections,
|
2875
|
+
UpdateViewUpdateViewFilterOrFeeds,
|
2876
|
+
UpdateViewUpdateViewFilterOrObservations,
|
2877
|
+
UpdateViewUpdateViewFilterOrObservationsObservable,
|
2878
|
+
UpdateViewUpdateViewFilterOrUsers,
|
2879
|
+
UpdateViewUpdateViewFilterOrWorkflows,
|
2880
|
+
UpdateViewUpdateViewFilterSimilarContents,
|
2881
|
+
UpdateViewUpdateViewFilterUsers,
|
2882
|
+
UpdateViewUpdateViewFilterWorkflows,
|
2883
|
+
)
|
2598
2884
|
from .update_workflow import (
|
2599
2885
|
UpdateWorkflow,
|
2600
2886
|
UpdateWorkflowUpdateWorkflow,
|
@@ -2715,6 +3001,7 @@ from .upsert_workflow import (
|
|
2715
3001
|
UpsertWorkflowUpsertWorkflowStorage,
|
2716
3002
|
UpsertWorkflowUpsertWorkflowStoragePolicy,
|
2717
3003
|
)
|
3004
|
+
from .view_exists import ViewExists, ViewExistsViewExists
|
2718
3005
|
from .workflow_exists import WorkflowExists, WorkflowExistsWorkflowExists
|
2719
3006
|
|
2720
3007
|
__all__ = [
|
@@ -2736,6 +3023,7 @@ __all__ = [
|
|
2736
3023
|
"AnthropicModelPropertiesUpdateInput",
|
2737
3024
|
"AnthropicModels",
|
2738
3025
|
"ApplyPolicy",
|
3026
|
+
"ArcadeAuthenticationPropertiesInput",
|
2739
3027
|
"AskGraphlit",
|
2740
3028
|
"AskGraphlitAskGraphlit",
|
2741
3029
|
"AskGraphlitAskGraphlitConversation",
|
@@ -2788,6 +3076,7 @@ __all__ = [
|
|
2788
3076
|
"COUNT_ALERTS_GQL",
|
2789
3077
|
"COUNT_CATEGORIES_GQL",
|
2790
3078
|
"COUNT_COLLECTIONS_GQL",
|
3079
|
+
"COUNT_CONNECTORS_GQL",
|
2791
3080
|
"COUNT_CONTENTS_GQL",
|
2792
3081
|
"COUNT_CONVERSATIONS_GQL",
|
2793
3082
|
"COUNT_EVENTS_GQL",
|
@@ -2812,10 +3101,12 @@ __all__ = [
|
|
2812
3101
|
"COUNT_SOFTWARES_GQL",
|
2813
3102
|
"COUNT_SPECIFICATIONS_GQL",
|
2814
3103
|
"COUNT_USERS_GQL",
|
3104
|
+
"COUNT_VIEWS_GQL",
|
2815
3105
|
"COUNT_WORKFLOWS_GQL",
|
2816
3106
|
"CREATE_ALERT_GQL",
|
2817
3107
|
"CREATE_CATEGORY_GQL",
|
2818
3108
|
"CREATE_COLLECTION_GQL",
|
3109
|
+
"CREATE_CONNECTOR_GQL",
|
2819
3110
|
"CREATE_CONVERSATION_GQL",
|
2820
3111
|
"CREATE_EVENT_GQL",
|
2821
3112
|
"CREATE_FEED_GQL",
|
@@ -2840,6 +3131,7 @@ __all__ = [
|
|
2840
3131
|
"CREATE_SOFTWARE_GQL",
|
2841
3132
|
"CREATE_SPECIFICATION_GQL",
|
2842
3133
|
"CREATE_USER_GQL",
|
3134
|
+
"CREATE_VIEW_GQL",
|
2843
3135
|
"CREATE_WORKFLOW_GQL",
|
2844
3136
|
"CalendarAttendeeInput",
|
2845
3137
|
"CalendarAttendeeResponseStatus",
|
@@ -2967,6 +3259,8 @@ __all__ = [
|
|
2967
3259
|
"CountCategoriesCountCategories",
|
2968
3260
|
"CountCollections",
|
2969
3261
|
"CountCollectionsCountCollections",
|
3262
|
+
"CountConnectors",
|
3263
|
+
"CountConnectorsCountConnectors",
|
2970
3264
|
"CountContents",
|
2971
3265
|
"CountContentsCountContents",
|
2972
3266
|
"CountConversations",
|
@@ -3015,6 +3309,8 @@ __all__ = [
|
|
3015
3309
|
"CountSpecificationsCountSpecifications",
|
3016
3310
|
"CountUsers",
|
3017
3311
|
"CountUsersCountUsers",
|
3312
|
+
"CountViews",
|
3313
|
+
"CountViewsCountViews",
|
3018
3314
|
"CountWorkflows",
|
3019
3315
|
"CountWorkflowsCountWorkflows",
|
3020
3316
|
"CreateAlert",
|
@@ -3023,6 +3319,8 @@ __all__ = [
|
|
3023
3319
|
"CreateCategoryCreateCategory",
|
3024
3320
|
"CreateCollection",
|
3025
3321
|
"CreateCollectionCreateCollection",
|
3322
|
+
"CreateConnector",
|
3323
|
+
"CreateConnectorCreateConnector",
|
3026
3324
|
"CreateConversation",
|
3027
3325
|
"CreateConversationCreateConversation",
|
3028
3326
|
"CreateEvent",
|
@@ -3071,6 +3369,58 @@ __all__ = [
|
|
3071
3369
|
"CreateSpecificationCreateSpecification",
|
3072
3370
|
"CreateUser",
|
3073
3371
|
"CreateUserCreateUser",
|
3372
|
+
"CreateView",
|
3373
|
+
"CreateViewCreateView",
|
3374
|
+
"CreateViewCreateViewAugmentedFilter",
|
3375
|
+
"CreateViewCreateViewAugmentedFilterAnd",
|
3376
|
+
"CreateViewCreateViewAugmentedFilterAndCollections",
|
3377
|
+
"CreateViewCreateViewAugmentedFilterAndFeeds",
|
3378
|
+
"CreateViewCreateViewAugmentedFilterAndObservations",
|
3379
|
+
"CreateViewCreateViewAugmentedFilterAndObservationsObservable",
|
3380
|
+
"CreateViewCreateViewAugmentedFilterAndUsers",
|
3381
|
+
"CreateViewCreateViewAugmentedFilterAndWorkflows",
|
3382
|
+
"CreateViewCreateViewAugmentedFilterCollections",
|
3383
|
+
"CreateViewCreateViewAugmentedFilterContents",
|
3384
|
+
"CreateViewCreateViewAugmentedFilterCreationDateRange",
|
3385
|
+
"CreateViewCreateViewAugmentedFilterDateRange",
|
3386
|
+
"CreateViewCreateViewAugmentedFilterFeeds",
|
3387
|
+
"CreateViewCreateViewAugmentedFilterObservations",
|
3388
|
+
"CreateViewCreateViewAugmentedFilterObservationsObservable",
|
3389
|
+
"CreateViewCreateViewAugmentedFilterOr",
|
3390
|
+
"CreateViewCreateViewAugmentedFilterOrCollections",
|
3391
|
+
"CreateViewCreateViewAugmentedFilterOrFeeds",
|
3392
|
+
"CreateViewCreateViewAugmentedFilterOrObservations",
|
3393
|
+
"CreateViewCreateViewAugmentedFilterOrObservationsObservable",
|
3394
|
+
"CreateViewCreateViewAugmentedFilterOrUsers",
|
3395
|
+
"CreateViewCreateViewAugmentedFilterOrWorkflows",
|
3396
|
+
"CreateViewCreateViewAugmentedFilterSimilarContents",
|
3397
|
+
"CreateViewCreateViewAugmentedFilterUsers",
|
3398
|
+
"CreateViewCreateViewAugmentedFilterWorkflows",
|
3399
|
+
"CreateViewCreateViewFilter",
|
3400
|
+
"CreateViewCreateViewFilterAnd",
|
3401
|
+
"CreateViewCreateViewFilterAndCollections",
|
3402
|
+
"CreateViewCreateViewFilterAndFeeds",
|
3403
|
+
"CreateViewCreateViewFilterAndObservations",
|
3404
|
+
"CreateViewCreateViewFilterAndObservationsObservable",
|
3405
|
+
"CreateViewCreateViewFilterAndUsers",
|
3406
|
+
"CreateViewCreateViewFilterAndWorkflows",
|
3407
|
+
"CreateViewCreateViewFilterCollections",
|
3408
|
+
"CreateViewCreateViewFilterContents",
|
3409
|
+
"CreateViewCreateViewFilterCreationDateRange",
|
3410
|
+
"CreateViewCreateViewFilterDateRange",
|
3411
|
+
"CreateViewCreateViewFilterFeeds",
|
3412
|
+
"CreateViewCreateViewFilterObservations",
|
3413
|
+
"CreateViewCreateViewFilterObservationsObservable",
|
3414
|
+
"CreateViewCreateViewFilterOr",
|
3415
|
+
"CreateViewCreateViewFilterOrCollections",
|
3416
|
+
"CreateViewCreateViewFilterOrFeeds",
|
3417
|
+
"CreateViewCreateViewFilterOrObservations",
|
3418
|
+
"CreateViewCreateViewFilterOrObservationsObservable",
|
3419
|
+
"CreateViewCreateViewFilterOrUsers",
|
3420
|
+
"CreateViewCreateViewFilterOrWorkflows",
|
3421
|
+
"CreateViewCreateViewFilterSimilarContents",
|
3422
|
+
"CreateViewCreateViewFilterUsers",
|
3423
|
+
"CreateViewCreateViewFilterWorkflows",
|
3074
3424
|
"CreateWorkflow",
|
3075
3425
|
"CreateWorkflowCreateWorkflow",
|
3076
3426
|
"CreateWorkflowCreateWorkflowActions",
|
@@ -3154,11 +3504,13 @@ __all__ = [
|
|
3154
3504
|
"DELETE_ALL_REPOS_GQL",
|
3155
3505
|
"DELETE_ALL_SOFTWARES_GQL",
|
3156
3506
|
"DELETE_ALL_SPECIFICATIONS_GQL",
|
3507
|
+
"DELETE_ALL_VIEWS_GQL",
|
3157
3508
|
"DELETE_ALL_WORKFLOWS_GQL",
|
3158
3509
|
"DELETE_CATEGORIES_GQL",
|
3159
3510
|
"DELETE_CATEGORY_GQL",
|
3160
3511
|
"DELETE_COLLECTIONS_GQL",
|
3161
3512
|
"DELETE_COLLECTION_GQL",
|
3513
|
+
"DELETE_CONNECTOR_GQL",
|
3162
3514
|
"DELETE_CONTENTS_GQL",
|
3163
3515
|
"DELETE_CONTENT_GQL",
|
3164
3516
|
"DELETE_CONVERSATIONS_GQL",
|
@@ -3207,6 +3559,8 @@ __all__ = [
|
|
3207
3559
|
"DELETE_SPECIFICATIONS_GQL",
|
3208
3560
|
"DELETE_SPECIFICATION_GQL",
|
3209
3561
|
"DELETE_USER_GQL",
|
3562
|
+
"DELETE_VIEWS_GQL",
|
3563
|
+
"DELETE_VIEW_GQL",
|
3210
3564
|
"DELETE_WORKFLOWS_GQL",
|
3211
3565
|
"DELETE_WORKFLOW_GQL",
|
3212
3566
|
"DESCRIBE_ENCODED_IMAGE_GQL",
|
@@ -3277,6 +3631,8 @@ __all__ = [
|
|
3277
3631
|
"DeleteAllSoftwaresDeleteAllSoftwares",
|
3278
3632
|
"DeleteAllSpecifications",
|
3279
3633
|
"DeleteAllSpecificationsDeleteAllSpecifications",
|
3634
|
+
"DeleteAllViews",
|
3635
|
+
"DeleteAllViewsDeleteAllViews",
|
3280
3636
|
"DeleteAllWorkflows",
|
3281
3637
|
"DeleteAllWorkflowsDeleteAllWorkflows",
|
3282
3638
|
"DeleteCategories",
|
@@ -3287,6 +3643,8 @@ __all__ = [
|
|
3287
3643
|
"DeleteCollectionDeleteCollection",
|
3288
3644
|
"DeleteCollections",
|
3289
3645
|
"DeleteCollectionsDeleteCollections",
|
3646
|
+
"DeleteConnector",
|
3647
|
+
"DeleteConnectorDeleteConnector",
|
3290
3648
|
"DeleteContent",
|
3291
3649
|
"DeleteContentDeleteContent",
|
3292
3650
|
"DeleteContents",
|
@@ -3383,6 +3741,10 @@ __all__ = [
|
|
3383
3741
|
"DeleteSpecificationsDeleteSpecifications",
|
3384
3742
|
"DeleteUser",
|
3385
3743
|
"DeleteUserDeleteUser",
|
3744
|
+
"DeleteView",
|
3745
|
+
"DeleteViewDeleteView",
|
3746
|
+
"DeleteViews",
|
3747
|
+
"DeleteViewsDeleteViews",
|
3386
3748
|
"DeleteWorkflow",
|
3387
3749
|
"DeleteWorkflowDeleteWorkflow",
|
3388
3750
|
"DeleteWorkflows",
|
@@ -3413,8 +3775,10 @@ __all__ = [
|
|
3413
3775
|
"DisableFeedDisableFeed",
|
3414
3776
|
"DisableUser",
|
3415
3777
|
"DisableUserDisableUser",
|
3778
|
+
"DiscordChannelsInput",
|
3416
3779
|
"DiscordFeedPropertiesInput",
|
3417
3780
|
"DiscordFeedPropertiesUpdateInput",
|
3781
|
+
"DiscordGuildsInput",
|
3418
3782
|
"DocumentMetadataInput",
|
3419
3783
|
"DocumentPreparationPropertiesInput",
|
3420
3784
|
"DrawingMetadataInput",
|
@@ -3515,6 +3879,7 @@ __all__ = [
|
|
3515
3879
|
"GET_ALERT_GQL",
|
3516
3880
|
"GET_CATEGORY_GQL",
|
3517
3881
|
"GET_COLLECTION_GQL",
|
3882
|
+
"GET_CONNECTOR_GQL",
|
3518
3883
|
"GET_CONTENT_GQL",
|
3519
3884
|
"GET_CONVERSATION_GQL",
|
3520
3885
|
"GET_EVENT_GQL",
|
@@ -3542,6 +3907,7 @@ __all__ = [
|
|
3542
3907
|
"GET_SPECIFICATION_GQL",
|
3543
3908
|
"GET_USER_BY_IDENTIFIER_GQL",
|
3544
3909
|
"GET_USER_GQL",
|
3910
|
+
"GET_VIEW_GQL",
|
3545
3911
|
"GET_WORKFLOW_GQL",
|
3546
3912
|
"GeometryMetadataInput",
|
3547
3913
|
"GetAlert",
|
@@ -3588,6 +3954,17 @@ __all__ = [
|
|
3588
3954
|
"GetCollectionCollection",
|
3589
3955
|
"GetCollectionCollectionContents",
|
3590
3956
|
"GetCollectionCollectionOwner",
|
3957
|
+
"GetConnector",
|
3958
|
+
"GetConnectorConnector",
|
3959
|
+
"GetConnectorConnectorAuthentication",
|
3960
|
+
"GetConnectorConnectorAuthenticationArcade",
|
3961
|
+
"GetConnectorConnectorAuthenticationGoogle",
|
3962
|
+
"GetConnectorConnectorAuthenticationMicrosoft",
|
3963
|
+
"GetConnectorConnectorIntegration",
|
3964
|
+
"GetConnectorConnectorIntegrationEmail",
|
3965
|
+
"GetConnectorConnectorIntegrationSlack",
|
3966
|
+
"GetConnectorConnectorIntegrationTwitter",
|
3967
|
+
"GetConnectorConnectorOwner",
|
3591
3968
|
"GetContent",
|
3592
3969
|
"GetContentContent",
|
3593
3970
|
"GetContentContentAddress",
|
@@ -3813,6 +4190,7 @@ __all__ = [
|
|
3813
4190
|
"GetUserByIdentifierUserByIdentifier",
|
3814
4191
|
"GetUserByIdentifierUserByIdentifierConnectors",
|
3815
4192
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthentication",
|
4193
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade",
|
3816
4194
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle",
|
3817
4195
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft",
|
3818
4196
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegration",
|
@@ -3823,6 +4201,7 @@ __all__ = [
|
|
3823
4201
|
"GetUserUser",
|
3824
4202
|
"GetUserUserConnectors",
|
3825
4203
|
"GetUserUserConnectorsAuthentication",
|
4204
|
+
"GetUserUserConnectorsAuthenticationArcade",
|
3826
4205
|
"GetUserUserConnectorsAuthenticationGoogle",
|
3827
4206
|
"GetUserUserConnectorsAuthenticationMicrosoft",
|
3828
4207
|
"GetUserUserConnectorsIntegration",
|
@@ -3830,6 +4209,59 @@ __all__ = [
|
|
3830
4209
|
"GetUserUserConnectorsIntegrationSlack",
|
3831
4210
|
"GetUserUserConnectorsIntegrationTwitter",
|
3832
4211
|
"GetUserUserOwner",
|
4212
|
+
"GetView",
|
4213
|
+
"GetViewView",
|
4214
|
+
"GetViewViewAugmentedFilter",
|
4215
|
+
"GetViewViewAugmentedFilterAnd",
|
4216
|
+
"GetViewViewAugmentedFilterAndCollections",
|
4217
|
+
"GetViewViewAugmentedFilterAndFeeds",
|
4218
|
+
"GetViewViewAugmentedFilterAndObservations",
|
4219
|
+
"GetViewViewAugmentedFilterAndObservationsObservable",
|
4220
|
+
"GetViewViewAugmentedFilterAndUsers",
|
4221
|
+
"GetViewViewAugmentedFilterAndWorkflows",
|
4222
|
+
"GetViewViewAugmentedFilterCollections",
|
4223
|
+
"GetViewViewAugmentedFilterContents",
|
4224
|
+
"GetViewViewAugmentedFilterCreationDateRange",
|
4225
|
+
"GetViewViewAugmentedFilterDateRange",
|
4226
|
+
"GetViewViewAugmentedFilterFeeds",
|
4227
|
+
"GetViewViewAugmentedFilterObservations",
|
4228
|
+
"GetViewViewAugmentedFilterObservationsObservable",
|
4229
|
+
"GetViewViewAugmentedFilterOr",
|
4230
|
+
"GetViewViewAugmentedFilterOrCollections",
|
4231
|
+
"GetViewViewAugmentedFilterOrFeeds",
|
4232
|
+
"GetViewViewAugmentedFilterOrObservations",
|
4233
|
+
"GetViewViewAugmentedFilterOrObservationsObservable",
|
4234
|
+
"GetViewViewAugmentedFilterOrUsers",
|
4235
|
+
"GetViewViewAugmentedFilterOrWorkflows",
|
4236
|
+
"GetViewViewAugmentedFilterSimilarContents",
|
4237
|
+
"GetViewViewAugmentedFilterUsers",
|
4238
|
+
"GetViewViewAugmentedFilterWorkflows",
|
4239
|
+
"GetViewViewFilter",
|
4240
|
+
"GetViewViewFilterAnd",
|
4241
|
+
"GetViewViewFilterAndCollections",
|
4242
|
+
"GetViewViewFilterAndFeeds",
|
4243
|
+
"GetViewViewFilterAndObservations",
|
4244
|
+
"GetViewViewFilterAndObservationsObservable",
|
4245
|
+
"GetViewViewFilterAndUsers",
|
4246
|
+
"GetViewViewFilterAndWorkflows",
|
4247
|
+
"GetViewViewFilterCollections",
|
4248
|
+
"GetViewViewFilterContents",
|
4249
|
+
"GetViewViewFilterCreationDateRange",
|
4250
|
+
"GetViewViewFilterDateRange",
|
4251
|
+
"GetViewViewFilterFeeds",
|
4252
|
+
"GetViewViewFilterObservations",
|
4253
|
+
"GetViewViewFilterObservationsObservable",
|
4254
|
+
"GetViewViewFilterOr",
|
4255
|
+
"GetViewViewFilterOrCollections",
|
4256
|
+
"GetViewViewFilterOrFeeds",
|
4257
|
+
"GetViewViewFilterOrObservations",
|
4258
|
+
"GetViewViewFilterOrObservationsObservable",
|
4259
|
+
"GetViewViewFilterOrUsers",
|
4260
|
+
"GetViewViewFilterOrWorkflows",
|
4261
|
+
"GetViewViewFilterSimilarContents",
|
4262
|
+
"GetViewViewFilterUsers",
|
4263
|
+
"GetViewViewFilterWorkflows",
|
4264
|
+
"GetViewViewOwner",
|
3833
4265
|
"GetWorkflow",
|
3834
4266
|
"GetWorkflowWorkflow",
|
3835
4267
|
"GetWorkflowWorkflowActions",
|
@@ -3886,11 +4318,14 @@ __all__ = [
|
|
3886
4318
|
"GetWorkflowWorkflowPreparationSummarizationsSpecification",
|
3887
4319
|
"GetWorkflowWorkflowStorage",
|
3888
4320
|
"GetWorkflowWorkflowStoragePolicy",
|
4321
|
+
"GitHubAuthenticationTypes",
|
3889
4322
|
"GitHubFeedPropertiesInput",
|
3890
4323
|
"GitHubFeedPropertiesUpdateInput",
|
4324
|
+
"GitHubIssueAuthenticationTypes",
|
3891
4325
|
"GitHubIssuesFeedPropertiesInput",
|
3892
4326
|
"GitHubIssuesFeedPropertiesUpdateInput",
|
3893
4327
|
"GoogleAuthenticationPropertiesInput",
|
4328
|
+
"GoogleCalendarAuthenticationTypes",
|
3894
4329
|
"GoogleCalendarFeedPropertiesInput",
|
3895
4330
|
"GoogleCalendarFeedPropertiesUpdateInput",
|
3896
4331
|
"GoogleCalendarsInput",
|
@@ -3898,6 +4333,7 @@ __all__ = [
|
|
3898
4333
|
"GoogleDriveFeedPropertiesInput",
|
3899
4334
|
"GoogleDriveFeedPropertiesUpdateInput",
|
3900
4335
|
"GoogleDriveFoldersInput",
|
4336
|
+
"GoogleEmailAuthenticationTypes",
|
3901
4337
|
"GoogleEmailFeedPropertiesInput",
|
3902
4338
|
"GoogleEmailFeedPropertiesUpdateInput",
|
3903
4339
|
"GoogleFeedPropertiesInput",
|
@@ -4133,9 +4569,11 @@ __all__ = [
|
|
4133
4569
|
"MetadataTypes",
|
4134
4570
|
"MetadataUpdateInput",
|
4135
4571
|
"MicrosoftAuthenticationPropertiesInput",
|
4572
|
+
"MicrosoftCalendarAuthenticationTypes",
|
4136
4573
|
"MicrosoftCalendarFeedPropertiesInput",
|
4137
4574
|
"MicrosoftCalendarFeedPropertiesUpdateInput",
|
4138
4575
|
"MicrosoftCalendarsInput",
|
4576
|
+
"MicrosoftEmailAuthenticationTypes",
|
4139
4577
|
"MicrosoftEmailFeedPropertiesInput",
|
4140
4578
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4141
4579
|
"MicrosoftTeamsChannelsInput",
|
@@ -4167,6 +4605,7 @@ __all__ = [
|
|
4167
4605
|
"ObservationReferenceInput",
|
4168
4606
|
"ObservationUpdateInput",
|
4169
4607
|
"OccurrenceTypes",
|
4608
|
+
"OneDriveAuthenticationTypes",
|
4170
4609
|
"OneDriveFeedPropertiesInput",
|
4171
4610
|
"OneDriveFeedPropertiesUpdateInput",
|
4172
4611
|
"OneDriveFoldersInput",
|
@@ -4303,6 +4742,7 @@ __all__ = [
|
|
4303
4742
|
"QUERY_BOX_FOLDERS_GQL",
|
4304
4743
|
"QUERY_CATEGORIES_GQL",
|
4305
4744
|
"QUERY_COLLECTIONS_GQL",
|
4745
|
+
"QUERY_CONNECTORS_GQL",
|
4306
4746
|
"QUERY_CONTENTS_FACETS_GQL",
|
4307
4747
|
"QUERY_CONTENTS_GQL",
|
4308
4748
|
"QUERY_CONTENTS_GRAPH_GQL",
|
@@ -4347,6 +4787,7 @@ __all__ = [
|
|
4347
4787
|
"QUERY_TOKENS_GQL",
|
4348
4788
|
"QUERY_USAGE_GQL",
|
4349
4789
|
"QUERY_USERS_GQL",
|
4790
|
+
"QUERY_VIEWS_GQL",
|
4350
4791
|
"QUERY_WORKFLOWS_GQL",
|
4351
4792
|
"QueryAlerts",
|
4352
4793
|
"QueryAlertsAlerts",
|
@@ -4397,6 +4838,18 @@ __all__ = [
|
|
4397
4838
|
"QueryCollectionsCollections",
|
4398
4839
|
"QueryCollectionsCollectionsResults",
|
4399
4840
|
"QueryCollectionsCollectionsResultsOwner",
|
4841
|
+
"QueryConnectors",
|
4842
|
+
"QueryConnectorsConnectors",
|
4843
|
+
"QueryConnectorsConnectorsResults",
|
4844
|
+
"QueryConnectorsConnectorsResultsAuthentication",
|
4845
|
+
"QueryConnectorsConnectorsResultsAuthenticationArcade",
|
4846
|
+
"QueryConnectorsConnectorsResultsAuthenticationGoogle",
|
4847
|
+
"QueryConnectorsConnectorsResultsAuthenticationMicrosoft",
|
4848
|
+
"QueryConnectorsConnectorsResultsIntegration",
|
4849
|
+
"QueryConnectorsConnectorsResultsIntegrationEmail",
|
4850
|
+
"QueryConnectorsConnectorsResultsIntegrationSlack",
|
4851
|
+
"QueryConnectorsConnectorsResultsIntegrationTwitter",
|
4852
|
+
"QueryConnectorsConnectorsResultsOwner",
|
4400
4853
|
"QueryContents",
|
4401
4854
|
"QueryContentsContents",
|
4402
4855
|
"QueryContentsContentsResults",
|
@@ -4721,6 +5174,7 @@ __all__ = [
|
|
4721
5174
|
"QueryUsersUsersResults",
|
4722
5175
|
"QueryUsersUsersResultsConnectors",
|
4723
5176
|
"QueryUsersUsersResultsConnectorsAuthentication",
|
5177
|
+
"QueryUsersUsersResultsConnectorsAuthenticationArcade",
|
4724
5178
|
"QueryUsersUsersResultsConnectorsAuthenticationGoogle",
|
4725
5179
|
"QueryUsersUsersResultsConnectorsAuthenticationMicrosoft",
|
4726
5180
|
"QueryUsersUsersResultsConnectorsIntegration",
|
@@ -4728,6 +5182,60 @@ __all__ = [
|
|
4728
5182
|
"QueryUsersUsersResultsConnectorsIntegrationSlack",
|
4729
5183
|
"QueryUsersUsersResultsConnectorsIntegrationTwitter",
|
4730
5184
|
"QueryUsersUsersResultsOwner",
|
5185
|
+
"QueryViews",
|
5186
|
+
"QueryViewsViews",
|
5187
|
+
"QueryViewsViewsResults",
|
5188
|
+
"QueryViewsViewsResultsAugmentedFilter",
|
5189
|
+
"QueryViewsViewsResultsAugmentedFilterAnd",
|
5190
|
+
"QueryViewsViewsResultsAugmentedFilterAndCollections",
|
5191
|
+
"QueryViewsViewsResultsAugmentedFilterAndFeeds",
|
5192
|
+
"QueryViewsViewsResultsAugmentedFilterAndObservations",
|
5193
|
+
"QueryViewsViewsResultsAugmentedFilterAndObservationsObservable",
|
5194
|
+
"QueryViewsViewsResultsAugmentedFilterAndUsers",
|
5195
|
+
"QueryViewsViewsResultsAugmentedFilterAndWorkflows",
|
5196
|
+
"QueryViewsViewsResultsAugmentedFilterCollections",
|
5197
|
+
"QueryViewsViewsResultsAugmentedFilterContents",
|
5198
|
+
"QueryViewsViewsResultsAugmentedFilterCreationDateRange",
|
5199
|
+
"QueryViewsViewsResultsAugmentedFilterDateRange",
|
5200
|
+
"QueryViewsViewsResultsAugmentedFilterFeeds",
|
5201
|
+
"QueryViewsViewsResultsAugmentedFilterObservations",
|
5202
|
+
"QueryViewsViewsResultsAugmentedFilterObservationsObservable",
|
5203
|
+
"QueryViewsViewsResultsAugmentedFilterOr",
|
5204
|
+
"QueryViewsViewsResultsAugmentedFilterOrCollections",
|
5205
|
+
"QueryViewsViewsResultsAugmentedFilterOrFeeds",
|
5206
|
+
"QueryViewsViewsResultsAugmentedFilterOrObservations",
|
5207
|
+
"QueryViewsViewsResultsAugmentedFilterOrObservationsObservable",
|
5208
|
+
"QueryViewsViewsResultsAugmentedFilterOrUsers",
|
5209
|
+
"QueryViewsViewsResultsAugmentedFilterOrWorkflows",
|
5210
|
+
"QueryViewsViewsResultsAugmentedFilterSimilarContents",
|
5211
|
+
"QueryViewsViewsResultsAugmentedFilterUsers",
|
5212
|
+
"QueryViewsViewsResultsAugmentedFilterWorkflows",
|
5213
|
+
"QueryViewsViewsResultsFilter",
|
5214
|
+
"QueryViewsViewsResultsFilterAnd",
|
5215
|
+
"QueryViewsViewsResultsFilterAndCollections",
|
5216
|
+
"QueryViewsViewsResultsFilterAndFeeds",
|
5217
|
+
"QueryViewsViewsResultsFilterAndObservations",
|
5218
|
+
"QueryViewsViewsResultsFilterAndObservationsObservable",
|
5219
|
+
"QueryViewsViewsResultsFilterAndUsers",
|
5220
|
+
"QueryViewsViewsResultsFilterAndWorkflows",
|
5221
|
+
"QueryViewsViewsResultsFilterCollections",
|
5222
|
+
"QueryViewsViewsResultsFilterContents",
|
5223
|
+
"QueryViewsViewsResultsFilterCreationDateRange",
|
5224
|
+
"QueryViewsViewsResultsFilterDateRange",
|
5225
|
+
"QueryViewsViewsResultsFilterFeeds",
|
5226
|
+
"QueryViewsViewsResultsFilterObservations",
|
5227
|
+
"QueryViewsViewsResultsFilterObservationsObservable",
|
5228
|
+
"QueryViewsViewsResultsFilterOr",
|
5229
|
+
"QueryViewsViewsResultsFilterOrCollections",
|
5230
|
+
"QueryViewsViewsResultsFilterOrFeeds",
|
5231
|
+
"QueryViewsViewsResultsFilterOrObservations",
|
5232
|
+
"QueryViewsViewsResultsFilterOrObservationsObservable",
|
5233
|
+
"QueryViewsViewsResultsFilterOrUsers",
|
5234
|
+
"QueryViewsViewsResultsFilterOrWorkflows",
|
5235
|
+
"QueryViewsViewsResultsFilterSimilarContents",
|
5236
|
+
"QueryViewsViewsResultsFilterUsers",
|
5237
|
+
"QueryViewsViewsResultsFilterWorkflows",
|
5238
|
+
"QueryViewsViewsResultsOwner",
|
4731
5239
|
"QueryWorkflows",
|
4732
5240
|
"QueryWorkflowsWorkflows",
|
4733
5241
|
"QueryWorkflowsWorkflowsResults",
|
@@ -4956,6 +5464,7 @@ __all__ = [
|
|
4956
5464
|
"UPDATE_ALERT_GQL",
|
4957
5465
|
"UPDATE_CATEGORY_GQL",
|
4958
5466
|
"UPDATE_COLLECTION_GQL",
|
5467
|
+
"UPDATE_CONNECTOR_GQL",
|
4959
5468
|
"UPDATE_CONTENT_GQL",
|
4960
5469
|
"UPDATE_CONVERSATION_GQL",
|
4961
5470
|
"UPDATE_EVENT_GQL",
|
@@ -4982,6 +5491,7 @@ __all__ = [
|
|
4982
5491
|
"UPDATE_SOFTWARE_GQL",
|
4983
5492
|
"UPDATE_SPECIFICATION_GQL",
|
4984
5493
|
"UPDATE_USER_GQL",
|
5494
|
+
"UPDATE_VIEW_GQL",
|
4985
5495
|
"UPDATE_WORKFLOW_GQL",
|
4986
5496
|
"UPSERT_CATEGORY_GQL",
|
4987
5497
|
"UPSERT_LABEL_GQL",
|
@@ -4994,6 +5504,8 @@ __all__ = [
|
|
4994
5504
|
"UpdateCategoryUpdateCategory",
|
4995
5505
|
"UpdateCollection",
|
4996
5506
|
"UpdateCollectionUpdateCollection",
|
5507
|
+
"UpdateConnector",
|
5508
|
+
"UpdateConnectorUpdateConnector",
|
4997
5509
|
"UpdateContent",
|
4998
5510
|
"UpdateContentUpdateContent",
|
4999
5511
|
"UpdateContentUpdateContentCollections",
|
@@ -5052,6 +5564,58 @@ __all__ = [
|
|
5052
5564
|
"UpdateSpecificationUpdateSpecification",
|
5053
5565
|
"UpdateUser",
|
5054
5566
|
"UpdateUserUpdateUser",
|
5567
|
+
"UpdateView",
|
5568
|
+
"UpdateViewUpdateView",
|
5569
|
+
"UpdateViewUpdateViewAugmentedFilter",
|
5570
|
+
"UpdateViewUpdateViewAugmentedFilterAnd",
|
5571
|
+
"UpdateViewUpdateViewAugmentedFilterAndCollections",
|
5572
|
+
"UpdateViewUpdateViewAugmentedFilterAndFeeds",
|
5573
|
+
"UpdateViewUpdateViewAugmentedFilterAndObservations",
|
5574
|
+
"UpdateViewUpdateViewAugmentedFilterAndObservationsObservable",
|
5575
|
+
"UpdateViewUpdateViewAugmentedFilterAndUsers",
|
5576
|
+
"UpdateViewUpdateViewAugmentedFilterAndWorkflows",
|
5577
|
+
"UpdateViewUpdateViewAugmentedFilterCollections",
|
5578
|
+
"UpdateViewUpdateViewAugmentedFilterContents",
|
5579
|
+
"UpdateViewUpdateViewAugmentedFilterCreationDateRange",
|
5580
|
+
"UpdateViewUpdateViewAugmentedFilterDateRange",
|
5581
|
+
"UpdateViewUpdateViewAugmentedFilterFeeds",
|
5582
|
+
"UpdateViewUpdateViewAugmentedFilterObservations",
|
5583
|
+
"UpdateViewUpdateViewAugmentedFilterObservationsObservable",
|
5584
|
+
"UpdateViewUpdateViewAugmentedFilterOr",
|
5585
|
+
"UpdateViewUpdateViewAugmentedFilterOrCollections",
|
5586
|
+
"UpdateViewUpdateViewAugmentedFilterOrFeeds",
|
5587
|
+
"UpdateViewUpdateViewAugmentedFilterOrObservations",
|
5588
|
+
"UpdateViewUpdateViewAugmentedFilterOrObservationsObservable",
|
5589
|
+
"UpdateViewUpdateViewAugmentedFilterOrUsers",
|
5590
|
+
"UpdateViewUpdateViewAugmentedFilterOrWorkflows",
|
5591
|
+
"UpdateViewUpdateViewAugmentedFilterSimilarContents",
|
5592
|
+
"UpdateViewUpdateViewAugmentedFilterUsers",
|
5593
|
+
"UpdateViewUpdateViewAugmentedFilterWorkflows",
|
5594
|
+
"UpdateViewUpdateViewFilter",
|
5595
|
+
"UpdateViewUpdateViewFilterAnd",
|
5596
|
+
"UpdateViewUpdateViewFilterAndCollections",
|
5597
|
+
"UpdateViewUpdateViewFilterAndFeeds",
|
5598
|
+
"UpdateViewUpdateViewFilterAndObservations",
|
5599
|
+
"UpdateViewUpdateViewFilterAndObservationsObservable",
|
5600
|
+
"UpdateViewUpdateViewFilterAndUsers",
|
5601
|
+
"UpdateViewUpdateViewFilterAndWorkflows",
|
5602
|
+
"UpdateViewUpdateViewFilterCollections",
|
5603
|
+
"UpdateViewUpdateViewFilterContents",
|
5604
|
+
"UpdateViewUpdateViewFilterCreationDateRange",
|
5605
|
+
"UpdateViewUpdateViewFilterDateRange",
|
5606
|
+
"UpdateViewUpdateViewFilterFeeds",
|
5607
|
+
"UpdateViewUpdateViewFilterObservations",
|
5608
|
+
"UpdateViewUpdateViewFilterObservationsObservable",
|
5609
|
+
"UpdateViewUpdateViewFilterOr",
|
5610
|
+
"UpdateViewUpdateViewFilterOrCollections",
|
5611
|
+
"UpdateViewUpdateViewFilterOrFeeds",
|
5612
|
+
"UpdateViewUpdateViewFilterOrObservations",
|
5613
|
+
"UpdateViewUpdateViewFilterOrObservationsObservable",
|
5614
|
+
"UpdateViewUpdateViewFilterOrUsers",
|
5615
|
+
"UpdateViewUpdateViewFilterOrWorkflows",
|
5616
|
+
"UpdateViewUpdateViewFilterSimilarContents",
|
5617
|
+
"UpdateViewUpdateViewFilterUsers",
|
5618
|
+
"UpdateViewUpdateViewFilterWorkflows",
|
5055
5619
|
"UpdateWorkflow",
|
5056
5620
|
"UpdateWorkflowUpdateWorkflow",
|
5057
5621
|
"UpdateWorkflowUpdateWorkflowActions",
|
@@ -5173,7 +5737,14 @@ __all__ = [
|
|
5173
5737
|
"UserInput",
|
5174
5738
|
"UserTypes",
|
5175
5739
|
"UserUpdateInput",
|
5740
|
+
"VIEW_EXISTS_GQL",
|
5176
5741
|
"VideoMetadataInput",
|
5742
|
+
"ViewExists",
|
5743
|
+
"ViewExistsViewExists",
|
5744
|
+
"ViewFilter",
|
5745
|
+
"ViewInput",
|
5746
|
+
"ViewTypes",
|
5747
|
+
"ViewUpdateInput",
|
5177
5748
|
"VoyageModelPropertiesInput",
|
5178
5749
|
"VoyageModelPropertiesUpdateInput",
|
5179
5750
|
"VoyageModels",
|