Add storage status readiness query fields
This commit is contained in:
@@ -5200,6 +5200,9 @@ export type GetStorageStatusQuery = {
|
||||
storageUsageRatio?: number | null;
|
||||
isNearLimit: boolean;
|
||||
isOverLimit: boolean;
|
||||
usageCalculated: boolean;
|
||||
usageSource?: string | null;
|
||||
lastCalculatedAt?: any | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
@@ -11093,6 +11096,9 @@ export const GetStorageStatusDocument = gql`
|
||||
storageUsageRatio
|
||||
isNearLimit
|
||||
isOverLimit
|
||||
usageCalculated
|
||||
usageSource
|
||||
lastCalculatedAt
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -79,6 +79,9 @@ query GetStorageStatus {
|
||||
storageUsageRatio
|
||||
isNearLimit
|
||||
isOverLimit
|
||||
usageCalculated
|
||||
usageSource
|
||||
lastCalculatedAt
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user