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
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