Skip to content

Commit b1e32cc

Browse files
committed
fix(types): add is_active property to AppUserInterface
1 parent f7a6f8c commit b1e32cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/modules/inventory/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class Inventory {
129129
return response.data;
130130
}
131131
public async getStatus(
132-
whereCondition?: WhereCondition
132+
whereCondition?: WhereCondition[]
133133
): Promise<CreatedStatus> {
134134
const response = await this.client.query({
135135
query: GET_STATUS,

src/types/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ export interface AppUserInterface {
1818
roles: string[];
1919
address: AddressInterface;
2020
contact: ContantInterface;
21+
is_active: boolean;
2122
companies: CompanyInterface[];
2223
branches: BranchInterface[];
2324
created_at: string;
24-
2525
updated_at: string;
2626
}
2727

0 commit comments

Comments
 (0)