1
0
Fork 0
mirror of synced 2024-07-08 07:46:10 +12:00

Merge branch 'develop' into account-api-tests

This commit is contained in:
Rory Powell 2023-07-20 11:23:02 +01:00
commit 97dc7fa6a4
2 changed files with 10 additions and 7 deletions

View file

@ -157,7 +157,7 @@ export async function preview(ctx: any) {
}
const runFn = () => Runner.run(inputs)
const { rows, keys, info, extra } = await quotas.addQuery(runFn, {
const { rows, keys, info, extra } = await quotas.addQuery<any>(runFn, {
datasourceId: datasource._id,
})
const schemaFields: any = {}
@ -246,9 +246,12 @@ async function execute(
}
const runFn = () => Runner.run(inputs)
const { rows, pagination, extra, info } = await quotas.addQuery(runFn, {
datasourceId: datasource._id,
})
const { rows, pagination, extra, info } = await quotas.addQuery<any>(
runFn,
{
datasourceId: datasource._id,
}
)
// remove the raw from execution incase transformer being used to hide data
if (extra?.raw) {
delete extra.raw

View file

@ -25,7 +25,7 @@ export async function patch(ctx: any): Promise<any> {
return save(ctx)
}
try {
const { row, table } = await quotas.addQuery(
const { row, table } = await quotas.addQuery<any>(
() => pickApi(tableId).patch(ctx),
{
datasourceId: tableId,
@ -104,7 +104,7 @@ export async function destroy(ctx: any) {
const tableId = utils.getTableId(ctx)
let response, row
if (inputs.rows) {
let { rows } = await quotas.addQuery(
let { rows } = await quotas.addQuery<any>(
() => pickApi(tableId).bulkDestroy(ctx),
{
datasourceId: tableId,
@ -117,7 +117,7 @@ export async function destroy(ctx: any) {
gridSocket?.emitRowDeletion(ctx, row._id)
}
} else {
let resp = await quotas.addQuery(() => pickApi(tableId).destroy(ctx), {
let resp = await quotas.addQuery<any>(() => pickApi(tableId).destroy(ctx), {
datasourceId: tableId,
})
await quotas.removeRow()