udpates on the ui changes on theprodut catalogs
This commit is contained in:
@@ -973,6 +973,20 @@ export async function createTenantLocation(input: CreateTenantLocationInput): Pr
|
||||
return fiestaSend<Row>('tenants/createtenantlocation', 'POST', input);
|
||||
}
|
||||
|
||||
export interface UpdateTenantLocationInput {
|
||||
locationid: number;
|
||||
tenantid?: number;
|
||||
locationname?: string;
|
||||
contactno?: string;
|
||||
email?: string;
|
||||
status?: string;
|
||||
}
|
||||
|
||||
/** PUT /tenants/updatetenantlocation — Update store location details/status. */
|
||||
export async function updateTenantLocation(input: UpdateTenantLocationInput): Promise<Row> {
|
||||
return fiestaSend<Row>('tenants/updatetenantlocation', 'PUT', input);
|
||||
}
|
||||
|
||||
// ════════════════════════════════════════════════════════════════════════════
|
||||
// RIDERS / DISPATCH
|
||||
// ════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
Reference in New Issue
Block a user