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/lookup_contents.py
CHANGED
@@ -7,6 +7,11 @@ from pydantic import Field
|
|
7
7
|
|
8
8
|
from .base_model import BaseModel
|
9
9
|
from .enums import (
|
10
|
+
CalendarAttendeeResponseStatus,
|
11
|
+
CalendarEventStatus,
|
12
|
+
CalendarEventVisibility,
|
13
|
+
CalendarRecurrencePattern,
|
14
|
+
CalendarReminderMethod,
|
10
15
|
ContentTypes,
|
11
16
|
EntityState,
|
12
17
|
FileTypes,
|
@@ -82,6 +87,7 @@ class LookupContentsLookupContentsResults(BaseModel):
|
|
82
87
|
image: Optional["LookupContentsLookupContentsResultsImage"]
|
83
88
|
document: Optional["LookupContentsLookupContentsResultsDocument"]
|
84
89
|
email: Optional["LookupContentsLookupContentsResultsEmail"]
|
90
|
+
event: Optional["LookupContentsLookupContentsResultsEvent"]
|
85
91
|
issue: Optional["LookupContentsLookupContentsResultsIssue"]
|
86
92
|
package: Optional["LookupContentsLookupContentsResultsPackage"]
|
87
93
|
language: Optional["LookupContentsLookupContentsResultsLanguage"]
|
@@ -254,6 +260,65 @@ class LookupContentsLookupContentsResultsEmailBcc(BaseModel):
|
|
254
260
|
family_name: Optional[str] = Field(alias="familyName")
|
255
261
|
|
256
262
|
|
263
|
+
class LookupContentsLookupContentsResultsEvent(BaseModel):
|
264
|
+
event_identifier: Optional[str] = Field(alias="eventIdentifier")
|
265
|
+
calendar_identifier: Optional[str] = Field(alias="calendarIdentifier")
|
266
|
+
subject: Optional[str]
|
267
|
+
start_date_time: Optional[Any] = Field(alias="startDateTime")
|
268
|
+
end_date_time: Optional[Any] = Field(alias="endDateTime")
|
269
|
+
is_all_day: Optional[bool] = Field(alias="isAllDay")
|
270
|
+
timezone: Optional[str]
|
271
|
+
status: Optional[CalendarEventStatus]
|
272
|
+
visibility: Optional[CalendarEventVisibility]
|
273
|
+
meeting_link: Optional[str] = Field(alias="meetingLink")
|
274
|
+
organizer: Optional["LookupContentsLookupContentsResultsEventOrganizer"]
|
275
|
+
attendees: Optional[
|
276
|
+
List[Optional["LookupContentsLookupContentsResultsEventAttendees"]]
|
277
|
+
]
|
278
|
+
categories: Optional[List[Optional[str]]]
|
279
|
+
reminders: Optional[
|
280
|
+
List[Optional["LookupContentsLookupContentsResultsEventReminders"]]
|
281
|
+
]
|
282
|
+
recurrence: Optional["LookupContentsLookupContentsResultsEventRecurrence"]
|
283
|
+
recurring_event_identifier: Optional[str] = Field(alias="recurringEventIdentifier")
|
284
|
+
is_recurring: Optional[bool] = Field(alias="isRecurring")
|
285
|
+
|
286
|
+
|
287
|
+
class LookupContentsLookupContentsResultsEventOrganizer(BaseModel):
|
288
|
+
name: Optional[str]
|
289
|
+
email: Optional[str]
|
290
|
+
is_optional: Optional[bool] = Field(alias="isOptional")
|
291
|
+
is_organizer: Optional[bool] = Field(alias="isOrganizer")
|
292
|
+
response_status: Optional[CalendarAttendeeResponseStatus] = Field(
|
293
|
+
alias="responseStatus"
|
294
|
+
)
|
295
|
+
|
296
|
+
|
297
|
+
class LookupContentsLookupContentsResultsEventAttendees(BaseModel):
|
298
|
+
name: Optional[str]
|
299
|
+
email: Optional[str]
|
300
|
+
is_optional: Optional[bool] = Field(alias="isOptional")
|
301
|
+
is_organizer: Optional[bool] = Field(alias="isOrganizer")
|
302
|
+
response_status: Optional[CalendarAttendeeResponseStatus] = Field(
|
303
|
+
alias="responseStatus"
|
304
|
+
)
|
305
|
+
|
306
|
+
|
307
|
+
class LookupContentsLookupContentsResultsEventReminders(BaseModel):
|
308
|
+
minutes_before: Optional[int] = Field(alias="minutesBefore")
|
309
|
+
method: Optional[CalendarReminderMethod]
|
310
|
+
|
311
|
+
|
312
|
+
class LookupContentsLookupContentsResultsEventRecurrence(BaseModel):
|
313
|
+
pattern: Optional[CalendarRecurrencePattern]
|
314
|
+
interval: Optional[int]
|
315
|
+
count: Optional[int]
|
316
|
+
until: Optional[Any]
|
317
|
+
days_of_week: Optional[List[Optional[str]]] = Field(alias="daysOfWeek")
|
318
|
+
day_of_month: Optional[int] = Field(alias="dayOfMonth")
|
319
|
+
month_of_year: Optional[int] = Field(alias="monthOfYear")
|
320
|
+
|
321
|
+
|
257
322
|
class LookupContentsLookupContentsResultsIssue(BaseModel):
|
258
323
|
identifier: Optional[str]
|
259
324
|
title: Optional[str]
|
@@ -394,6 +459,7 @@ LookupContents.model_rebuild()
|
|
394
459
|
LookupContentsLookupContents.model_rebuild()
|
395
460
|
LookupContentsLookupContentsResults.model_rebuild()
|
396
461
|
LookupContentsLookupContentsResultsEmail.model_rebuild()
|
462
|
+
LookupContentsLookupContentsResultsEvent.model_rebuild()
|
397
463
|
LookupContentsLookupContentsResultsObservations.model_rebuild()
|
398
464
|
LookupContentsLookupContentsResultsObservationsOccurrences.model_rebuild()
|
399
465
|
LookupContentsLookupContentsResultsPages.model_rebuild()
|