feat: impl unlimited features (#5659)

This commit is contained in:
DarkSky
2024-01-26 08:28:53 +00:00
parent 04b9029d1b
commit 070d5ca471
13 changed files with 177 additions and 62 deletions

View File

@@ -854,10 +854,20 @@ export type WorkspaceQuotaQuery = {
__typename?: 'WorkspaceType';
quota: {
__typename?: 'QuotaQueryType';
humanReadableName: string;
storageQuota: number;
usedSize: number;
name: string;
blobLimit: number;
storageQuota: number;
historyPeriod: number;
memberLimit: number;
usedSize: number;
humanReadable: {
__typename?: 'HumanReadableQuotaType';
name: string;
blobLimit: string;
storageQuota: string;
historyPeriod: string;
memberLimit: string;
};
};
};
};