You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/unraid-api/cli/generated/graphql.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export type Scalars = {
15
15
Int: {input: number;output: number;}
16
16
Float: {input: number;output: number;}
17
17
/** The `BigInt` scalar type represents non-fractional signed whole numeric values. */
18
-
BigInt: {input: any;output: any;}
18
+
BigInt: {input: number;output: number;}
19
19
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
20
20
DateTime: {input: string;output: string;}
21
21
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
Copy file name to clipboardExpand all lines: web/src/composables/gql/graphql.ts
+25-3Lines changed: 25 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export type Scalars = {
15
15
Int: {input: number;output: number;}
16
16
Float: {input: number;output: number;}
17
17
/** The `BigInt` scalar type represents non-fractional signed whole numeric values. */
18
-
BigInt: {input: any;output: any;}
18
+
BigInt: {input: number;output: number;}
19
19
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
20
20
DateTime: {input: string;output: string;}
21
21
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
/** Array slot number. Parity1 is always 0 and Parity2 is always 29. Array slots will be 1 - 28. Cache slots are 30 - 53. Flash is 54. */
243
243
idx: Scalars['Int']['output'];
244
+
/** Whether the disk is currently spinning */
245
+
isSpinning?: Maybe<Scalars['Boolean']['output']>;
244
246
name?: Maybe<Scalars['String']['output']>;
245
247
/** Number of unrecoverable errors reported by the device I/O drivers. Missing data due to unrecoverable array read errors is filled in on-the-fly using parity reconstruct (and we attempt to write this data back to the sector(s) which failed). Any unrecoverable write error results in disabling the disk. */
0 commit comments