graphlit-client 1.0.20250622003__py3-none-any.whl → 1.0.20250625001__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 +144 -0
- graphlit_api/client.py +116 -4
- graphlit_api/enums.py +865 -826
- graphlit_api/get_content.py +62 -0
- graphlit_api/get_feed.py +28 -0
- graphlit_api/input_types.py +2821 -2673
- graphlit_api/lookup_contents.py +66 -0
- graphlit_api/operations.py +284 -4
- graphlit_api/query_box_folders.py +25 -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 +28 -0
- 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_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/RECORD +21 -16
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622003.dist-info → graphlit_client-1.0.20250625001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -523,6 +523,11 @@ from .enums import (
|
|
523
523
|
AzureOpenAIModels,
|
524
524
|
BedrockModels,
|
525
525
|
BillableMetrics,
|
526
|
+
CalendarAttendeeResponseStatus,
|
527
|
+
CalendarEventStatus,
|
528
|
+
CalendarEventVisibility,
|
529
|
+
CalendarRecurrencePattern,
|
530
|
+
CalendarReminderMethod,
|
526
531
|
CategoryFacetTypes,
|
527
532
|
CerebrasModels,
|
528
533
|
CohereModels,
|
@@ -744,6 +749,11 @@ from .get_content import (
|
|
744
749
|
GetContentContentEmailCc,
|
745
750
|
GetContentContentEmailFrom,
|
746
751
|
GetContentContentEmailTo,
|
752
|
+
GetContentContentEvent,
|
753
|
+
GetContentContentEventAttendees,
|
754
|
+
GetContentContentEventOrganizer,
|
755
|
+
GetContentContentEventRecurrence,
|
756
|
+
GetContentContentEventReminders,
|
747
757
|
GetContentContentFeed,
|
748
758
|
GetContentContentFrames,
|
749
759
|
GetContentContentH3,
|
@@ -836,6 +846,9 @@ from .get_event import GetEvent, GetEventEvent, GetEventEventAddress
|
|
836
846
|
from .get_feed import (
|
837
847
|
GetFeed,
|
838
848
|
GetFeedFeed,
|
849
|
+
GetFeedFeedCalendar,
|
850
|
+
GetFeedFeedCalendarGoogle,
|
851
|
+
GetFeedFeedCalendarMicrosoft,
|
839
852
|
GetFeedFeedDiscord,
|
840
853
|
GetFeedFeedEmail,
|
841
854
|
GetFeedFeedEmailGoogle,
|
@@ -1142,6 +1155,12 @@ from .input_types import (
|
|
1142
1155
|
BoundingBoxInput,
|
1143
1156
|
BoxFeedPropertiesInput,
|
1144
1157
|
BoxFeedPropertiesUpdateInput,
|
1158
|
+
BoxFoldersInput,
|
1159
|
+
CalendarAttendeeInput,
|
1160
|
+
CalendarFeedPropertiesInput,
|
1161
|
+
CalendarFeedPropertiesUpdateInput,
|
1162
|
+
CalendarRecurrenceInput,
|
1163
|
+
CalendarReminderInput,
|
1145
1164
|
CategoryFacetInput,
|
1146
1165
|
CategoryFilter,
|
1147
1166
|
CategoryInput,
|
@@ -1190,6 +1209,7 @@ from .input_types import (
|
|
1190
1209
|
DrawingMetadataInput,
|
1191
1210
|
DropboxFeedPropertiesInput,
|
1192
1211
|
DropboxFeedPropertiesUpdateInput,
|
1212
|
+
DropboxFoldersInput,
|
1193
1213
|
ElevenLabsPublishingPropertiesInput,
|
1194
1214
|
EmailFeedPropertiesInput,
|
1195
1215
|
EmailFeedPropertiesUpdateInput,
|
@@ -1206,6 +1226,7 @@ from .input_types import (
|
|
1206
1226
|
EventFacetInput,
|
1207
1227
|
EventFilter,
|
1208
1228
|
EventInput,
|
1229
|
+
EventMetadataInput,
|
1209
1230
|
EventUpdateInput,
|
1210
1231
|
ExtractionWorkflowJobInput,
|
1211
1232
|
ExtractionWorkflowStageInput,
|
@@ -1221,8 +1242,12 @@ from .input_types import (
|
|
1221
1242
|
GitHubIssuesFeedPropertiesInput,
|
1222
1243
|
GitHubIssuesFeedPropertiesUpdateInput,
|
1223
1244
|
GoogleAuthenticationPropertiesInput,
|
1245
|
+
GoogleCalendarFeedPropertiesInput,
|
1246
|
+
GoogleCalendarFeedPropertiesUpdateInput,
|
1247
|
+
GoogleCalendarsInput,
|
1224
1248
|
GoogleDriveFeedPropertiesInput,
|
1225
1249
|
GoogleDriveFeedPropertiesUpdateInput,
|
1250
|
+
GoogleDriveFoldersInput,
|
1226
1251
|
GoogleEmailFeedPropertiesInput,
|
1227
1252
|
GoogleEmailFeedPropertiesUpdateInput,
|
1228
1253
|
GoogleFeedPropertiesInput,
|
@@ -1260,6 +1285,7 @@ from .input_types import (
|
|
1260
1285
|
LinearFeedPropertiesInput,
|
1261
1286
|
LinearFeedPropertiesUpdateInput,
|
1262
1287
|
LinearProjectsInput,
|
1288
|
+
LinkReferenceInput,
|
1263
1289
|
LinkStrategyInput,
|
1264
1290
|
MedicalConditionFacetInput,
|
1265
1291
|
MedicalConditionFilter,
|
@@ -1309,6 +1335,9 @@ from .input_types import (
|
|
1309
1335
|
MetadataInput,
|
1310
1336
|
MetadataUpdateInput,
|
1311
1337
|
MicrosoftAuthenticationPropertiesInput,
|
1338
|
+
MicrosoftCalendarFeedPropertiesInput,
|
1339
|
+
MicrosoftCalendarFeedPropertiesUpdateInput,
|
1340
|
+
MicrosoftCalendarsInput,
|
1312
1341
|
MicrosoftEmailFeedPropertiesInput,
|
1313
1342
|
MicrosoftEmailFeedPropertiesUpdateInput,
|
1314
1343
|
MicrosoftTeamsChannelsInput,
|
@@ -1454,6 +1483,11 @@ from .lookup_contents import (
|
|
1454
1483
|
LookupContentsLookupContentsResultsEmailCc,
|
1455
1484
|
LookupContentsLookupContentsResultsEmailFrom,
|
1456
1485
|
LookupContentsLookupContentsResultsEmailTo,
|
1486
|
+
LookupContentsLookupContentsResultsEvent,
|
1487
|
+
LookupContentsLookupContentsResultsEventAttendees,
|
1488
|
+
LookupContentsLookupContentsResultsEventOrganizer,
|
1489
|
+
LookupContentsLookupContentsResultsEventRecurrence,
|
1490
|
+
LookupContentsLookupContentsResultsEventReminders,
|
1457
1491
|
LookupContentsLookupContentsResultsFeed,
|
1458
1492
|
LookupContentsLookupContentsResultsFrames,
|
1459
1493
|
LookupContentsLookupContentsResultsH3,
|
@@ -1690,6 +1724,7 @@ from .operations import (
|
|
1690
1724
|
PUBLISH_CONVERSATION_GQL,
|
1691
1725
|
PUBLISH_TEXT_GQL,
|
1692
1726
|
QUERY_ALERTS_GQL,
|
1727
|
+
QUERY_BOX_FOLDERS_GQL,
|
1693
1728
|
QUERY_CATEGORIES_GQL,
|
1694
1729
|
QUERY_COLLECTIONS_GQL,
|
1695
1730
|
QUERY_CONTENTS_FACETS_GQL,
|
@@ -1698,8 +1733,11 @@ from .operations import (
|
|
1698
1733
|
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
1699
1734
|
QUERY_CONVERSATIONS_GQL,
|
1700
1735
|
QUERY_CREDITS_GQL,
|
1736
|
+
QUERY_DROPBOX_FOLDERS_GQL,
|
1701
1737
|
QUERY_EVENTS_GQL,
|
1702
1738
|
QUERY_FEEDS_GQL,
|
1739
|
+
QUERY_GOOGLE_CALENDARS_GQL,
|
1740
|
+
QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
1703
1741
|
QUERY_LABELS_GQL,
|
1704
1742
|
QUERY_LINEAR_PROJECTS_GQL,
|
1705
1743
|
QUERY_MEDICAL_CONDITIONS_GQL,
|
@@ -1713,6 +1751,7 @@ from .operations import (
|
|
1713
1751
|
QUERY_MEDICAL_STUDIES_GQL,
|
1714
1752
|
QUERY_MEDICAL_TESTS_GQL,
|
1715
1753
|
QUERY_MEDICAL_THERAPIES_GQL,
|
1754
|
+
QUERY_MICROSOFT_CALENDARS_GQL,
|
1716
1755
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL,
|
1717
1756
|
QUERY_MICROSOFT_TEAMS_TEAMS_GQL,
|
1718
1757
|
QUERY_MODELS_GQL,
|
@@ -1911,6 +1950,11 @@ from .query_alerts import (
|
|
1911
1950
|
QueryAlertsAlertsResultsPublishSpecification,
|
1912
1951
|
QueryAlertsAlertsResultsSummarySpecification,
|
1913
1952
|
)
|
1953
|
+
from .query_box_folders import (
|
1954
|
+
QueryBoxFolders,
|
1955
|
+
QueryBoxFoldersBoxFolders,
|
1956
|
+
QueryBoxFoldersBoxFoldersResults,
|
1957
|
+
)
|
1914
1958
|
from .query_categories import (
|
1915
1959
|
QueryCategories,
|
1916
1960
|
QueryCategoriesCategories,
|
@@ -1934,6 +1978,11 @@ from .query_contents import (
|
|
1934
1978
|
QueryContentsContentsResultsEmailCc,
|
1935
1979
|
QueryContentsContentsResultsEmailFrom,
|
1936
1980
|
QueryContentsContentsResultsEmailTo,
|
1981
|
+
QueryContentsContentsResultsEvent,
|
1982
|
+
QueryContentsContentsResultsEventAttendees,
|
1983
|
+
QueryContentsContentsResultsEventOrganizer,
|
1984
|
+
QueryContentsContentsResultsEventRecurrence,
|
1985
|
+
QueryContentsContentsResultsEventReminders,
|
1937
1986
|
QueryContentsContentsResultsFeed,
|
1938
1987
|
QueryContentsContentsResultsFrames,
|
1939
1988
|
QueryContentsContentsResultsImage,
|
@@ -1977,6 +2026,11 @@ from .query_contents_observations import (
|
|
1977
2026
|
QueryContentsObservationsContentsResultsEmailCc,
|
1978
2027
|
QueryContentsObservationsContentsResultsEmailFrom,
|
1979
2028
|
QueryContentsObservationsContentsResultsEmailTo,
|
2029
|
+
QueryContentsObservationsContentsResultsEvent,
|
2030
|
+
QueryContentsObservationsContentsResultsEventAttendees,
|
2031
|
+
QueryContentsObservationsContentsResultsEventOrganizer,
|
2032
|
+
QueryContentsObservationsContentsResultsEventRecurrence,
|
2033
|
+
QueryContentsObservationsContentsResultsEventReminders,
|
1980
2034
|
QueryContentsObservationsContentsResultsFeed,
|
1981
2035
|
QueryContentsObservationsContentsResultsFrames,
|
1982
2036
|
QueryContentsObservationsContentsResultsImage,
|
@@ -2065,6 +2119,11 @@ from .query_conversations import (
|
|
2065
2119
|
QueryConversationsConversationsResultsSpecification,
|
2066
2120
|
)
|
2067
2121
|
from .query_credits import QueryCredits, QueryCreditsCredits
|
2122
|
+
from .query_dropbox_folders import (
|
2123
|
+
QueryDropboxFolders,
|
2124
|
+
QueryDropboxFoldersDropboxFolders,
|
2125
|
+
QueryDropboxFoldersDropboxFoldersResults,
|
2126
|
+
)
|
2068
2127
|
from .query_events import (
|
2069
2128
|
QueryEvents,
|
2070
2129
|
QueryEventsEvents,
|
@@ -2075,6 +2134,9 @@ from .query_feeds import (
|
|
2075
2134
|
QueryFeeds,
|
2076
2135
|
QueryFeedsFeeds,
|
2077
2136
|
QueryFeedsFeedsResults,
|
2137
|
+
QueryFeedsFeedsResultsCalendar,
|
2138
|
+
QueryFeedsFeedsResultsCalendarGoogle,
|
2139
|
+
QueryFeedsFeedsResultsCalendarMicrosoft,
|
2078
2140
|
QueryFeedsFeedsResultsDiscord,
|
2079
2141
|
QueryFeedsFeedsResultsEmail,
|
2080
2142
|
QueryFeedsFeedsResultsEmailGoogle,
|
@@ -2112,6 +2174,16 @@ from .query_feeds import (
|
|
2112
2174
|
QueryFeedsFeedsResultsYoutube,
|
2113
2175
|
QueryFeedsFeedsResultsZendesk,
|
2114
2176
|
)
|
2177
|
+
from .query_google_calendars import (
|
2178
|
+
QueryGoogleCalendars,
|
2179
|
+
QueryGoogleCalendarsGoogleCalendars,
|
2180
|
+
QueryGoogleCalendarsGoogleCalendarsResults,
|
2181
|
+
)
|
2182
|
+
from .query_google_drive_folders import (
|
2183
|
+
QueryGoogleDriveFolders,
|
2184
|
+
QueryGoogleDriveFoldersGoogleDriveFolders,
|
2185
|
+
QueryGoogleDriveFoldersGoogleDriveFoldersResults,
|
2186
|
+
)
|
2115
2187
|
from .query_labels import QueryLabels, QueryLabelsLabels, QueryLabelsLabelsResults
|
2116
2188
|
from .query_linear_projects import (
|
2117
2189
|
QueryLinearProjects,
|
@@ -2173,6 +2245,11 @@ from .query_medical_therapies import (
|
|
2173
2245
|
QueryMedicalTherapiesMedicalTherapies,
|
2174
2246
|
QueryMedicalTherapiesMedicalTherapiesResults,
|
2175
2247
|
)
|
2248
|
+
from .query_microsoft_calendars import (
|
2249
|
+
QueryMicrosoftCalendars,
|
2250
|
+
QueryMicrosoftCalendarsMicrosoftCalendars,
|
2251
|
+
QueryMicrosoftCalendarsMicrosoftCalendarsResults,
|
2252
|
+
)
|
2176
2253
|
from .query_microsoft_teams_channels import (
|
2177
2254
|
QueryMicrosoftTeamsChannels,
|
2178
2255
|
QueryMicrosoftTeamsChannelsMicrosoftTeamsChannels,
|
@@ -2701,6 +2778,7 @@ __all__ = [
|
|
2701
2778
|
"BoundingBoxInput",
|
2702
2779
|
"BoxFeedPropertiesInput",
|
2703
2780
|
"BoxFeedPropertiesUpdateInput",
|
2781
|
+
"BoxFoldersInput",
|
2704
2782
|
"BranchConversation",
|
2705
2783
|
"BranchConversationBranchConversation",
|
2706
2784
|
"CLEAR_CONVERSATION_GQL",
|
@@ -2763,6 +2841,16 @@ __all__ = [
|
|
2763
2841
|
"CREATE_SPECIFICATION_GQL",
|
2764
2842
|
"CREATE_USER_GQL",
|
2765
2843
|
"CREATE_WORKFLOW_GQL",
|
2844
|
+
"CalendarAttendeeInput",
|
2845
|
+
"CalendarAttendeeResponseStatus",
|
2846
|
+
"CalendarEventStatus",
|
2847
|
+
"CalendarEventVisibility",
|
2848
|
+
"CalendarFeedPropertiesInput",
|
2849
|
+
"CalendarFeedPropertiesUpdateInput",
|
2850
|
+
"CalendarRecurrenceInput",
|
2851
|
+
"CalendarRecurrencePattern",
|
2852
|
+
"CalendarReminderInput",
|
2853
|
+
"CalendarReminderMethod",
|
2766
2854
|
"CategoryFacetInput",
|
2767
2855
|
"CategoryFacetTypes",
|
2768
2856
|
"CategoryFilter",
|
@@ -3332,6 +3420,7 @@ __all__ = [
|
|
3332
3420
|
"DrawingMetadataInput",
|
3333
3421
|
"DropboxFeedPropertiesInput",
|
3334
3422
|
"DropboxFeedPropertiesUpdateInput",
|
3423
|
+
"DropboxFoldersInput",
|
3335
3424
|
"ENABLE_ALERT_GQL",
|
3336
3425
|
"ENABLE_FEED_GQL",
|
3337
3426
|
"ENABLE_USER_GQL",
|
@@ -3367,6 +3456,7 @@ __all__ = [
|
|
3367
3456
|
"EventFacetTypes",
|
3368
3457
|
"EventFilter",
|
3369
3458
|
"EventInput",
|
3459
|
+
"EventMetadataInput",
|
3370
3460
|
"EventUpdateInput",
|
3371
3461
|
"ExtractContents",
|
3372
3462
|
"ExtractContentsExtractContents",
|
@@ -3510,6 +3600,11 @@ __all__ = [
|
|
3510
3600
|
"GetContentContentEmailCc",
|
3511
3601
|
"GetContentContentEmailFrom",
|
3512
3602
|
"GetContentContentEmailTo",
|
3603
|
+
"GetContentContentEvent",
|
3604
|
+
"GetContentContentEventAttendees",
|
3605
|
+
"GetContentContentEventOrganizer",
|
3606
|
+
"GetContentContentEventRecurrence",
|
3607
|
+
"GetContentContentEventReminders",
|
3513
3608
|
"GetContentContentFeed",
|
3514
3609
|
"GetContentContentFrames",
|
3515
3610
|
"GetContentContentH3",
|
@@ -3600,6 +3695,9 @@ __all__ = [
|
|
3600
3695
|
"GetEventEventAddress",
|
3601
3696
|
"GetFeed",
|
3602
3697
|
"GetFeedFeed",
|
3698
|
+
"GetFeedFeedCalendar",
|
3699
|
+
"GetFeedFeedCalendarGoogle",
|
3700
|
+
"GetFeedFeedCalendarMicrosoft",
|
3603
3701
|
"GetFeedFeedDiscord",
|
3604
3702
|
"GetFeedFeedEmail",
|
3605
3703
|
"GetFeedFeedEmailGoogle",
|
@@ -3793,9 +3891,13 @@ __all__ = [
|
|
3793
3891
|
"GitHubIssuesFeedPropertiesInput",
|
3794
3892
|
"GitHubIssuesFeedPropertiesUpdateInput",
|
3795
3893
|
"GoogleAuthenticationPropertiesInput",
|
3894
|
+
"GoogleCalendarFeedPropertiesInput",
|
3895
|
+
"GoogleCalendarFeedPropertiesUpdateInput",
|
3896
|
+
"GoogleCalendarsInput",
|
3796
3897
|
"GoogleDriveAuthenticationTypes",
|
3797
3898
|
"GoogleDriveFeedPropertiesInput",
|
3798
3899
|
"GoogleDriveFeedPropertiesUpdateInput",
|
3900
|
+
"GoogleDriveFoldersInput",
|
3799
3901
|
"GoogleEmailFeedPropertiesInput",
|
3800
3902
|
"GoogleEmailFeedPropertiesUpdateInput",
|
3801
3903
|
"GoogleFeedPropertiesInput",
|
@@ -3918,6 +4020,7 @@ __all__ = [
|
|
3918
4020
|
"LinearFeedPropertiesInput",
|
3919
4021
|
"LinearFeedPropertiesUpdateInput",
|
3920
4022
|
"LinearProjectsInput",
|
4023
|
+
"LinkReferenceInput",
|
3921
4024
|
"LinkStrategyInput",
|
3922
4025
|
"LinkTypes",
|
3923
4026
|
"LookupContents",
|
@@ -3933,6 +4036,11 @@ __all__ = [
|
|
3933
4036
|
"LookupContentsLookupContentsResultsEmailCc",
|
3934
4037
|
"LookupContentsLookupContentsResultsEmailFrom",
|
3935
4038
|
"LookupContentsLookupContentsResultsEmailTo",
|
4039
|
+
"LookupContentsLookupContentsResultsEvent",
|
4040
|
+
"LookupContentsLookupContentsResultsEventAttendees",
|
4041
|
+
"LookupContentsLookupContentsResultsEventOrganizer",
|
4042
|
+
"LookupContentsLookupContentsResultsEventRecurrence",
|
4043
|
+
"LookupContentsLookupContentsResultsEventReminders",
|
3936
4044
|
"LookupContentsLookupContentsResultsFeed",
|
3937
4045
|
"LookupContentsLookupContentsResultsFrames",
|
3938
4046
|
"LookupContentsLookupContentsResultsH3",
|
@@ -4025,6 +4133,9 @@ __all__ = [
|
|
4025
4133
|
"MetadataTypes",
|
4026
4134
|
"MetadataUpdateInput",
|
4027
4135
|
"MicrosoftAuthenticationPropertiesInput",
|
4136
|
+
"MicrosoftCalendarFeedPropertiesInput",
|
4137
|
+
"MicrosoftCalendarFeedPropertiesUpdateInput",
|
4138
|
+
"MicrosoftCalendarsInput",
|
4028
4139
|
"MicrosoftEmailFeedPropertiesInput",
|
4029
4140
|
"MicrosoftEmailFeedPropertiesUpdateInput",
|
4030
4141
|
"MicrosoftTeamsChannelsInput",
|
@@ -4189,6 +4300,7 @@ __all__ = [
|
|
4189
4300
|
"PublishTextPublishTextDetails",
|
4190
4301
|
"PublishTextPublishTextDetailsContents",
|
4191
4302
|
"QUERY_ALERTS_GQL",
|
4303
|
+
"QUERY_BOX_FOLDERS_GQL",
|
4192
4304
|
"QUERY_CATEGORIES_GQL",
|
4193
4305
|
"QUERY_COLLECTIONS_GQL",
|
4194
4306
|
"QUERY_CONTENTS_FACETS_GQL",
|
@@ -4197,8 +4309,11 @@ __all__ = [
|
|
4197
4309
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
4198
4310
|
"QUERY_CONVERSATIONS_GQL",
|
4199
4311
|
"QUERY_CREDITS_GQL",
|
4312
|
+
"QUERY_DROPBOX_FOLDERS_GQL",
|
4200
4313
|
"QUERY_EVENTS_GQL",
|
4201
4314
|
"QUERY_FEEDS_GQL",
|
4315
|
+
"QUERY_GOOGLE_CALENDARS_GQL",
|
4316
|
+
"QUERY_GOOGLE_DRIVE_FOLDERS_GQL",
|
4202
4317
|
"QUERY_LABELS_GQL",
|
4203
4318
|
"QUERY_LINEAR_PROJECTS_GQL",
|
4204
4319
|
"QUERY_MEDICAL_CONDITIONS_GQL",
|
@@ -4212,6 +4327,7 @@ __all__ = [
|
|
4212
4327
|
"QUERY_MEDICAL_STUDIES_GQL",
|
4213
4328
|
"QUERY_MEDICAL_TESTS_GQL",
|
4214
4329
|
"QUERY_MEDICAL_THERAPIES_GQL",
|
4330
|
+
"QUERY_MICROSOFT_CALENDARS_GQL",
|
4215
4331
|
"QUERY_MICROSOFT_TEAMS_CHANNELS_GQL",
|
4216
4332
|
"QUERY_MICROSOFT_TEAMS_TEAMS_GQL",
|
4217
4333
|
"QUERY_MODELS_GQL",
|
@@ -4271,6 +4387,9 @@ __all__ = [
|
|
4271
4387
|
"QueryAlertsAlertsResultsPublishingOpenAiImage",
|
4272
4388
|
"QueryAlertsAlertsResultsPublishingOpenAiImageSeed",
|
4273
4389
|
"QueryAlertsAlertsResultsSummarySpecification",
|
4390
|
+
"QueryBoxFolders",
|
4391
|
+
"QueryBoxFoldersBoxFolders",
|
4392
|
+
"QueryBoxFoldersBoxFoldersResults",
|
4274
4393
|
"QueryCategories",
|
4275
4394
|
"QueryCategoriesCategories",
|
4276
4395
|
"QueryCategoriesCategoriesResults",
|
@@ -4289,6 +4408,11 @@ __all__ = [
|
|
4289
4408
|
"QueryContentsContentsResultsEmailCc",
|
4290
4409
|
"QueryContentsContentsResultsEmailFrom",
|
4291
4410
|
"QueryContentsContentsResultsEmailTo",
|
4411
|
+
"QueryContentsContentsResultsEvent",
|
4412
|
+
"QueryContentsContentsResultsEventAttendees",
|
4413
|
+
"QueryContentsContentsResultsEventOrganizer",
|
4414
|
+
"QueryContentsContentsResultsEventRecurrence",
|
4415
|
+
"QueryContentsContentsResultsEventReminders",
|
4292
4416
|
"QueryContentsContentsResultsFeed",
|
4293
4417
|
"QueryContentsContentsResultsFrames",
|
4294
4418
|
"QueryContentsContentsResultsImage",
|
@@ -4326,6 +4450,11 @@ __all__ = [
|
|
4326
4450
|
"QueryContentsObservationsContentsResultsEmailCc",
|
4327
4451
|
"QueryContentsObservationsContentsResultsEmailFrom",
|
4328
4452
|
"QueryContentsObservationsContentsResultsEmailTo",
|
4453
|
+
"QueryContentsObservationsContentsResultsEvent",
|
4454
|
+
"QueryContentsObservationsContentsResultsEventAttendees",
|
4455
|
+
"QueryContentsObservationsContentsResultsEventOrganizer",
|
4456
|
+
"QueryContentsObservationsContentsResultsEventRecurrence",
|
4457
|
+
"QueryContentsObservationsContentsResultsEventReminders",
|
4329
4458
|
"QueryContentsObservationsContentsResultsFeed",
|
4330
4459
|
"QueryContentsObservationsContentsResultsFrames",
|
4331
4460
|
"QueryContentsObservationsContentsResultsImage",
|
@@ -4412,6 +4541,9 @@ __all__ = [
|
|
4412
4541
|
"QueryConversationsConversationsResultsSpecification",
|
4413
4542
|
"QueryCredits",
|
4414
4543
|
"QueryCreditsCredits",
|
4544
|
+
"QueryDropboxFolders",
|
4545
|
+
"QueryDropboxFoldersDropboxFolders",
|
4546
|
+
"QueryDropboxFoldersDropboxFoldersResults",
|
4415
4547
|
"QueryEvents",
|
4416
4548
|
"QueryEventsEvents",
|
4417
4549
|
"QueryEventsEventsResults",
|
@@ -4419,6 +4551,9 @@ __all__ = [
|
|
4419
4551
|
"QueryFeeds",
|
4420
4552
|
"QueryFeedsFeeds",
|
4421
4553
|
"QueryFeedsFeedsResults",
|
4554
|
+
"QueryFeedsFeedsResultsCalendar",
|
4555
|
+
"QueryFeedsFeedsResultsCalendarGoogle",
|
4556
|
+
"QueryFeedsFeedsResultsCalendarMicrosoft",
|
4422
4557
|
"QueryFeedsFeedsResultsDiscord",
|
4423
4558
|
"QueryFeedsFeedsResultsEmail",
|
4424
4559
|
"QueryFeedsFeedsResultsEmailGoogle",
|
@@ -4455,6 +4590,12 @@ __all__ = [
|
|
4455
4590
|
"QueryFeedsFeedsResultsWorkflow",
|
4456
4591
|
"QueryFeedsFeedsResultsYoutube",
|
4457
4592
|
"QueryFeedsFeedsResultsZendesk",
|
4593
|
+
"QueryGoogleCalendars",
|
4594
|
+
"QueryGoogleCalendarsGoogleCalendars",
|
4595
|
+
"QueryGoogleCalendarsGoogleCalendarsResults",
|
4596
|
+
"QueryGoogleDriveFolders",
|
4597
|
+
"QueryGoogleDriveFoldersGoogleDriveFolders",
|
4598
|
+
"QueryGoogleDriveFoldersGoogleDriveFoldersResults",
|
4458
4599
|
"QueryLabels",
|
4459
4600
|
"QueryLabelsLabels",
|
4460
4601
|
"QueryLabelsLabelsResults",
|
@@ -4494,6 +4635,9 @@ __all__ = [
|
|
4494
4635
|
"QueryMedicalTherapies",
|
4495
4636
|
"QueryMedicalTherapiesMedicalTherapies",
|
4496
4637
|
"QueryMedicalTherapiesMedicalTherapiesResults",
|
4638
|
+
"QueryMicrosoftCalendars",
|
4639
|
+
"QueryMicrosoftCalendarsMicrosoftCalendars",
|
4640
|
+
"QueryMicrosoftCalendarsMicrosoftCalendarsResults",
|
4497
4641
|
"QueryMicrosoftTeamsChannels",
|
4498
4642
|
"QueryMicrosoftTeamsChannelsMicrosoftTeamsChannels",
|
4499
4643
|
"QueryMicrosoftTeamsChannelsMicrosoftTeamsChannelsResults",
|
graphlit_api/client.py
CHANGED
@@ -206,6 +206,7 @@ from .input_types import (
|
|
206
206
|
AlertFilter,
|
207
207
|
AlertInput,
|
208
208
|
AlertUpdateInput,
|
209
|
+
BoxFoldersInput,
|
209
210
|
CategoryFilter,
|
210
211
|
CategoryInput,
|
211
212
|
CategoryUpdateInput,
|
@@ -222,6 +223,7 @@ from .input_types import (
|
|
222
223
|
ConversationMessageInput,
|
223
224
|
ConversationToolResponseInput,
|
224
225
|
ConversationUpdateInput,
|
226
|
+
DropboxFoldersInput,
|
225
227
|
EntityReferenceInput,
|
226
228
|
EventFilter,
|
227
229
|
EventInput,
|
@@ -229,6 +231,8 @@ from .input_types import (
|
|
229
231
|
FeedFilter,
|
230
232
|
FeedInput,
|
231
233
|
FeedUpdateInput,
|
234
|
+
GoogleCalendarsInput,
|
235
|
+
GoogleDriveFoldersInput,
|
232
236
|
IntegrationConnectorInput,
|
233
237
|
LabelFilter,
|
234
238
|
LabelInput,
|
@@ -267,6 +271,7 @@ from .input_types import (
|
|
267
271
|
MedicalTherapyFilter,
|
268
272
|
MedicalTherapyInput,
|
269
273
|
MedicalTherapyUpdateInput,
|
274
|
+
MicrosoftCalendarsInput,
|
270
275
|
MicrosoftTeamsChannelsInput,
|
271
276
|
MicrosoftTeamsTeamsInput,
|
272
277
|
ModelFilter,
|
@@ -529,6 +534,7 @@ from .operations import (
|
|
529
534
|
PUBLISH_CONVERSATION_GQL,
|
530
535
|
PUBLISH_TEXT_GQL,
|
531
536
|
QUERY_ALERTS_GQL,
|
537
|
+
QUERY_BOX_FOLDERS_GQL,
|
532
538
|
QUERY_CATEGORIES_GQL,
|
533
539
|
QUERY_COLLECTIONS_GQL,
|
534
540
|
QUERY_CONTENTS_FACETS_GQL,
|
@@ -537,8 +543,11 @@ from .operations import (
|
|
537
543
|
QUERY_CONTENTS_OBSERVATIONS_GQL,
|
538
544
|
QUERY_CONVERSATIONS_GQL,
|
539
545
|
QUERY_CREDITS_GQL,
|
546
|
+
QUERY_DROPBOX_FOLDERS_GQL,
|
540
547
|
QUERY_EVENTS_GQL,
|
541
548
|
QUERY_FEEDS_GQL,
|
549
|
+
QUERY_GOOGLE_CALENDARS_GQL,
|
550
|
+
QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
542
551
|
QUERY_LABELS_GQL,
|
543
552
|
QUERY_LINEAR_PROJECTS_GQL,
|
544
553
|
QUERY_MEDICAL_CONDITIONS_GQL,
|
@@ -552,6 +561,7 @@ from .operations import (
|
|
552
561
|
QUERY_MEDICAL_STUDIES_GQL,
|
553
562
|
QUERY_MEDICAL_TESTS_GQL,
|
554
563
|
QUERY_MEDICAL_THERAPIES_GQL,
|
564
|
+
QUERY_MICROSOFT_CALENDARS_GQL,
|
555
565
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL,
|
556
566
|
QUERY_MICROSOFT_TEAMS_TEAMS_GQL,
|
557
567
|
QUERY_MODELS_GQL,
|
@@ -628,6 +638,7 @@ from .publish_contents import PublishContents
|
|
628
638
|
from .publish_conversation import PublishConversation
|
629
639
|
from .publish_text import PublishText
|
630
640
|
from .query_alerts import QueryAlerts
|
641
|
+
from .query_box_folders import QueryBoxFolders
|
631
642
|
from .query_categories import QueryCategories
|
632
643
|
from .query_collections import QueryCollections
|
633
644
|
from .query_contents import QueryContents
|
@@ -636,8 +647,11 @@ from .query_contents_graph import QueryContentsGraph
|
|
636
647
|
from .query_contents_observations import QueryContentsObservations
|
637
648
|
from .query_conversations import QueryConversations
|
638
649
|
from .query_credits import QueryCredits
|
650
|
+
from .query_dropbox_folders import QueryDropboxFolders
|
639
651
|
from .query_events import QueryEvents
|
640
652
|
from .query_feeds import QueryFeeds
|
653
|
+
from .query_google_calendars import QueryGoogleCalendars
|
654
|
+
from .query_google_drive_folders import QueryGoogleDriveFolders
|
641
655
|
from .query_labels import QueryLabels
|
642
656
|
from .query_linear_projects import QueryLinearProjects
|
643
657
|
from .query_medical_conditions import QueryMedicalConditions
|
@@ -651,6 +665,7 @@ from .query_medical_procedures import QueryMedicalProcedures
|
|
651
665
|
from .query_medical_studies import QueryMedicalStudies
|
652
666
|
from .query_medical_tests import QueryMedicalTests
|
653
667
|
from .query_medical_therapies import QueryMedicalTherapies
|
668
|
+
from .query_microsoft_calendars import QueryMicrosoftCalendars
|
654
669
|
from .query_microsoft_teams_channels import QueryMicrosoftTeamsChannels
|
655
670
|
from .query_microsoft_teams_teams import QueryMicrosoftTeamsTeams
|
656
671
|
from .query_models import QueryModels
|
@@ -2636,6 +2651,41 @@ class Client(AsyncBaseClient):
|
|
2636
2651
|
data = self.get_data(response)
|
2637
2652
|
return IsFeedDone.model_validate(data)
|
2638
2653
|
|
2654
|
+
async def query_box_folders(
|
2655
|
+
self,
|
2656
|
+
properties: BoxFoldersInput,
|
2657
|
+
folder_id: Union[Optional[str], UnsetType] = UNSET,
|
2658
|
+
**kwargs: Any
|
2659
|
+
) -> QueryBoxFolders:
|
2660
|
+
variables: Dict[str, object] = {"properties": properties, "folderId": folder_id}
|
2661
|
+
response = await self.execute(
|
2662
|
+
query=QUERY_BOX_FOLDERS_GQL,
|
2663
|
+
operation_name="QueryBoxFolders",
|
2664
|
+
variables=variables,
|
2665
|
+
**kwargs
|
2666
|
+
)
|
2667
|
+
data = self.get_data(response)
|
2668
|
+
return QueryBoxFolders.model_validate(data)
|
2669
|
+
|
2670
|
+
async def query_dropbox_folders(
|
2671
|
+
self,
|
2672
|
+
properties: DropboxFoldersInput,
|
2673
|
+
folder_path: Union[Optional[str], UnsetType] = UNSET,
|
2674
|
+
**kwargs: Any
|
2675
|
+
) -> QueryDropboxFolders:
|
2676
|
+
variables: Dict[str, object] = {
|
2677
|
+
"properties": properties,
|
2678
|
+
"folderPath": folder_path,
|
2679
|
+
}
|
2680
|
+
response = await self.execute(
|
2681
|
+
query=QUERY_DROPBOX_FOLDERS_GQL,
|
2682
|
+
operation_name="QueryDropboxFolders",
|
2683
|
+
variables=variables,
|
2684
|
+
**kwargs
|
2685
|
+
)
|
2686
|
+
data = self.get_data(response)
|
2687
|
+
return QueryDropboxFolders.model_validate(data)
|
2688
|
+
|
2639
2689
|
async def query_feeds(
|
2640
2690
|
self,
|
2641
2691
|
filter: Union[Optional[FeedFilter], UnsetType] = UNSET,
|
@@ -2655,6 +2705,35 @@ class Client(AsyncBaseClient):
|
|
2655
2705
|
data = self.get_data(response)
|
2656
2706
|
return QueryFeeds.model_validate(data)
|
2657
2707
|
|
2708
|
+
async def query_google_calendars(
|
2709
|
+
self, properties: GoogleCalendarsInput, **kwargs: Any
|
2710
|
+
) -> QueryGoogleCalendars:
|
2711
|
+
variables: Dict[str, object] = {"properties": properties}
|
2712
|
+
response = await self.execute(
|
2713
|
+
query=QUERY_GOOGLE_CALENDARS_GQL,
|
2714
|
+
operation_name="QueryGoogleCalendars",
|
2715
|
+
variables=variables,
|
2716
|
+
**kwargs
|
2717
|
+
)
|
2718
|
+
data = self.get_data(response)
|
2719
|
+
return QueryGoogleCalendars.model_validate(data)
|
2720
|
+
|
2721
|
+
async def query_google_drive_folders(
|
2722
|
+
self,
|
2723
|
+
properties: GoogleDriveFoldersInput,
|
2724
|
+
folder_id: Union[Optional[str], UnsetType] = UNSET,
|
2725
|
+
**kwargs: Any
|
2726
|
+
) -> QueryGoogleDriveFolders:
|
2727
|
+
variables: Dict[str, object] = {"properties": properties, "folderId": folder_id}
|
2728
|
+
response = await self.execute(
|
2729
|
+
query=QUERY_GOOGLE_DRIVE_FOLDERS_GQL,
|
2730
|
+
operation_name="QueryGoogleDriveFolders",
|
2731
|
+
variables=variables,
|
2732
|
+
**kwargs
|
2733
|
+
)
|
2734
|
+
data = self.get_data(response)
|
2735
|
+
return QueryGoogleDriveFolders.model_validate(data)
|
2736
|
+
|
2658
2737
|
async def query_linear_projects(
|
2659
2738
|
self, properties: LinearProjectsInput, **kwargs: Any
|
2660
2739
|
) -> QueryLinearProjects:
|
@@ -2668,6 +2747,19 @@ class Client(AsyncBaseClient):
|
|
2668
2747
|
data = self.get_data(response)
|
2669
2748
|
return QueryLinearProjects.model_validate(data)
|
2670
2749
|
|
2750
|
+
async def query_microsoft_calendars(
|
2751
|
+
self, properties: MicrosoftCalendarsInput, **kwargs: Any
|
2752
|
+
) -> QueryMicrosoftCalendars:
|
2753
|
+
variables: Dict[str, object] = {"properties": properties}
|
2754
|
+
response = await self.execute(
|
2755
|
+
query=QUERY_MICROSOFT_CALENDARS_GQL,
|
2756
|
+
operation_name="QueryMicrosoftCalendars",
|
2757
|
+
variables=variables,
|
2758
|
+
**kwargs
|
2759
|
+
)
|
2760
|
+
data = self.get_data(response)
|
2761
|
+
return QueryMicrosoftCalendars.model_validate(data)
|
2762
|
+
|
2671
2763
|
async def query_microsoft_teams_channels(
|
2672
2764
|
self, properties: MicrosoftTeamsChannelsInput, team_id: str, **kwargs: Any
|
2673
2765
|
) -> QueryMicrosoftTeamsChannels:
|
@@ -4933,8 +5025,18 @@ class Client(AsyncBaseClient):
|
|
4933
5025
|
data = self.get_data(response)
|
4934
5026
|
return GetProject.model_validate(data)
|
4935
5027
|
|
4936
|
-
async def lookup_credits(
|
4937
|
-
|
5028
|
+
async def lookup_credits(
|
5029
|
+
self,
|
5030
|
+
correlation_id: str,
|
5031
|
+
start_date: Union[Optional[Any], UnsetType] = UNSET,
|
5032
|
+
duration: Union[Optional[Any], UnsetType] = UNSET,
|
5033
|
+
**kwargs: Any
|
5034
|
+
) -> LookupCredits:
|
5035
|
+
variables: Dict[str, object] = {
|
5036
|
+
"correlationId": correlation_id,
|
5037
|
+
"startDate": start_date,
|
5038
|
+
"duration": duration,
|
5039
|
+
}
|
4938
5040
|
response = await self.execute(
|
4939
5041
|
query=LOOKUP_CREDITS_GQL,
|
4940
5042
|
operation_name="LookupCredits",
|
@@ -4944,8 +5046,18 @@ class Client(AsyncBaseClient):
|
|
4944
5046
|
data = self.get_data(response)
|
4945
5047
|
return LookupCredits.model_validate(data)
|
4946
5048
|
|
4947
|
-
async def lookup_usage(
|
4948
|
-
|
5049
|
+
async def lookup_usage(
|
5050
|
+
self,
|
5051
|
+
correlation_id: str,
|
5052
|
+
start_date: Union[Optional[Any], UnsetType] = UNSET,
|
5053
|
+
duration: Union[Optional[Any], UnsetType] = UNSET,
|
5054
|
+
**kwargs: Any
|
5055
|
+
) -> LookupUsage:
|
5056
|
+
variables: Dict[str, object] = {
|
5057
|
+
"correlationId": correlation_id,
|
5058
|
+
"startDate": start_date,
|
5059
|
+
"duration": duration,
|
5060
|
+
}
|
4949
5061
|
response = await self.execute(
|
4950
5062
|
query=LOOKUP_USAGE_GQL,
|
4951
5063
|
operation_name="LookupUsage",
|