graphlit-client 1.0.20250622004__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 +700 -0
- graphlit_api/client.py +297 -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 +903 -818
- graphlit_api/get_connector.py +88 -0
- graphlit_api/get_content.py +62 -0
- graphlit_api/get_feed.py +60 -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 +2902 -2632
- graphlit_api/lookup_contents.py +66 -0
- graphlit_api/operations.py +1209 -0
- graphlit_api/query_box_folders.py +25 -0
- graphlit_api/query_connectors.py +93 -0
- graphlit_api/query_contents.py +63 -0
- graphlit_api/query_contents_observations.py +67 -0
- graphlit_api/query_dropbox_folders.py +27 -0
- graphlit_api/query_feeds.py +60 -1
- graphlit_api/query_google_calendars.py +27 -0
- graphlit_api/query_google_drive_folders.py +29 -0
- graphlit_api/query_microsoft_calendars.py +29 -0
- 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.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/RECORD +41 -24
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622004.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 (
|
@@ -523,6 +582,11 @@ from .enums import (
|
|
523
582
|
AzureOpenAIModels,
|
524
583
|
BedrockModels,
|
525
584
|
BillableMetrics,
|
585
|
+
CalendarAttendeeResponseStatus,
|
586
|
+
CalendarEventStatus,
|
587
|
+
CalendarEventVisibility,
|
588
|
+
CalendarRecurrencePattern,
|
589
|
+
CalendarReminderMethod,
|
526
590
|
CategoryFacetTypes,
|
527
591
|
CerebrasModels,
|
528
592
|
CohereModels,
|
@@ -557,7 +621,11 @@ from .enums import (
|
|
557
621
|
FeedTypes,
|
558
622
|
FilePreparationServiceTypes,
|
559
623
|
FileTypes,
|
624
|
+
GitHubAuthenticationTypes,
|
625
|
+
GitHubIssueAuthenticationTypes,
|
626
|
+
GoogleCalendarAuthenticationTypes,
|
560
627
|
GoogleDriveAuthenticationTypes,
|
628
|
+
GoogleEmailAuthenticationTypes,
|
561
629
|
GoogleModels,
|
562
630
|
GraphStrategyTypes,
|
563
631
|
GroqModels,
|
@@ -582,12 +650,15 @@ from .enums import (
|
|
582
650
|
MedicalTestFacetTypes,
|
583
651
|
MedicalTherapyFacetTypes,
|
584
652
|
MetadataTypes,
|
653
|
+
MicrosoftCalendarAuthenticationTypes,
|
654
|
+
MicrosoftEmailAuthenticationTypes,
|
585
655
|
MistralModels,
|
586
656
|
ModelServiceTypes,
|
587
657
|
ModelTypes,
|
588
658
|
NotionTypes,
|
589
659
|
ObservableTypes,
|
590
660
|
OccurrenceTypes,
|
661
|
+
OneDriveAuthenticationTypes,
|
591
662
|
OpenAIImageModels,
|
592
663
|
OpenAIModels,
|
593
664
|
OpenAIReasoningEffortLevels,
|
@@ -632,6 +703,7 @@ from .enums import (
|
|
632
703
|
TwitterListingTypes,
|
633
704
|
UnitTypes,
|
634
705
|
UserTypes,
|
706
|
+
ViewTypes,
|
635
707
|
VoyageModels,
|
636
708
|
YouTubeTypes,
|
637
709
|
)
|
@@ -731,6 +803,19 @@ from .get_collection import (
|
|
731
803
|
GetCollectionCollectionContents,
|
732
804
|
GetCollectionCollectionOwner,
|
733
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
|
+
)
|
734
819
|
from .get_content import (
|
735
820
|
GetContent,
|
736
821
|
GetContentContent,
|
@@ -744,6 +829,11 @@ from .get_content import (
|
|
744
829
|
GetContentContentEmailCc,
|
745
830
|
GetContentContentEmailFrom,
|
746
831
|
GetContentContentEmailTo,
|
832
|
+
GetContentContentEvent,
|
833
|
+
GetContentContentEventAttendees,
|
834
|
+
GetContentContentEventOrganizer,
|
835
|
+
GetContentContentEventRecurrence,
|
836
|
+
GetContentContentEventReminders,
|
747
837
|
GetContentContentFeed,
|
748
838
|
GetContentContentFrames,
|
749
839
|
GetContentContentH3,
|
@@ -836,6 +926,9 @@ from .get_event import GetEvent, GetEventEvent, GetEventEventAddress
|
|
836
926
|
from .get_feed import (
|
837
927
|
GetFeed,
|
838
928
|
GetFeedFeed,
|
929
|
+
GetFeedFeedCalendar,
|
930
|
+
GetFeedFeedCalendarGoogle,
|
931
|
+
GetFeedFeedCalendarMicrosoft,
|
839
932
|
GetFeedFeedDiscord,
|
840
933
|
GetFeedFeedEmail,
|
841
934
|
GetFeedFeedEmailGoogle,
|
@@ -961,6 +1054,7 @@ from .get_user import (
|
|
961
1054
|
GetUserUser,
|
962
1055
|
GetUserUserConnectors,
|
963
1056
|
GetUserUserConnectorsAuthentication,
|
1057
|
+
GetUserUserConnectorsAuthenticationArcade,
|
964
1058
|
GetUserUserConnectorsAuthenticationGoogle,
|
965
1059
|
GetUserUserConnectorsAuthenticationMicrosoft,
|
966
1060
|
GetUserUserConnectorsIntegration,
|
@@ -974,6 +1068,7 @@ from .get_user_by_identifier import (
|
|
974
1068
|
GetUserByIdentifierUserByIdentifier,
|
975
1069
|
GetUserByIdentifierUserByIdentifierConnectors,
|
976
1070
|
GetUserByIdentifierUserByIdentifierConnectorsAuthentication,
|
1071
|
+
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade,
|
977
1072
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle,
|
978
1073
|
GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft,
|
979
1074
|
GetUserByIdentifierUserByIdentifierConnectorsIntegration,
|
@@ -982,6 +1077,61 @@ from .get_user_by_identifier import (
|
|
982
1077
|
GetUserByIdentifierUserByIdentifierConnectorsIntegrationTwitter,
|
983
1078
|
GetUserByIdentifierUserByIdentifierOwner,
|
984
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
|
+
)
|
985
1135
|
from .get_workflow import (
|
986
1136
|
GetWorkflow,
|
987
1137
|
GetWorkflowWorkflow,
|
@@ -1121,6 +1271,7 @@ from .input_types import (
|
|
1121
1271
|
AmazonFeedPropertiesUpdateInput,
|
1122
1272
|
AnthropicModelPropertiesInput,
|
1123
1273
|
AnthropicModelPropertiesUpdateInput,
|
1274
|
+
ArcadeAuthenticationPropertiesInput,
|
1124
1275
|
AssemblyAIAudioPreparationPropertiesInput,
|
1125
1276
|
AtlassianJiraFeedPropertiesInput,
|
1126
1277
|
AtlassianJiraFeedPropertiesUpdateInput,
|
@@ -1142,6 +1293,12 @@ from .input_types import (
|
|
1142
1293
|
BoundingBoxInput,
|
1143
1294
|
BoxFeedPropertiesInput,
|
1144
1295
|
BoxFeedPropertiesUpdateInput,
|
1296
|
+
BoxFoldersInput,
|
1297
|
+
CalendarAttendeeInput,
|
1298
|
+
CalendarFeedPropertiesInput,
|
1299
|
+
CalendarFeedPropertiesUpdateInput,
|
1300
|
+
CalendarRecurrenceInput,
|
1301
|
+
CalendarReminderInput,
|
1145
1302
|
CategoryFacetInput,
|
1146
1303
|
CategoryFilter,
|
1147
1304
|
CategoryInput,
|
@@ -1183,13 +1340,16 @@ from .input_types import (
|
|
1183
1340
|
DeepseekModelPropertiesInput,
|
1184
1341
|
DeepseekModelPropertiesUpdateInput,
|
1185
1342
|
DiffbotEnrichmentPropertiesInput,
|
1343
|
+
DiscordChannelsInput,
|
1186
1344
|
DiscordFeedPropertiesInput,
|
1187
1345
|
DiscordFeedPropertiesUpdateInput,
|
1346
|
+
DiscordGuildsInput,
|
1188
1347
|
DocumentMetadataInput,
|
1189
1348
|
DocumentPreparationPropertiesInput,
|
1190
1349
|
DrawingMetadataInput,
|
1191
1350
|
DropboxFeedPropertiesInput,
|
1192
1351
|
DropboxFeedPropertiesUpdateInput,
|
1352
|
+
DropboxFoldersInput,
|
1193
1353
|
ElevenLabsPublishingPropertiesInput,
|
1194
1354
|
EmailFeedPropertiesInput,
|
1195
1355
|
EmailFeedPropertiesUpdateInput,
|
@@ -1206,6 +1366,7 @@ from .input_types import (
|
|
1206
1366
|
EventFacetInput,
|
1207
1367
|
EventFilter,
|
1208
1368
|
EventInput,
|
1369
|
+
EventMetadataInput,
|
1209
1370
|
EventUpdateInput,
|
1210
1371
|
ExtractionWorkflowJobInput,
|
1211
1372
|
ExtractionWorkflowStageInput,
|
@@ -1221,8 +1382,12 @@ from .input_types import (
|
|
1221
1382
|
GitHubIssuesFeedPropertiesInput,
|
1222
1383
|
GitHubIssuesFeedPropertiesUpdateInput,
|
1223
1384
|
GoogleAuthenticationPropertiesInput,
|
1385
|
+
GoogleCalendarFeedPropertiesInput,
|
1386
|
+
GoogleCalendarFeedPropertiesUpdateInput,
|
1387
|
+
GoogleCalendarsInput,
|
1224
1388
|
GoogleDriveFeedPropertiesInput,
|
1225
1389
|
GoogleDriveFeedPropertiesUpdateInput,
|
1390
|
+
GoogleDriveFoldersInput,
|
1226
1391
|
GoogleEmailFeedPropertiesInput,
|
1227
1392
|
GoogleEmailFeedPropertiesUpdateInput,
|
1228
1393
|
GoogleFeedPropertiesInput,
|
@@ -1260,6 +1425,7 @@ from .input_types import (
|
|
1260
1425
|
LinearFeedPropertiesInput,
|
1261
1426
|
LinearFeedPropertiesUpdateInput,
|
1262
1427
|
LinearProjectsInput,
|
1428
|
+
LinkReferenceInput,
|
1263
1429
|
LinkStrategyInput,
|
1264
1430
|
MedicalConditionFacetInput,
|
1265
1431
|
MedicalConditionFilter,
|
@@ -1309,6 +1475,9 @@ from .input_types import (
|
|
1309
1475
|
MetadataInput,
|
1310
1476
|
MetadataUpdateInput,
|
1311
1477
|
MicrosoftAuthenticationPropertiesInput,
|
1478
|
+
MicrosoftCalendarFeedPropertiesInput,
|
1479
|
+
MicrosoftCalendarFeedPropertiesUpdateInput,
|
1480
|
+
MicrosoftCalendarsInput,
|
1312
1481
|
MicrosoftEmailFeedPropertiesInput,
|
1313
1482
|
MicrosoftEmailFeedPropertiesUpdateInput,
|
1314
1483
|
MicrosoftTeamsChannelsInput,
|
@@ -1423,6 +1592,9 @@ from .input_types import (
|
|
1423
1592
|
UserInput,
|
1424
1593
|
UserUpdateInput,
|
1425
1594
|
VideoMetadataInput,
|
1595
|
+
ViewFilter,
|
1596
|
+
ViewInput,
|
1597
|
+
ViewUpdateInput,
|
1426
1598
|
VoyageModelPropertiesInput,
|
1427
1599
|
VoyageModelPropertiesUpdateInput,
|
1428
1600
|
WebFeedPropertiesInput,
|
@@ -1454,6 +1626,11 @@ from .lookup_contents import (
|
|
1454
1626
|
LookupContentsLookupContentsResultsEmailCc,
|
1455
1627
|
LookupContentsLookupContentsResultsEmailFrom,
|
1456
1628
|
LookupContentsLookupContentsResultsEmailTo,
|
1629
|
+
LookupContentsLookupContentsResultsEvent,
|
1630
|
+
LookupContentsLookupContentsResultsEventAttendees,
|
1631
|
+
LookupContentsLookupContentsResultsEventOrganizer,
|
1632
|
+
LookupContentsLookupContentsResultsEventRecurrence,
|
1633
|
+
LookupContentsLookupContentsResultsEventReminders,
|
1457
1634
|
LookupContentsLookupContentsResultsFeed,
|
1458
1635
|
LookupContentsLookupContentsResultsFrames,
|
1459
1636
|
LookupContentsLookupContentsResultsH3,
|
@@ -1491,6 +1668,7 @@ from .operations import (
|
|
1491
1668
|
COUNT_ALERTS_GQL,
|
1492
1669
|
COUNT_CATEGORIES_GQL,
|
1493
1670
|
COUNT_COLLECTIONS_GQL,
|
1671
|
+
COUNT_CONNECTORS_GQL,
|
1494
1672
|
COUNT_CONTENTS_GQL,
|
1495
1673
|
COUNT_CONVERSATIONS_GQL,
|
1496
1674
|
COUNT_EVENTS_GQL,
|
@@ -1515,10 +1693,12 @@ from .operations import (
|
|
1515
1693
|
COUNT_SOFTWARES_GQL,
|
1516
1694
|
COUNT_SPECIFICATIONS_GQL,
|
1517
1695
|
COUNT_USERS_GQL,
|
1696
|
+
COUNT_VIEWS_GQL,
|
1518
1697
|
COUNT_WORKFLOWS_GQL,
|
1519
1698
|
CREATE_ALERT_GQL,
|
1520
1699
|
CREATE_CATEGORY_GQL,
|
1521
1700
|
CREATE_COLLECTION_GQL,
|
1701
|
+
CREATE_CONNECTOR_GQL,
|
1522
1702
|
CREATE_CONVERSATION_GQL,
|
1523
1703
|
CREATE_EVENT_GQL,
|
1524
1704
|
CREATE_FEED_GQL,
|
@@ -1543,6 +1723,7 @@ from .operations import (
|
|
1543
1723
|
CREATE_SOFTWARE_GQL,
|
1544
1724
|
CREATE_SPECIFICATION_GQL,
|
1545
1725
|
CREATE_USER_GQL,
|
1726
|
+
CREATE_VIEW_GQL,
|
1546
1727
|
CREATE_WORKFLOW_GQL,
|
1547
1728
|
DELETE_ALERT_GQL,
|
1548
1729
|
DELETE_ALERTS_GQL,
|
@@ -1577,6 +1758,7 @@ from .operations import (
|
|
1577
1758
|
DELETE_CATEGORY_GQL,
|
1578
1759
|
DELETE_COLLECTION_GQL,
|
1579
1760
|
DELETE_COLLECTIONS_GQL,
|
1761
|
+
DELETE_CONNECTOR_GQL,
|
1580
1762
|
DELETE_CONTENT_GQL,
|
1581
1763
|
DELETE_CONTENTS_GQL,
|
1582
1764
|
DELETE_CONVERSATION_GQL,
|
@@ -1625,6 +1807,7 @@ from .operations import (
|
|
1625
1807
|
DELETE_SPECIFICATION_GQL,
|
1626
1808
|
DELETE_SPECIFICATIONS_GQL,
|
1627
1809
|
DELETE_USER_GQL,
|
1810
|
+
DELETE_VIEW_GQL,
|
1628
1811
|
DELETE_WORKFLOW_GQL,
|
1629
1812
|
DELETE_WORKFLOWS_GQL,
|
1630
1813
|
DESCRIBE_ENCODED_IMAGE_GQL,
|
@@ -1642,6 +1825,7 @@ from .operations import (
|
|
1642
1825
|
GET_ALERT_GQL,
|
1643
1826
|
GET_CATEGORY_GQL,
|
1644
1827
|
GET_COLLECTION_GQL,
|
1828
|
+
GET_CONNECTOR_GQL,
|
1645
1829
|
GET_CONTENT_GQL,
|
1646
1830
|
GET_CONVERSATION_GQL,
|
1647
1831
|
GET_EVENT_GQL,
|
@@ -1669,6 +1853,7 @@ from .operations import (
|
|
1669
1853
|
GET_SPECIFICATION_GQL,
|
1670
1854
|
GET_USER_BY_IDENTIFIER_GQL,
|
1671
1855
|
GET_USER_GQL,
|
1856
|
+
GET_VIEW_GQL,
|
1672
1857
|
GET_WORKFLOW_GQL,
|
1673
1858
|
INGEST_BATCH_GQL,
|
1674
1859
|
INGEST_ENCODED_FILE_GQL,
|
@@ -1690,16 +1875,21 @@ from .operations import (
|
|
1690
1875
|
PUBLISH_CONVERSATION_GQL,
|
1691
1876
|
PUBLISH_TEXT_GQL,
|
1692
1877
|
QUERY_ALERTS_GQL,
|
1878
|
+
QUERY_BOX_FOLDERS_GQL,
|
1693
1879
|
QUERY_CATEGORIES_GQL,
|
1694
1880
|
QUERY_COLLECTIONS_GQL,
|
1881
|
+
QUERY_CONNECTORS_GQL,
|
1695
1882
|
QUERY_CONTENTS_FACETS_GQL,
|
1696
1883
|
QUERY_CONTENTS_GQL,
|
1697
1884
|
QUERY_CONTENTS_GRAPH_GQL,
|
1698
1885
|
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
1699
1886
|
QUERY_CONVERSATIONS_GQL,
|
1700
1887
|
QUERY_CREDITS_GQL,
|
1888
|
+
QUERY_DROPBOX_FOLDERS_GQL,
|
1701
1889
|
QUERY_EVENTS_GQL,
|
1702
1890
|
QUERY_FEEDS_GQL,
|
1891
|
+
QUERY_GOOGLE_CALENDARS_GQL,
|
1892
|
+
QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
1703
1893
|
QUERY_LABELS_GQL,
|
1704
1894
|
QUERY_LINEAR_PROJECTS_GQL,
|
1705
1895
|
QUERY_MEDICAL_CONDITIONS_GQL,
|
@@ -1713,6 +1903,7 @@ from .operations import (
|
|
1713
1903
|
QUERY_MEDICAL_STUDIES_GQL,
|
1714
1904
|
QUERY_MEDICAL_TESTS_GQL,
|
1715
1905
|
QUERY_MEDICAL_THERAPIES_GQL,
|
1906
|
+
QUERY_MICROSOFT_CALENDARS_GQL,
|
1716
1907
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL,
|
1717
1908
|
QUERY_MICROSOFT_TEAMS_TEAMS_GQL,
|
1718
1909
|
QUERY_MODELS_GQL,
|
@@ -1732,6 +1923,7 @@ from .operations import (
|
|
1732
1923
|
QUERY_TOKENS_GQL,
|
1733
1924
|
QUERY_USAGE_GQL,
|
1734
1925
|
QUERY_USERS_GQL,
|
1926
|
+
QUERY_VIEWS_GQL,
|
1735
1927
|
QUERY_WORKFLOWS_GQL,
|
1736
1928
|
REMOVE_CONTENTS_FROM_COLLECTION_GQL,
|
1737
1929
|
RETRIEVE_SOURCES_GQL,
|
@@ -1749,6 +1941,7 @@ from .operations import (
|
|
1749
1941
|
UPDATE_ALERT_GQL,
|
1750
1942
|
UPDATE_CATEGORY_GQL,
|
1751
1943
|
UPDATE_COLLECTION_GQL,
|
1944
|
+
UPDATE_CONNECTOR_GQL,
|
1752
1945
|
UPDATE_CONTENT_GQL,
|
1753
1946
|
UPDATE_CONVERSATION_GQL,
|
1754
1947
|
UPDATE_EVENT_GQL,
|
@@ -1775,6 +1968,7 @@ from .operations import (
|
|
1775
1968
|
UPDATE_SOFTWARE_GQL,
|
1776
1969
|
UPDATE_SPECIFICATION_GQL,
|
1777
1970
|
UPDATE_USER_GQL,
|
1971
|
+
UPDATE_VIEW_GQL,
|
1778
1972
|
UPDATE_WORKFLOW_GQL,
|
1779
1973
|
UPSERT_CATEGORY_GQL,
|
1780
1974
|
UPSERT_LABEL_GQL,
|
@@ -1911,6 +2105,11 @@ from .query_alerts import (
|
|
1911
2105
|
QueryAlertsAlertsResultsPublishSpecification,
|
1912
2106
|
QueryAlertsAlertsResultsSummarySpecification,
|
1913
2107
|
)
|
2108
|
+
from .query_box_folders import (
|
2109
|
+
QueryBoxFolders,
|
2110
|
+
QueryBoxFoldersBoxFolders,
|
2111
|
+
QueryBoxFoldersBoxFoldersResults,
|
2112
|
+
)
|
1914
2113
|
from .query_categories import (
|
1915
2114
|
QueryCategories,
|
1916
2115
|
QueryCategoriesCategories,
|
@@ -1922,6 +2121,20 @@ from .query_collections import (
|
|
1922
2121
|
QueryCollectionsCollectionsResults,
|
1923
2122
|
QueryCollectionsCollectionsResultsOwner,
|
1924
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
|
+
)
|
1925
2138
|
from .query_contents import (
|
1926
2139
|
QueryContents,
|
1927
2140
|
QueryContentsContents,
|
@@ -1934,6 +2147,11 @@ from .query_contents import (
|
|
1934
2147
|
QueryContentsContentsResultsEmailCc,
|
1935
2148
|
QueryContentsContentsResultsEmailFrom,
|
1936
2149
|
QueryContentsContentsResultsEmailTo,
|
2150
|
+
QueryContentsContentsResultsEvent,
|
2151
|
+
QueryContentsContentsResultsEventAttendees,
|
2152
|
+
QueryContentsContentsResultsEventOrganizer,
|
2153
|
+
QueryContentsContentsResultsEventRecurrence,
|
2154
|
+
QueryContentsContentsResultsEventReminders,
|
1937
2155
|
QueryContentsContentsResultsFeed,
|
1938
2156
|
QueryContentsContentsResultsFrames,
|
1939
2157
|
QueryContentsContentsResultsImage,
|
@@ -1977,6 +2195,11 @@ from .query_contents_observations import (
|
|
1977
2195
|
QueryContentsObservationsContentsResultsEmailCc,
|
1978
2196
|
QueryContentsObservationsContentsResultsEmailFrom,
|
1979
2197
|
QueryContentsObservationsContentsResultsEmailTo,
|
2198
|
+
QueryContentsObservationsContentsResultsEvent,
|
2199
|
+
QueryContentsObservationsContentsResultsEventAttendees,
|
2200
|
+
QueryContentsObservationsContentsResultsEventOrganizer,
|
2201
|
+
QueryContentsObservationsContentsResultsEventRecurrence,
|
2202
|
+
QueryContentsObservationsContentsResultsEventReminders,
|
1980
2203
|
QueryContentsObservationsContentsResultsFeed,
|
1981
2204
|
QueryContentsObservationsContentsResultsFrames,
|
1982
2205
|
QueryContentsObservationsContentsResultsImage,
|
@@ -2065,6 +2288,11 @@ from .query_conversations import (
|
|
2065
2288
|
QueryConversationsConversationsResultsSpecification,
|
2066
2289
|
)
|
2067
2290
|
from .query_credits import QueryCredits, QueryCreditsCredits
|
2291
|
+
from .query_dropbox_folders import (
|
2292
|
+
QueryDropboxFolders,
|
2293
|
+
QueryDropboxFoldersDropboxFolders,
|
2294
|
+
QueryDropboxFoldersDropboxFoldersResults,
|
2295
|
+
)
|
2068
2296
|
from .query_events import (
|
2069
2297
|
QueryEvents,
|
2070
2298
|
QueryEventsEvents,
|
@@ -2075,6 +2303,9 @@ from .query_feeds import (
|
|
2075
2303
|
QueryFeeds,
|
2076
2304
|
QueryFeedsFeeds,
|
2077
2305
|
QueryFeedsFeedsResults,
|
2306
|
+
QueryFeedsFeedsResultsCalendar,
|
2307
|
+
QueryFeedsFeedsResultsCalendarGoogle,
|
2308
|
+
QueryFeedsFeedsResultsCalendarMicrosoft,
|
2078
2309
|
QueryFeedsFeedsResultsDiscord,
|
2079
2310
|
QueryFeedsFeedsResultsEmail,
|
2080
2311
|
QueryFeedsFeedsResultsEmailGoogle,
|
@@ -2112,6 +2343,16 @@ from .query_feeds import (
|
|
2112
2343
|
QueryFeedsFeedsResultsYoutube,
|
2113
2344
|
QueryFeedsFeedsResultsZendesk,
|
2114
2345
|
)
|
2346
|
+
from .query_google_calendars import (
|
2347
|
+
QueryGoogleCalendars,
|
2348
|
+
QueryGoogleCalendarsGoogleCalendars,
|
2349
|
+
QueryGoogleCalendarsGoogleCalendarsResults,
|
2350
|
+
)
|
2351
|
+
from .query_google_drive_folders import (
|
2352
|
+
QueryGoogleDriveFolders,
|
2353
|
+
QueryGoogleDriveFoldersGoogleDriveFolders,
|
2354
|
+
QueryGoogleDriveFoldersGoogleDriveFoldersResults,
|
2355
|
+
)
|
2115
2356
|
from .query_labels import QueryLabels, QueryLabelsLabels, QueryLabelsLabelsResults
|
2116
2357
|
from .query_linear_projects import (
|
2117
2358
|
QueryLinearProjects,
|
@@ -2173,6 +2414,11 @@ from .query_medical_therapies import (
|
|
2173
2414
|
QueryMedicalTherapiesMedicalTherapies,
|
2174
2415
|
QueryMedicalTherapiesMedicalTherapiesResults,
|
2175
2416
|
)
|
2417
|
+
from .query_microsoft_calendars import (
|
2418
|
+
QueryMicrosoftCalendars,
|
2419
|
+
QueryMicrosoftCalendarsMicrosoftCalendars,
|
2420
|
+
QueryMicrosoftCalendarsMicrosoftCalendarsResults,
|
2421
|
+
)
|
2176
2422
|
from .query_microsoft_teams_channels import (
|
2177
2423
|
QueryMicrosoftTeamsChannels,
|
2178
2424
|
QueryMicrosoftTeamsChannelsMicrosoftTeamsChannels,
|
@@ -2280,6 +2526,7 @@ from .query_users import (
|
|
2280
2526
|
QueryUsersUsersResults,
|
2281
2527
|
QueryUsersUsersResultsConnectors,
|
2282
2528
|
QueryUsersUsersResultsConnectorsAuthentication,
|
2529
|
+
QueryUsersUsersResultsConnectorsAuthenticationArcade,
|
2283
2530
|
QueryUsersUsersResultsConnectorsAuthenticationGoogle,
|
2284
2531
|
QueryUsersUsersResultsConnectorsAuthenticationMicrosoft,
|
2285
2532
|
QueryUsersUsersResultsConnectorsIntegration,
|
@@ -2288,6 +2535,62 @@ from .query_users import (
|
|
2288
2535
|
QueryUsersUsersResultsConnectorsIntegrationTwitter,
|
2289
2536
|
QueryUsersUsersResultsOwner,
|
2290
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
|
+
)
|
2291
2594
|
from .query_workflows import (
|
2292
2595
|
QueryWorkflows,
|
2293
2596
|
QueryWorkflowsWorkflows,
|
@@ -2447,6 +2750,7 @@ from .summarize_text import (
|
|
2447
2750
|
from .update_alert import UpdateAlert, UpdateAlertUpdateAlert
|
2448
2751
|
from .update_category import UpdateCategory, UpdateCategoryUpdateCategory
|
2449
2752
|
from .update_collection import UpdateCollection, UpdateCollectionUpdateCollection
|
2753
|
+
from .update_connector import UpdateConnector, UpdateConnectorUpdateConnector
|
2450
2754
|
from .update_content import (
|
2451
2755
|
UpdateContent,
|
2452
2756
|
UpdateContentUpdateContent,
|
@@ -2518,6 +2822,60 @@ from .update_specification import (
|
|
2518
2822
|
UpdateSpecificationUpdateSpecification,
|
2519
2823
|
)
|
2520
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
|
+
)
|
2521
2879
|
from .update_workflow import (
|
2522
2880
|
UpdateWorkflow,
|
2523
2881
|
UpdateWorkflowUpdateWorkflow,
|
@@ -2659,6 +3017,7 @@ __all__ = [
|
|
2659
3017
|
"AnthropicModelPropertiesUpdateInput",
|
2660
3018
|
"AnthropicModels",
|
2661
3019
|
"ApplyPolicy",
|
3020
|
+
"ArcadeAuthenticationPropertiesInput",
|
2662
3021
|
"AskGraphlit",
|
2663
3022
|
"AskGraphlitAskGraphlit",
|
2664
3023
|
"AskGraphlitAskGraphlitConversation",
|
@@ -2701,6 +3060,7 @@ __all__ = [
|
|
2701
3060
|
"BoundingBoxInput",
|
2702
3061
|
"BoxFeedPropertiesInput",
|
2703
3062
|
"BoxFeedPropertiesUpdateInput",
|
3063
|
+
"BoxFoldersInput",
|
2704
3064
|
"BranchConversation",
|
2705
3065
|
"BranchConversationBranchConversation",
|
2706
3066
|
"CLEAR_CONVERSATION_GQL",
|
@@ -2710,6 +3070,7 @@ __all__ = [
|
|
2710
3070
|
"COUNT_ALERTS_GQL",
|
2711
3071
|
"COUNT_CATEGORIES_GQL",
|
2712
3072
|
"COUNT_COLLECTIONS_GQL",
|
3073
|
+
"COUNT_CONNECTORS_GQL",
|
2713
3074
|
"COUNT_CONTENTS_GQL",
|
2714
3075
|
"COUNT_CONVERSATIONS_GQL",
|
2715
3076
|
"COUNT_EVENTS_GQL",
|
@@ -2734,10 +3095,12 @@ __all__ = [
|
|
2734
3095
|
"COUNT_SOFTWARES_GQL",
|
2735
3096
|
"COUNT_SPECIFICATIONS_GQL",
|
2736
3097
|
"COUNT_USERS_GQL",
|
3098
|
+
"COUNT_VIEWS_GQL",
|
2737
3099
|
"COUNT_WORKFLOWS_GQL",
|
2738
3100
|
"CREATE_ALERT_GQL",
|
2739
3101
|
"CREATE_CATEGORY_GQL",
|
2740
3102
|
"CREATE_COLLECTION_GQL",
|
3103
|
+
"CREATE_CONNECTOR_GQL",
|
2741
3104
|
"CREATE_CONVERSATION_GQL",
|
2742
3105
|
"CREATE_EVENT_GQL",
|
2743
3106
|
"CREATE_FEED_GQL",
|
@@ -2762,7 +3125,18 @@ __all__ = [
|
|
2762
3125
|
"CREATE_SOFTWARE_GQL",
|
2763
3126
|
"CREATE_SPECIFICATION_GQL",
|
2764
3127
|
"CREATE_USER_GQL",
|
3128
|
+
"CREATE_VIEW_GQL",
|
2765
3129
|
"CREATE_WORKFLOW_GQL",
|
3130
|
+
"CalendarAttendeeInput",
|
3131
|
+
"CalendarAttendeeResponseStatus",
|
3132
|
+
"CalendarEventStatus",
|
3133
|
+
"CalendarEventVisibility",
|
3134
|
+
"CalendarFeedPropertiesInput",
|
3135
|
+
"CalendarFeedPropertiesUpdateInput",
|
3136
|
+
"CalendarRecurrenceInput",
|
3137
|
+
"CalendarRecurrencePattern",
|
3138
|
+
"CalendarReminderInput",
|
3139
|
+
"CalendarReminderMethod",
|
2766
3140
|
"CategoryFacetInput",
|
2767
3141
|
"CategoryFacetTypes",
|
2768
3142
|
"CategoryFilter",
|
@@ -2879,6 +3253,8 @@ __all__ = [
|
|
2879
3253
|
"CountCategoriesCountCategories",
|
2880
3254
|
"CountCollections",
|
2881
3255
|
"CountCollectionsCountCollections",
|
3256
|
+
"CountConnectors",
|
3257
|
+
"CountConnectorsCountConnectors",
|
2882
3258
|
"CountContents",
|
2883
3259
|
"CountContentsCountContents",
|
2884
3260
|
"CountConversations",
|
@@ -2927,6 +3303,8 @@ __all__ = [
|
|
2927
3303
|
"CountSpecificationsCountSpecifications",
|
2928
3304
|
"CountUsers",
|
2929
3305
|
"CountUsersCountUsers",
|
3306
|
+
"CountViews",
|
3307
|
+
"CountViewsCountViews",
|
2930
3308
|
"CountWorkflows",
|
2931
3309
|
"CountWorkflowsCountWorkflows",
|
2932
3310
|
"CreateAlert",
|
@@ -2935,6 +3313,8 @@ __all__ = [
|
|
2935
3313
|
"CreateCategoryCreateCategory",
|
2936
3314
|
"CreateCollection",
|
2937
3315
|
"CreateCollectionCreateCollection",
|
3316
|
+
"CreateConnector",
|
3317
|
+
"CreateConnectorCreateConnector",
|
2938
3318
|
"CreateConversation",
|
2939
3319
|
"CreateConversationCreateConversation",
|
2940
3320
|
"CreateEvent",
|
@@ -2983,6 +3363,58 @@ __all__ = [
|
|
2983
3363
|
"CreateSpecificationCreateSpecification",
|
2984
3364
|
"CreateUser",
|
2985
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",
|
2986
3418
|
"CreateWorkflow",
|
2987
3419
|
"CreateWorkflowCreateWorkflow",
|
2988
3420
|
"CreateWorkflowCreateWorkflowActions",
|
@@ -3071,6 +3503,7 @@ __all__ = [
|
|
3071
3503
|
"DELETE_CATEGORY_GQL",
|
3072
3504
|
"DELETE_COLLECTIONS_GQL",
|
3073
3505
|
"DELETE_COLLECTION_GQL",
|
3506
|
+
"DELETE_CONNECTOR_GQL",
|
3074
3507
|
"DELETE_CONTENTS_GQL",
|
3075
3508
|
"DELETE_CONTENT_GQL",
|
3076
3509
|
"DELETE_CONVERSATIONS_GQL",
|
@@ -3119,6 +3552,7 @@ __all__ = [
|
|
3119
3552
|
"DELETE_SPECIFICATIONS_GQL",
|
3120
3553
|
"DELETE_SPECIFICATION_GQL",
|
3121
3554
|
"DELETE_USER_GQL",
|
3555
|
+
"DELETE_VIEW_GQL",
|
3122
3556
|
"DELETE_WORKFLOWS_GQL",
|
3123
3557
|
"DELETE_WORKFLOW_GQL",
|
3124
3558
|
"DESCRIBE_ENCODED_IMAGE_GQL",
|
@@ -3199,6 +3633,8 @@ __all__ = [
|
|
3199
3633
|
"DeleteCollectionDeleteCollection",
|
3200
3634
|
"DeleteCollections",
|
3201
3635
|
"DeleteCollectionsDeleteCollections",
|
3636
|
+
"DeleteConnector",
|
3637
|
+
"DeleteConnectorDeleteConnector",
|
3202
3638
|
"DeleteContent",
|
3203
3639
|
"DeleteContentDeleteContent",
|
3204
3640
|
"DeleteContents",
|
@@ -3295,6 +3731,8 @@ __all__ = [
|
|
3295
3731
|
"DeleteSpecificationsDeleteSpecifications",
|
3296
3732
|
"DeleteUser",
|
3297
3733
|
"DeleteUserDeleteUser",
|
3734
|
+
"DeleteView",
|
3735
|
+
"DeleteViewDeleteView",
|
3298
3736
|
"DeleteWorkflow",
|
3299
3737
|
"DeleteWorkflowDeleteWorkflow",
|
3300
3738
|
"DeleteWorkflows",
|
@@ -3325,13 +3763,16 @@ __all__ = [
|
|
3325
3763
|
"DisableFeedDisableFeed",
|
3326
3764
|
"DisableUser",
|
3327
3765
|
"DisableUserDisableUser",
|
3766
|
+
"DiscordChannelsInput",
|
3328
3767
|
"DiscordFeedPropertiesInput",
|
3329
3768
|
"DiscordFeedPropertiesUpdateInput",
|
3769
|
+
"DiscordGuildsInput",
|
3330
3770
|
"DocumentMetadataInput",
|
3331
3771
|
"DocumentPreparationPropertiesInput",
|
3332
3772
|
"DrawingMetadataInput",
|
3333
3773
|
"DropboxFeedPropertiesInput",
|
3334
3774
|
"DropboxFeedPropertiesUpdateInput",
|
3775
|
+
"DropboxFoldersInput",
|
3335
3776
|
"ENABLE_ALERT_GQL",
|
3336
3777
|
"ENABLE_FEED_GQL",
|
3337
3778
|
"ENABLE_USER_GQL",
|
@@ -3367,6 +3808,7 @@ __all__ = [
|
|
3367
3808
|
"EventFacetTypes",
|
3368
3809
|
"EventFilter",
|
3369
3810
|
"EventInput",
|
3811
|
+
"EventMetadataInput",
|
3370
3812
|
"EventUpdateInput",
|
3371
3813
|
"ExtractContents",
|
3372
3814
|
"ExtractContentsExtractContents",
|
@@ -3425,6 +3867,7 @@ __all__ = [
|
|
3425
3867
|
"GET_ALERT_GQL",
|
3426
3868
|
"GET_CATEGORY_GQL",
|
3427
3869
|
"GET_COLLECTION_GQL",
|
3870
|
+
"GET_CONNECTOR_GQL",
|
3428
3871
|
"GET_CONTENT_GQL",
|
3429
3872
|
"GET_CONVERSATION_GQL",
|
3430
3873
|
"GET_EVENT_GQL",
|
@@ -3452,6 +3895,7 @@ __all__ = [
|
|
3452
3895
|
"GET_SPECIFICATION_GQL",
|
3453
3896
|
"GET_USER_BY_IDENTIFIER_GQL",
|
3454
3897
|
"GET_USER_GQL",
|
3898
|
+
"GET_VIEW_GQL",
|
3455
3899
|
"GET_WORKFLOW_GQL",
|
3456
3900
|
"GeometryMetadataInput",
|
3457
3901
|
"GetAlert",
|
@@ -3498,6 +3942,17 @@ __all__ = [
|
|
3498
3942
|
"GetCollectionCollection",
|
3499
3943
|
"GetCollectionCollectionContents",
|
3500
3944
|
"GetCollectionCollectionOwner",
|
3945
|
+
"GetConnector",
|
3946
|
+
"GetConnectorConnector",
|
3947
|
+
"GetConnectorConnectorAuthentication",
|
3948
|
+
"GetConnectorConnectorAuthenticationArcade",
|
3949
|
+
"GetConnectorConnectorAuthenticationGoogle",
|
3950
|
+
"GetConnectorConnectorAuthenticationMicrosoft",
|
3951
|
+
"GetConnectorConnectorIntegration",
|
3952
|
+
"GetConnectorConnectorIntegrationEmail",
|
3953
|
+
"GetConnectorConnectorIntegrationSlack",
|
3954
|
+
"GetConnectorConnectorIntegrationTwitter",
|
3955
|
+
"GetConnectorConnectorOwner",
|
3501
3956
|
"GetContent",
|
3502
3957
|
"GetContentContent",
|
3503
3958
|
"GetContentContentAddress",
|
@@ -3510,6 +3965,11 @@ __all__ = [
|
|
3510
3965
|
"GetContentContentEmailCc",
|
3511
3966
|
"GetContentContentEmailFrom",
|
3512
3967
|
"GetContentContentEmailTo",
|
3968
|
+
"GetContentContentEvent",
|
3969
|
+
"GetContentContentEventAttendees",
|
3970
|
+
"GetContentContentEventOrganizer",
|
3971
|
+
"GetContentContentEventRecurrence",
|
3972
|
+
"GetContentContentEventReminders",
|
3513
3973
|
"GetContentContentFeed",
|
3514
3974
|
"GetContentContentFrames",
|
3515
3975
|
"GetContentContentH3",
|
@@ -3600,6 +4060,9 @@ __all__ = [
|
|
3600
4060
|
"GetEventEventAddress",
|
3601
4061
|
"GetFeed",
|
3602
4062
|
"GetFeedFeed",
|
4063
|
+
"GetFeedFeedCalendar",
|
4064
|
+
"GetFeedFeedCalendarGoogle",
|
4065
|
+
"GetFeedFeedCalendarMicrosoft",
|
3603
4066
|
"GetFeedFeedDiscord",
|
3604
4067
|
"GetFeedFeedEmail",
|
3605
4068
|
"GetFeedFeedEmailGoogle",
|
@@ -3715,6 +4178,7 @@ __all__ = [
|
|
3715
4178
|
"GetUserByIdentifierUserByIdentifier",
|
3716
4179
|
"GetUserByIdentifierUserByIdentifierConnectors",
|
3717
4180
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthentication",
|
4181
|
+
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationArcade",
|
3718
4182
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationGoogle",
|
3719
4183
|
"GetUserByIdentifierUserByIdentifierConnectorsAuthenticationMicrosoft",
|
3720
4184
|
"GetUserByIdentifierUserByIdentifierConnectorsIntegration",
|
@@ -3725,6 +4189,7 @@ __all__ = [
|
|
3725
4189
|
"GetUserUser",
|
3726
4190
|
"GetUserUserConnectors",
|
3727
4191
|
"GetUserUserConnectorsAuthentication",
|
4192
|
+
"GetUserUserConnectorsAuthenticationArcade",
|
3728
4193
|
"GetUserUserConnectorsAuthenticationGoogle",
|
3729
4194
|
"GetUserUserConnectorsAuthenticationMicrosoft",
|
3730
4195
|
"GetUserUserConnectorsIntegration",
|
@@ -3732,6 +4197,59 @@ __all__ = [
|
|
3732
4197
|
"GetUserUserConnectorsIntegrationSlack",
|
3733
4198
|
"GetUserUserConnectorsIntegrationTwitter",
|
3734
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",
|
3735
4253
|
"GetWorkflow",
|
3736
4254
|
"GetWorkflowWorkflow",
|
3737
4255
|
"GetWorkflowWorkflowActions",
|
@@ -3788,14 +4306,22 @@ __all__ = [
|
|
3788
4306
|
"GetWorkflowWorkflowPreparationSummarizationsSpecification",
|
3789
4307
|
"GetWorkflowWorkflowStorage",
|
3790
4308
|
"GetWorkflowWorkflowStoragePolicy",
|
4309
|
+
"GitHubAuthenticationTypes",
|
3791
4310
|
"GitHubFeedPropertiesInput",
|
3792
4311
|
"GitHubFeedPropertiesUpdateInput",
|
4312
|
+
"GitHubIssueAuthenticationTypes",
|
3793
4313
|
"GitHubIssuesFeedPropertiesInput",
|
3794
4314
|
"GitHubIssuesFeedPropertiesUpdateInput",
|
3795
4315
|
"GoogleAuthenticationPropertiesInput",
|
4316
|
+
"GoogleCalendarAuthenticationTypes",
|
4317
|
+
"GoogleCalendarFeedPropertiesInput",
|
4318
|
+
"GoogleCalendarFeedPropertiesUpdateInput",
|
4319
|
+
"GoogleCalendarsInput",
|
3796
4320
|
"GoogleDriveAuthenticationTypes",
|
3797
4321
|
"GoogleDriveFeedPropertiesInput",
|
3798
4322
|
"GoogleDriveFeedPropertiesUpdateInput",
|
4323
|
+
"GoogleDriveFoldersInput",
|
4324
|
+
"GoogleEmailAuthenticationTypes",
|
3799
4325
|
"GoogleEmailFeedPropertiesInput",
|
3800
4326
|
"GoogleEmailFeedPropertiesUpdateInput",
|
3801
4327
|
"GoogleFeedPropertiesInput",
|
@@ -3918,6 +4444,7 @@ __all__ = [
|
|
3918
4444
|
"LinearFeedPropertiesInput",
|
3919
4445
|
"LinearFeedPropertiesUpdateInput",
|
3920
4446
|
"LinearProjectsInput",
|
4447
|
+
"LinkReferenceInput",
|
3921
4448
|
"LinkStrategyInput",
|
3922
4449
|
"LinkTypes",
|
3923
4450
|
"LookupContents",
|
@@ -3933,6 +4460,11 @@ __all__ = [
|
|
3933
4460
|
"LookupContentsLookupContentsResultsEmailCc",
|
3934
4461
|
"LookupContentsLookupContentsResultsEmailFrom",
|
3935
4462
|
"LookupContentsLookupContentsResultsEmailTo",
|
4463
|
+
"LookupContentsLookupContentsResultsEvent",
|
4464
|
+
"LookupContentsLookupContentsResultsEventAttendees",
|
4465
|
+
"LookupContentsLookupContentsResultsEventOrganizer",
|
4466
|
+
"LookupContentsLookupContentsResultsEventRecurrence",
|
4467
|
+
"LookupContentsLookupContentsResultsEventReminders",
|
3936
4468
|
"LookupContentsLookupContentsResultsFeed",
|
3937
4469
|
"LookupContentsLookupContentsResultsFrames",
|
3938
4470
|
"LookupContentsLookupContentsResultsH3",
|
@@ -4025,6 +4557,11 @@ __all__ = [
|
|
4025
4557
|
"MetadataTypes",
|
4026
4558
|
"MetadataUpdateInput",
|
4027
4559
|
"MicrosoftAuthenticationPropertiesInput",
|
4560
|
+
"MicrosoftCalendarAuthenticationTypes",
|
4561
|
+
"MicrosoftCalendarFeedPropertiesInput",
|
4562
|
+
"MicrosoftCalendarFeedPropertiesUpdateInput",
|
4563
|
+
"MicrosoftCalendarsInput",
|
4564
|
+
"MicrosoftEmailAuthenticationTypes",
|
4028
4565
|
"MicrosoftEmailFeedPropertiesInput",
|
4029
4566
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4030
4567
|
"MicrosoftTeamsChannelsInput",
|
@@ -4056,6 +4593,7 @@ __all__ = [
|
|
4056
4593
|
"ObservationReferenceInput",
|
4057
4594
|
"ObservationUpdateInput",
|
4058
4595
|
"OccurrenceTypes",
|
4596
|
+
"OneDriveAuthenticationTypes",
|
4059
4597
|
"OneDriveFeedPropertiesInput",
|
4060
4598
|
"OneDriveFeedPropertiesUpdateInput",
|
4061
4599
|
"OneDriveFoldersInput",
|
@@ -4189,16 +4727,21 @@ __all__ = [
|
|
4189
4727
|
"PublishTextPublishTextDetails",
|
4190
4728
|
"PublishTextPublishTextDetailsContents",
|
4191
4729
|
"QUERY_ALERTS_GQL",
|
4730
|
+
"QUERY_BOX_FOLDERS_GQL",
|
4192
4731
|
"QUERY_CATEGORIES_GQL",
|
4193
4732
|
"QUERY_COLLECTIONS_GQL",
|
4733
|
+
"QUERY_CONNECTORS_GQL",
|
4194
4734
|
"QUERY_CONTENTS_FACETS_GQL",
|
4195
4735
|
"QUERY_CONTENTS_GQL",
|
4196
4736
|
"QUERY_CONTENTS_GRAPH_GQL",
|
4197
4737
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
4198
4738
|
"QUERY_CONVERSATIONS_GQL",
|
4199
4739
|
"QUERY_CREDITS_GQL",
|
4740
|
+
"QUERY_DROPBOX_FOLDERS_GQL",
|
4200
4741
|
"QUERY_EVENTS_GQL",
|
4201
4742
|
"QUERY_FEEDS_GQL",
|
4743
|
+
"QUERY_GOOGLE_CALENDARS_GQL",
|
4744
|
+
"QUERY_GOOGLE_DRIVE_FOLDERS_GQL",
|
4202
4745
|
"QUERY_LABELS_GQL",
|
4203
4746
|
"QUERY_LINEAR_PROJECTS_GQL",
|
4204
4747
|
"QUERY_MEDICAL_CONDITIONS_GQL",
|
@@ -4212,6 +4755,7 @@ __all__ = [
|
|
4212
4755
|
"QUERY_MEDICAL_STUDIES_GQL",
|
4213
4756
|
"QUERY_MEDICAL_TESTS_GQL",
|
4214
4757
|
"QUERY_MEDICAL_THERAPIES_GQL",
|
4758
|
+
"QUERY_MICROSOFT_CALENDARS_GQL",
|
4215
4759
|
"QUERY_MICROSOFT_TEAMS_CHANNELS_GQL",
|
4216
4760
|
"QUERY_MICROSOFT_TEAMS_TEAMS_GQL",
|
4217
4761
|
"QUERY_MODELS_GQL",
|
@@ -4231,6 +4775,7 @@ __all__ = [
|
|
4231
4775
|
"QUERY_TOKENS_GQL",
|
4232
4776
|
"QUERY_USAGE_GQL",
|
4233
4777
|
"QUERY_USERS_GQL",
|
4778
|
+
"QUERY_VIEWS_GQL",
|
4234
4779
|
"QUERY_WORKFLOWS_GQL",
|
4235
4780
|
"QueryAlerts",
|
4236
4781
|
"QueryAlertsAlerts",
|
@@ -4271,6 +4816,9 @@ __all__ = [
|
|
4271
4816
|
"QueryAlertsAlertsResultsPublishingOpenAiImage",
|
4272
4817
|
"QueryAlertsAlertsResultsPublishingOpenAiImageSeed",
|
4273
4818
|
"QueryAlertsAlertsResultsSummarySpecification",
|
4819
|
+
"QueryBoxFolders",
|
4820
|
+
"QueryBoxFoldersBoxFolders",
|
4821
|
+
"QueryBoxFoldersBoxFoldersResults",
|
4274
4822
|
"QueryCategories",
|
4275
4823
|
"QueryCategoriesCategories",
|
4276
4824
|
"QueryCategoriesCategoriesResults",
|
@@ -4278,6 +4826,18 @@ __all__ = [
|
|
4278
4826
|
"QueryCollectionsCollections",
|
4279
4827
|
"QueryCollectionsCollectionsResults",
|
4280
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",
|
4281
4841
|
"QueryContents",
|
4282
4842
|
"QueryContentsContents",
|
4283
4843
|
"QueryContentsContentsResults",
|
@@ -4289,6 +4849,11 @@ __all__ = [
|
|
4289
4849
|
"QueryContentsContentsResultsEmailCc",
|
4290
4850
|
"QueryContentsContentsResultsEmailFrom",
|
4291
4851
|
"QueryContentsContentsResultsEmailTo",
|
4852
|
+
"QueryContentsContentsResultsEvent",
|
4853
|
+
"QueryContentsContentsResultsEventAttendees",
|
4854
|
+
"QueryContentsContentsResultsEventOrganizer",
|
4855
|
+
"QueryContentsContentsResultsEventRecurrence",
|
4856
|
+
"QueryContentsContentsResultsEventReminders",
|
4292
4857
|
"QueryContentsContentsResultsFeed",
|
4293
4858
|
"QueryContentsContentsResultsFrames",
|
4294
4859
|
"QueryContentsContentsResultsImage",
|
@@ -4326,6 +4891,11 @@ __all__ = [
|
|
4326
4891
|
"QueryContentsObservationsContentsResultsEmailCc",
|
4327
4892
|
"QueryContentsObservationsContentsResultsEmailFrom",
|
4328
4893
|
"QueryContentsObservationsContentsResultsEmailTo",
|
4894
|
+
"QueryContentsObservationsContentsResultsEvent",
|
4895
|
+
"QueryContentsObservationsContentsResultsEventAttendees",
|
4896
|
+
"QueryContentsObservationsContentsResultsEventOrganizer",
|
4897
|
+
"QueryContentsObservationsContentsResultsEventRecurrence",
|
4898
|
+
"QueryContentsObservationsContentsResultsEventReminders",
|
4329
4899
|
"QueryContentsObservationsContentsResultsFeed",
|
4330
4900
|
"QueryContentsObservationsContentsResultsFrames",
|
4331
4901
|
"QueryContentsObservationsContentsResultsImage",
|
@@ -4412,6 +4982,9 @@ __all__ = [
|
|
4412
4982
|
"QueryConversationsConversationsResultsSpecification",
|
4413
4983
|
"QueryCredits",
|
4414
4984
|
"QueryCreditsCredits",
|
4985
|
+
"QueryDropboxFolders",
|
4986
|
+
"QueryDropboxFoldersDropboxFolders",
|
4987
|
+
"QueryDropboxFoldersDropboxFoldersResults",
|
4415
4988
|
"QueryEvents",
|
4416
4989
|
"QueryEventsEvents",
|
4417
4990
|
"QueryEventsEventsResults",
|
@@ -4419,6 +4992,9 @@ __all__ = [
|
|
4419
4992
|
"QueryFeeds",
|
4420
4993
|
"QueryFeedsFeeds",
|
4421
4994
|
"QueryFeedsFeedsResults",
|
4995
|
+
"QueryFeedsFeedsResultsCalendar",
|
4996
|
+
"QueryFeedsFeedsResultsCalendarGoogle",
|
4997
|
+
"QueryFeedsFeedsResultsCalendarMicrosoft",
|
4422
4998
|
"QueryFeedsFeedsResultsDiscord",
|
4423
4999
|
"QueryFeedsFeedsResultsEmail",
|
4424
5000
|
"QueryFeedsFeedsResultsEmailGoogle",
|
@@ -4455,6 +5031,12 @@ __all__ = [
|
|
4455
5031
|
"QueryFeedsFeedsResultsWorkflow",
|
4456
5032
|
"QueryFeedsFeedsResultsYoutube",
|
4457
5033
|
"QueryFeedsFeedsResultsZendesk",
|
5034
|
+
"QueryGoogleCalendars",
|
5035
|
+
"QueryGoogleCalendarsGoogleCalendars",
|
5036
|
+
"QueryGoogleCalendarsGoogleCalendarsResults",
|
5037
|
+
"QueryGoogleDriveFolders",
|
5038
|
+
"QueryGoogleDriveFoldersGoogleDriveFolders",
|
5039
|
+
"QueryGoogleDriveFoldersGoogleDriveFoldersResults",
|
4458
5040
|
"QueryLabels",
|
4459
5041
|
"QueryLabelsLabels",
|
4460
5042
|
"QueryLabelsLabelsResults",
|
@@ -4494,6 +5076,9 @@ __all__ = [
|
|
4494
5076
|
"QueryMedicalTherapies",
|
4495
5077
|
"QueryMedicalTherapiesMedicalTherapies",
|
4496
5078
|
"QueryMedicalTherapiesMedicalTherapiesResults",
|
5079
|
+
"QueryMicrosoftCalendars",
|
5080
|
+
"QueryMicrosoftCalendarsMicrosoftCalendars",
|
5081
|
+
"QueryMicrosoftCalendarsMicrosoftCalendarsResults",
|
4497
5082
|
"QueryMicrosoftTeamsChannels",
|
4498
5083
|
"QueryMicrosoftTeamsChannelsMicrosoftTeamsChannels",
|
4499
5084
|
"QueryMicrosoftTeamsChannelsMicrosoftTeamsChannelsResults",
|
@@ -4577,6 +5162,7 @@ __all__ = [
|
|
4577
5162
|
"QueryUsersUsersResults",
|
4578
5163
|
"QueryUsersUsersResultsConnectors",
|
4579
5164
|
"QueryUsersUsersResultsConnectorsAuthentication",
|
5165
|
+
"QueryUsersUsersResultsConnectorsAuthenticationArcade",
|
4580
5166
|
"QueryUsersUsersResultsConnectorsAuthenticationGoogle",
|
4581
5167
|
"QueryUsersUsersResultsConnectorsAuthenticationMicrosoft",
|
4582
5168
|
"QueryUsersUsersResultsConnectorsIntegration",
|
@@ -4584,6 +5170,60 @@ __all__ = [
|
|
4584
5170
|
"QueryUsersUsersResultsConnectorsIntegrationSlack",
|
4585
5171
|
"QueryUsersUsersResultsConnectorsIntegrationTwitter",
|
4586
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",
|
4587
5227
|
"QueryWorkflows",
|
4588
5228
|
"QueryWorkflowsWorkflows",
|
4589
5229
|
"QueryWorkflowsWorkflowsResults",
|
@@ -4812,6 +5452,7 @@ __all__ = [
|
|
4812
5452
|
"UPDATE_ALERT_GQL",
|
4813
5453
|
"UPDATE_CATEGORY_GQL",
|
4814
5454
|
"UPDATE_COLLECTION_GQL",
|
5455
|
+
"UPDATE_CONNECTOR_GQL",
|
4815
5456
|
"UPDATE_CONTENT_GQL",
|
4816
5457
|
"UPDATE_CONVERSATION_GQL",
|
4817
5458
|
"UPDATE_EVENT_GQL",
|
@@ -4838,6 +5479,7 @@ __all__ = [
|
|
4838
5479
|
"UPDATE_SOFTWARE_GQL",
|
4839
5480
|
"UPDATE_SPECIFICATION_GQL",
|
4840
5481
|
"UPDATE_USER_GQL",
|
5482
|
+
"UPDATE_VIEW_GQL",
|
4841
5483
|
"UPDATE_WORKFLOW_GQL",
|
4842
5484
|
"UPSERT_CATEGORY_GQL",
|
4843
5485
|
"UPSERT_LABEL_GQL",
|
@@ -4850,6 +5492,8 @@ __all__ = [
|
|
4850
5492
|
"UpdateCategoryUpdateCategory",
|
4851
5493
|
"UpdateCollection",
|
4852
5494
|
"UpdateCollectionUpdateCollection",
|
5495
|
+
"UpdateConnector",
|
5496
|
+
"UpdateConnectorUpdateConnector",
|
4853
5497
|
"UpdateContent",
|
4854
5498
|
"UpdateContentUpdateContent",
|
4855
5499
|
"UpdateContentUpdateContentCollections",
|
@@ -4908,6 +5552,58 @@ __all__ = [
|
|
4908
5552
|
"UpdateSpecificationUpdateSpecification",
|
4909
5553
|
"UpdateUser",
|
4910
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",
|
4911
5607
|
"UpdateWorkflow",
|
4912
5608
|
"UpdateWorkflowUpdateWorkflow",
|
4913
5609
|
"UpdateWorkflowUpdateWorkflowActions",
|
@@ -5030,6 +5726,10 @@ __all__ = [
|
|
5030
5726
|
"UserTypes",
|
5031
5727
|
"UserUpdateInput",
|
5032
5728
|
"VideoMetadataInput",
|
5729
|
+
"ViewFilter",
|
5730
|
+
"ViewInput",
|
5731
|
+
"ViewTypes",
|
5732
|
+
"ViewUpdateInput",
|
5033
5733
|
"VoyageModelPropertiesInput",
|
5034
5734
|
"VoyageModelPropertiesUpdateInput",
|
5035
5735
|
"VoyageModels",
|