Updates
This commit is contained in:
@@ -1633,6 +1633,11 @@ export type PagePropsType = {
|
||||
docsPageEditURL?: string | null;
|
||||
};
|
||||
|
||||
export type ResponseQueryObject = {
|
||||
sql?: string;
|
||||
params?: string[];
|
||||
};
|
||||
|
||||
export type APIResponseObject<T extends any = any> = {
|
||||
success: boolean;
|
||||
payload?: T;
|
||||
@@ -1642,10 +1647,8 @@ export type APIResponseObject<T extends any = any> = {
|
||||
payloadThumbnailURL?: string;
|
||||
error?: any;
|
||||
msg?: string;
|
||||
queryObject?: {
|
||||
sql?: string;
|
||||
params?: string[];
|
||||
};
|
||||
queryObject?: ResponseQueryObject;
|
||||
countQueryObject?: ResponseQueryObject;
|
||||
status?: number;
|
||||
count?: number;
|
||||
errors?: DSQLErrorObject[];
|
||||
|
||||
Reference in New Issue
Block a user