From 43b99c447bc1a6011e39d59a667b9de0d9e1bebe 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 35c5e38..1f03e69 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5497,6 +5497,9 @@ export type GetStorageStatusQuery = { storageUsageRatio?: number | null; isNearLimit: boolean; isOverLimit: boolean; + usageCalculated: boolean; + usageSource?: string | null; + lastCalculatedAt?: any | null; } | null; }; @@ -12430,6 +12433,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 } }