graphlit-client 1.0.20250622004__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 +92 -0
- 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 +272 -0
- 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.20250622004.dist-info → graphlit_client-1.0.20250625001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250625001.dist-info}/RECORD +21 -16
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250625001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250625001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250625001.dist-info}/top_level.txt +0 -0
graphlit_api/get_content.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,
|
@@ -76,6 +81,7 @@ class GetContentContent(BaseModel):
|
|
76
81
|
image: Optional["GetContentContentImage"]
|
77
82
|
document: Optional["GetContentContentDocument"]
|
78
83
|
email: Optional["GetContentContentEmail"]
|
84
|
+
event: Optional["GetContentContentEvent"]
|
79
85
|
issue: Optional["GetContentContentIssue"]
|
80
86
|
package: Optional["GetContentContentPackage"]
|
81
87
|
language: Optional["GetContentContentLanguage"]
|
@@ -242,6 +248,61 @@ class GetContentContentEmailBcc(BaseModel):
|
|
242
248
|
family_name: Optional[str] = Field(alias="familyName")
|
243
249
|
|
244
250
|
|
251
|
+
class GetContentContentEvent(BaseModel):
|
252
|
+
event_identifier: Optional[str] = Field(alias="eventIdentifier")
|
253
|
+
calendar_identifier: Optional[str] = Field(alias="calendarIdentifier")
|
254
|
+
subject: Optional[str]
|
255
|
+
start_date_time: Optional[Any] = Field(alias="startDateTime")
|
256
|
+
end_date_time: Optional[Any] = Field(alias="endDateTime")
|
257
|
+
is_all_day: Optional[bool] = Field(alias="isAllDay")
|
258
|
+
timezone: Optional[str]
|
259
|
+
status: Optional[CalendarEventStatus]
|
260
|
+
visibility: Optional[CalendarEventVisibility]
|
261
|
+
meeting_link: Optional[str] = Field(alias="meetingLink")
|
262
|
+
organizer: Optional["GetContentContentEventOrganizer"]
|
263
|
+
attendees: Optional[List[Optional["GetContentContentEventAttendees"]]]
|
264
|
+
categories: Optional[List[Optional[str]]]
|
265
|
+
reminders: Optional[List[Optional["GetContentContentEventReminders"]]]
|
266
|
+
recurrence: Optional["GetContentContentEventRecurrence"]
|
267
|
+
recurring_event_identifier: Optional[str] = Field(alias="recurringEventIdentifier")
|
268
|
+
is_recurring: Optional[bool] = Field(alias="isRecurring")
|
269
|
+
|
270
|
+
|
271
|
+
class GetContentContentEventOrganizer(BaseModel):
|
272
|
+
name: Optional[str]
|
273
|
+
email: Optional[str]
|
274
|
+
is_optional: Optional[bool] = Field(alias="isOptional")
|
275
|
+
is_organizer: Optional[bool] = Field(alias="isOrganizer")
|
276
|
+
response_status: Optional[CalendarAttendeeResponseStatus] = Field(
|
277
|
+
alias="responseStatus"
|
278
|
+
)
|
279
|
+
|
280
|
+
|
281
|
+
class GetContentContentEventAttendees(BaseModel):
|
282
|
+
name: Optional[str]
|
283
|
+
email: Optional[str]
|
284
|
+
is_optional: Optional[bool] = Field(alias="isOptional")
|
285
|
+
is_organizer: Optional[bool] = Field(alias="isOrganizer")
|
286
|
+
response_status: Optional[CalendarAttendeeResponseStatus] = Field(
|
287
|
+
alias="responseStatus"
|
288
|
+
)
|
289
|
+
|
290
|
+
|
291
|
+
class GetContentContentEventReminders(BaseModel):
|
292
|
+
minutes_before: Optional[int] = Field(alias="minutesBefore")
|
293
|
+
method: Optional[CalendarReminderMethod]
|
294
|
+
|
295
|
+
|
296
|
+
class GetContentContentEventRecurrence(BaseModel):
|
297
|
+
pattern: Optional[CalendarRecurrencePattern]
|
298
|
+
interval: Optional[int]
|
299
|
+
count: Optional[int]
|
300
|
+
until: Optional[Any]
|
301
|
+
days_of_week: Optional[List[Optional[str]]] = Field(alias="daysOfWeek")
|
302
|
+
day_of_month: Optional[int] = Field(alias="dayOfMonth")
|
303
|
+
month_of_year: Optional[int] = Field(alias="monthOfYear")
|
304
|
+
|
305
|
+
|
245
306
|
class GetContentContentIssue(BaseModel):
|
246
307
|
identifier: Optional[str]
|
247
308
|
title: Optional[str]
|
@@ -379,6 +440,7 @@ class GetContentContentFrames(BaseModel):
|
|
379
440
|
GetContent.model_rebuild()
|
380
441
|
GetContentContent.model_rebuild()
|
381
442
|
GetContentContentEmail.model_rebuild()
|
443
|
+
GetContentContentEvent.model_rebuild()
|
382
444
|
GetContentContentObservations.model_rebuild()
|
383
445
|
GetContentContentObservationsOccurrences.model_rebuild()
|
384
446
|
GetContentContentPages.model_rebuild()
|
graphlit_api/get_feed.py
CHANGED
@@ -40,6 +40,7 @@ class GetFeedFeed(BaseModel):
|
|
40
40
|
site: Optional["GetFeedFeedSite"]
|
41
41
|
email: Optional["GetFeedFeedEmail"]
|
42
42
|
issue: Optional["GetFeedFeedIssue"]
|
43
|
+
calendar: Optional["GetFeedFeedCalendar"]
|
43
44
|
rss: Optional["GetFeedFeedRss"]
|
44
45
|
web: Optional["GetFeedFeedWeb"]
|
45
46
|
search: Optional["GetFeedFeedSearch"]
|
@@ -249,6 +250,32 @@ class GetFeedFeedIssueTrello(BaseModel):
|
|
249
250
|
type: TrelloTypes
|
250
251
|
|
251
252
|
|
253
|
+
class GetFeedFeedCalendar(BaseModel):
|
254
|
+
type: FeedServiceTypes
|
255
|
+
include_attachments: Optional[bool] = Field(alias="includeAttachments")
|
256
|
+
google: Optional["GetFeedFeedCalendarGoogle"]
|
257
|
+
microsoft: Optional["GetFeedFeedCalendarMicrosoft"]
|
258
|
+
read_limit: Optional[int] = Field(alias="readLimit")
|
259
|
+
|
260
|
+
|
261
|
+
class GetFeedFeedCalendarGoogle(BaseModel):
|
262
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
263
|
+
before_date: Optional[Any] = Field(alias="beforeDate")
|
264
|
+
after_date: Optional[Any] = Field(alias="afterDate")
|
265
|
+
refresh_token: str = Field(alias="refreshToken")
|
266
|
+
client_id: str = Field(alias="clientId")
|
267
|
+
client_secret: str = Field(alias="clientSecret")
|
268
|
+
|
269
|
+
|
270
|
+
class GetFeedFeedCalendarMicrosoft(BaseModel):
|
271
|
+
calendar_id: Optional[str] = Field(alias="calendarId")
|
272
|
+
before_date: Optional[Any] = Field(alias="beforeDate")
|
273
|
+
after_date: Optional[Any] = Field(alias="afterDate")
|
274
|
+
refresh_token: str = Field(alias="refreshToken")
|
275
|
+
client_id: str = Field(alias="clientId")
|
276
|
+
client_secret: str = Field(alias="clientSecret")
|
277
|
+
|
278
|
+
|
252
279
|
class GetFeedFeedRss(BaseModel):
|
253
280
|
read_limit: Optional[int] = Field(alias="readLimit")
|
254
281
|
uri: Any
|
@@ -352,3 +379,4 @@ GetFeedFeed.model_rebuild()
|
|
352
379
|
GetFeedFeedSite.model_rebuild()
|
353
380
|
GetFeedFeedEmail.model_rebuild()
|
354
381
|
GetFeedFeedIssue.model_rebuild()
|
382
|
+
GetFeedFeedCalendar.model_rebuild()
|