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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/php-storage-driver-common/proto/credentials.proto
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ message GenericBackendCredentials {
string rest_endpoint = 2; // PostgREST API URL (e.g., https://xxx.supabase.co)
string api_key = 3; // Supabase API key for REST API authentication
bool allow_insecure = 4; // Allow HTTP for local testing (default: false)
string management_api_token = 5; // OAuth access token for Management API
}

google.protobuf.Any meta = 5; // metadata specific for each backend
Expand Down
12 changes: 12 additions & 0 deletions packages/php-storage-driver-common/proto/info.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,15 @@ message TableInfo {
}
}
}

/**
* Command to list available schemas for external bucket registration.
* Returns user-accessible schema names excluding internal schemas.
*/
message ListSchemasCommand {
// Empty - no parameters needed, credentials provide connection info
}

message ListSchemasResponse {
repeated string schemas = 1; // List of user-accessible schema names
}