feat(core): make permission and invoice offline available (#8123)

This commit is contained in:
EYHN
2024-09-05 15:11:27 +00:00
parent 8be67dce82
commit f4db4058f8
17 changed files with 236 additions and 186 deletions

View File

@@ -1297,6 +1297,7 @@ query workspaceQuota($id: String!) {
storageQuota
historyPeriod
memberLimit
memberCount
humanReadable {
name
blobLimit

View File

@@ -6,6 +6,7 @@ query workspaceQuota($id: String!) {
storageQuota
historyPeriod
memberLimit
memberCount
humanReadable {
name
blobLimit

View File

@@ -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';