Updates
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "../../../types/dsql";
|
||||
type Param = {
|
||||
queue: DSQL_DATASQUIREL_PROCESS_QUEUE;
|
||||
userId: string | number;
|
||||
dummy?: boolean;
|
||||
};
|
||||
export default function addQueue({ queue, userId, dummy }: Param): Promise<(import("../../../types").PostReturn & {
|
||||
queryObject?: ReturnType<Awaited<typeof import("../../dsql/sql/sql-generator").default>>;
|
||||
}) | null | undefined>;
|
||||
export {};
|
||||
@@ -1,6 +0,0 @@
|
||||
type Param = {
|
||||
queueId: string | number;
|
||||
userId: string | number;
|
||||
};
|
||||
export default function deleteQueue({ queueId, userId }: Param): Promise<boolean>;
|
||||
export {};
|
||||
@@ -1,10 +0,0 @@
|
||||
import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "../../../types/dsql";
|
||||
import { DsqlCrudQueryObject } from "../../../types";
|
||||
type Param = {
|
||||
queueId?: string | number;
|
||||
userId?: string | number;
|
||||
query?: DsqlCrudQueryObject<DSQL_DATASQUIREL_PROCESS_QUEUE>;
|
||||
single?: boolean;
|
||||
};
|
||||
export default function getQueue({ queueId, userId, query, single, }: Param): Promise<DSQL_DATASQUIREL_PROCESS_QUEUE | DSQL_DATASQUIREL_PROCESS_QUEUE[] | undefined>;
|
||||
export {};
|
||||
@@ -1,7 +0,0 @@
|
||||
import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "../../../types/dsql";
|
||||
type Param = {
|
||||
queueId: string | number;
|
||||
queue: DSQL_DATASQUIREL_PROCESS_QUEUE;
|
||||
};
|
||||
export default function updateQueue({ queueId, queue }: Param): Promise<boolean>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user