Skip to content

Commit a67962b

Browse files
Merge pull request #123 from bakaphp/feat/update-app-create-user-params
feat: Add create_company field to AppCreateUserParams
2 parents db717ed + ed6aaad commit a67962b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/types/app.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ export interface AppUserInterface {
1212
displayname: string;
1313
firstname: string;
1414
lastname: string;
15+
default_company: number;
16+
default_company_branch: number;
1517
sex: string;
1618
description: string | null;
1719
user_active: boolean;
@@ -95,6 +97,7 @@ export interface AppCreateUserParams {
9597
role_ids?: (string | number)[];
9698
password?: string;
9799
custom_fields: CustomFieldInput[];
100+
create_company?: boolean
98101
}
99102

100103
export interface CreatedAppCreateUser {

0 commit comments

Comments
 (0)