Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions capabilities/auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,18 @@ features:
name: Sign In with Passkey
description: Authenticate using a WebAuthn passkey registered on the device. The underlying credential API is platform-specific — browsers use the native WebAuthn API, while mobile/desktop SDKs rely on the platform's credential manager — so availability varies by SDK.
group: passkey
- id: auth.passkey.list_passkeys
name: List Passkeys
description: List the passkeys registered by the currently authenticated user, so they can review the credentials tied to their account.
group: passkey
- id: auth.passkey.update_passkey
name: Update Passkey
description: Update the mutable metadata of one of the currently authenticated user's own passkeys, such as its friendly name.
group: passkey
- id: auth.passkey.delete_passkey
name: Delete Passkey
description: Delete one of the currently authenticated user's own passkeys, revoking that credential without admin privileges.
group: passkey
- id: auth.session.auto_refresh
name: Auto Refresh Token
description: Automatically refresh the access token in the background before it expires. Exposes controls to start and stop the refresh loop and configure whether it is enabled.
Expand Down
14 changes: 14 additions & 0 deletions capabilities/storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ groups:
title: Vector Buckets
- id: analytics
title: Analytics Buckets (Iceberg)
- id: configuration
title: Configuration
- id: errors
title: Errors
features:
Expand Down Expand Up @@ -252,6 +254,18 @@ features:
name: Check Iceberg Table Exists
description: Check whether an Iceberg table exists within a namespace without loading its metadata.
group: analytics
- id: storage.analytics.access_catalog
name: Access Iceberg Catalog
description: Scope subsequent Iceberg namespace and table operations to the REST Catalog of a specific analytics bucket.
group: analytics
- id: storage.file_buckets.request_cancellation
name: Cancel In-Flight Request
description: Abort an in-flight storage request before it completes, so a long-running upload or download stops transferring and releases its connection.
group: file_buckets
- id: storage.configuration.auto_retry
name: Automatic Retry
description: Automatically retry a failed storage request, with control over how many attempts are made before the error surfaces to the caller.
group: configuration
- id: storage.errors.error_codes
name: Service Error Codes
description: Expose the machine-readable service-specific error code (e.g. NoSuchKey, AccessDenied) returned by the Storage server on a thrown error, covering both file and vector bucket operations.
Expand Down