chore: sdk build

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2025-09-18 13:22:53 +05:30
parent 84f304bf94
commit ab8c693a39

View File

@@ -259,14 +259,12 @@ export interface BaseMemberList {
}
/** Array of members to be created. */
export type BaseMemberCreate = (
export type BaseMemberCreate = ((
| {
/** Unique identifier for the user (skip if email is provided) */
user_id: string;
/** Full name of the user. */
user_name?: string;
/** Base roles for the user. */
base_role: BaseRoles;
}
| {
/**
@@ -276,10 +274,11 @@ export type BaseMemberCreate = (
email: string;
/** Full name of the user. */
user_name?: string;
/** Base roles for the user. */
base_role: BaseRoles;
}
)[];
) & {
/** Base roles for the user. */
base_role: BaseRoles;
})[];
/** Array of member updates. */
export type BaseMemberUpdate = {