From 4dc06952ffc97811ef8ce9477b16424473653f80 Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Wed, 13 Dec 2023 10:38:49 +0100 Subject: [PATCH] Update lexicons fetched from 0c54951 committed 2023-12-12T21:37:06Z (#202) --- .../models/app/bsky/notification/list_notifications.py | 1 + lexicons/app.bsky.notification.listNotifications.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/atproto/xrpc_client/models/app/bsky/notification/list_notifications.py b/atproto/xrpc_client/models/app/bsky/notification/list_notifications.py index 23bb32c3..5049092a 100644 --- a/atproto/xrpc_client/models/app/bsky/notification/list_notifications.py +++ b/atproto/xrpc_client/models/app/bsky/notification/list_notifications.py @@ -37,6 +37,7 @@ class Response(base.ResponseModelBase): notifications: t.List['models.AppBskyNotificationListNotifications.Notification'] #: Notifications. cursor: t.Optional[str] = None #: Cursor. + seen_at: t.Optional[str] = Field(default=None, alias='seenAt') #: Seen at. class Notification(base.ModelBase): diff --git a/lexicons/app.bsky.notification.listNotifications.json b/lexicons/app.bsky.notification.listNotifications.json index 41f92cad..ea74c5fb 100644 --- a/lexicons/app.bsky.notification.listNotifications.json +++ b/lexicons/app.bsky.notification.listNotifications.json @@ -28,7 +28,8 @@ "notifications": { "type": "array", "items": { "type": "ref", "ref": "#notification" } - } + }, + "seenAt": { "type": "string", "format": "datetime" } } } }