mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
feat(core): make permission and invoice offline available (#8123)
This commit is contained in:
@@ -1297,6 +1297,7 @@ query workspaceQuota($id: String!) {
|
||||
storageQuota
|
||||
historyPeriod
|
||||
memberLimit
|
||||
memberCount
|
||||
humanReadable {
|
||||
name
|
||||
blobLimit
|
||||
|
||||
@@ -6,6 +6,7 @@ query workspaceQuota($id: String!) {
|
||||
storageQuota
|
||||
historyPeriod
|
||||
memberLimit
|
||||
memberCount
|
||||
humanReadable {
|
||||
name
|
||||
blobLimit
|
||||
|
||||
@@ -901,6 +901,7 @@ export interface QuotaQueryType {
|
||||
copilotActionLimit: Maybe<Scalars['SafeInt']['output']>;
|
||||
historyPeriod: Scalars['SafeInt']['output'];
|
||||
humanReadable: HumanReadableQuotaType;
|
||||
memberCount: Scalars['SafeInt']['output'];
|
||||
memberLimit: Scalars['SafeInt']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
storageQuota: Scalars['SafeInt']['output'];
|
||||
@@ -2423,6 +2424,7 @@ export type WorkspaceQuotaQuery = {
|
||||
storageQuota: number;
|
||||
historyPeriod: number;
|
||||
memberLimit: number;
|
||||
memberCount: number;
|
||||
usedSize: number;
|
||||
humanReadable: {
|
||||
__typename?: 'HumanReadableQuotaType';
|
||||
|
||||
Reference in New Issue
Block a user