mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-11 23:29:01 +08:00
feat: update the response data type
This commit is contained in:
parent
f8e47496fa
commit
8d704c331c
@ -1,39 +1,39 @@
|
||||
export interface GetOrgPreferenceResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface GetUserPreferenceResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface GetAllOrgPreferencesResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface GetAllUserPreferencesResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface UpdateOrgPreferenceProps {
|
||||
key: string;
|
||||
value: string;
|
||||
value: unknown;
|
||||
}
|
||||
|
||||
export interface UpdateUserPreferenceProps {
|
||||
key: string;
|
||||
value: string;
|
||||
value: unknown;
|
||||
}
|
||||
|
||||
export interface UpdateOrgPreferenceResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface UpdateUserPreferenceResponseProps {
|
||||
status: string;
|
||||
data: string;
|
||||
data: Record<string, unknown>;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user