From 9a93ee7f42178721016191e7dfc16b2749ea1002 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 c6402a4..32f1468 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5211,6 +5211,9 @@ export type GetStorageStatusQuery = { storageUsageRatio?: number | null; isNearLimit: boolean; isOverLimit: boolean; + usageCalculated: boolean; + usageSource?: string | null; + lastCalculatedAt?: any | null; } | null; }; @@ -11113,6 +11116,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 } }