Skip to content

Add tenants to permissions factory and returns mapping #269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 7, 2025
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
4 changes: 2 additions & 2 deletions src/openapi/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export interface paths {
}

export interface definitions {
UserInfo: {
UserOwnInfo: {
/** @description The groups associated to the user */
groups?: string[];
roles?: definitions['Role'][];
Expand Down Expand Up @@ -1615,7 +1615,7 @@ export interface operations {
responses: {
/** Info about the user */
200: {
schema: definitions['UserInfo'];
schema: definitions['UserOwnInfo'];
};
/** Unauthorized or invalid credentials. */
401: unknown;
Expand Down
2 changes: 1 addition & 1 deletion src/openapi/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export type WeaviateMultiTenancyConfig = WeaviateClass['multiTenancyConfig'];
export type WeaviateReplicationConfig = WeaviateClass['replicationConfig'];
export type WeaviateShardingConfig = WeaviateClass['shardingConfig'];
export type WeaviateShardStatus = definitions['ShardStatusGetResponse'];
export type WeaviateUser = definitions['UserInfo'];
export type WeaviateUser = definitions['UserOwnInfo'];
export type WeaviateVectorIndexConfig = WeaviateClass['vectorIndexConfig'];
export type WeaviateVectorsConfig = WeaviateClass['vectorConfig'];
export type WeaviateVectorConfig = definitions['VectorConfig'];
Expand Down
Loading