From fe5a7d23c0b5fc6c2be981ed55976dbf5ac5050e Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 30 Jun 2026 14:59:32 -0700 Subject: [PATCH] Add storage status readiness query fields --- src/index.tsx | 6 ++++++ src/operations/payments.gql | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index adac610..ef53c59 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5481,6 +5481,9 @@ export type GetStorageStatusQuery = { storageUsageRatio?: number | null; isNearLimit: boolean; isOverLimit: boolean; + usageCalculated: boolean; + usageSource?: string | null; + lastCalculatedAt?: any | null; } | null; }; @@ -12314,6 +12317,9 @@ export const GetStorageStatusDocument = gql` storageUsageRatio isNearLimit isOverLimit + usageCalculated + usageSource + lastCalculatedAt } } `; diff --git a/src/operations/payments.gql b/src/operations/payments.gql index bb9ca4e..4690b2b 100644 --- a/src/operations/payments.gql +++ b/src/operations/payments.gql @@ -79,6 +79,9 @@ query GetStorageStatus { storageUsageRatio isNearLimit isOverLimit + usageCalculated + usageSource + lastCalculatedAt } }