We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a6f8c commit b1e32ccCopy full SHA for b1e32cc
src/modules/inventory/index.ts
@@ -129,7 +129,7 @@ export class Inventory {
129
return response.data;
130
}
131
public async getStatus(
132
- whereCondition?: WhereCondition
+ whereCondition?: WhereCondition[]
133
): Promise<CreatedStatus> {
134
const response = await this.client.query({
135
query: GET_STATUS,
src/types/app.ts
@@ -18,10 +18,10 @@ export interface AppUserInterface {
18
roles: string[];
19
address: AddressInterface;
20
contact: ContantInterface;
21
+ is_active: boolean;
22
companies: CompanyInterface[];
23
branches: BranchInterface[];
24
created_at: string;
-
25
updated_at: string;
26
27
0 commit comments