Skip to content

Commit b9a271e

Browse files
committed
chore: update type gen
1 parent 2255716 commit b9a271e

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

api/src/graphql/schema/types/config/config.graphql

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
enum ConfigErrorState {
2-
UNKNOWN_ERROR
3-
INELIGIBLE
4-
INVALID
5-
NO_KEY_SERVER
6-
WITHDRAWN
7-
}
8-
91
type Config implements Node {
102
id: ID!
113
valid: Boolean

web/composables/gql/graphql.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
/* eslint-disable */
22
import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
33
export type Maybe<T> = T | null;
44
export type InputMaybe<T> = Maybe<T>;
@@ -372,6 +372,7 @@ export type Disk = {
372372
bytesPerSector: Scalars['Long']['output'];
373373
device: Scalars['String']['output'];
374374
firmwareRevision: Scalars['String']['output'];
375+
id: Scalars['ID']['output'];
375376
interfaceType: DiskInterfaceType;
376377
name: Scalars['String']['output'];
377378
partitions?: Maybe<Array<DiskPartition>>;

web/store/server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,6 @@ export const useServerStore = defineStore('server', () => {
792792
// ref: 'configError',
793793
// type: 'server',
794794
// };
795-
//@ts-expect-error - causing a build-breaking type error, but seems plausible, so i kept it around - pujitm
796795
case 'INELIGIBLE':
797796
return {
798797
heading: 'Ineligible for OS Version',

0 commit comments

Comments
 (0)