fix(mobile): progress styles (#9001)

fix AF-1875, fix AF-1878, fix AF-1879
This commit is contained in:
pengx17
2024-12-04 06:56:33 +00:00
parent 82d133d64d
commit e4f94c7e3f
8 changed files with 64 additions and 112 deletions

View File

@@ -268,6 +268,7 @@ export type ErrorDataUnion =
| DocAccessDeniedDataType
| DocHistoryNotFoundDataType
| DocNotFoundDataType
| InvalidEmailDataType
| InvalidHistoryTimestampDataType
| InvalidPasswordLengthDataType
| InvalidRuntimeConfigTypeDataType
@@ -387,6 +388,11 @@ export interface HumanReadableQuotaType {
storageQuota: Scalars['String']['output'];
}
export interface InvalidEmailDataType {
__typename?: 'InvalidEmailDataType';
email: Scalars['String']['output'];
}
export interface InvalidHistoryTimestampDataType {
__typename?: 'InvalidHistoryTimestampDataType';
timestamp: Scalars['String']['output'];