fix: make optional

This commit is contained in:
Methapon2001 2024-06-24 14:17:17 +07:00
parent 09cf32d3c7
commit bf5d72a43d

View file

@ -41,8 +41,8 @@ type ServiceCreate = {
}; };
type ServiceUpdate = { type ServiceUpdate = {
name: string; name?: string;
detail: string; detail?: string;
attributes?: { attributes?: {
[key: string]: any; [key: string]: any;
}; };