Skip to content

Commit 88f9aa8

Browse files
docs(storage): mark last_accessed_at field as deprecated (#1743)
Co-authored-by: Ajit Singh <ajitsinghkaler0@gmail.com>
1 parent d754e7f commit 88f9aa8

File tree

1 file changed

+2
-0
lines changed
  • packages/core/storage-js/src/lib

1 file changed

+2
-0
lines changed

packages/core/storage-js/src/lib/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export interface FileObject {
5151
id: string
5252
updated_at: string
5353
created_at: string
54+
/** @deprecated */
5455
last_accessed_at: string
5556
metadata: Record<string, any>
5657
buckets: Bucket
@@ -63,6 +64,7 @@ export interface FileObjectV2 {
6364
bucket_id: string
6465
updated_at: string
6566
created_at: string
67+
/** @deprecated */
6668
last_accessed_at: string
6769
size?: number
6870
cache_control?: string

0 commit comments

Comments
 (0)