mirror of
https://github.com/unraid/api.git
synced 2026-02-24 01:58:29 -06:00
feat: regTy swapped
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
[api]
|
||||
version="3.2.3+28b0cd7b"
|
||||
version="3.2.3+0f03c5ea"
|
||||
[local]
|
||||
[notifier]
|
||||
apikey="unnotify_30994bfaccf839c65bae75f7fa12dd5ee16e69389f754c3b98ed7d5"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[api]
|
||||
version="3.2.3+28b0cd7b"
|
||||
version="3.2.3+0f03c5ea"
|
||||
[local]
|
||||
[notifier]
|
||||
apikey="unnotify_30994bfaccf839c65bae75f7fa12dd5ee16e69389f754c3b98ed7d5"
|
||||
@@ -19,4 +19,4 @@ allowedOrigins=""
|
||||
[upc]
|
||||
apikey="unupc_fab6ff6ffe51040595c6d9ffb63a353ba16cc2ad7d93f813a2e80a5810"
|
||||
[connectionStatus]
|
||||
minigraph="ERROR_RETRYING"
|
||||
minigraph="PRE_INIT"
|
||||
|
||||
@@ -1000,7 +1000,7 @@ export function VarsSchema(): z.ZodObject<Properties<Vars>> {
|
||||
regTm: z.string().nullish(),
|
||||
regTm2: z.string().nullish(),
|
||||
regTo: z.string().nullish(),
|
||||
regTy: z.string().nullish(),
|
||||
regTy: registrationTypeSchema.nullish(),
|
||||
safeMode: z.boolean().nullish(),
|
||||
sbClean: z.boolean().nullish(),
|
||||
sbEvents: z.number().nullish(),
|
||||
|
||||
@@ -1408,8 +1408,7 @@ export type Vars = {
|
||||
regTm2?: Maybe<Scalars['String']['output']>;
|
||||
/** Registration owner */
|
||||
regTo?: Maybe<Scalars['String']['output']>;
|
||||
/** Registration type - used to be registrationType enum and should be migrated back, but changed to match mothership for now */
|
||||
regTy?: Maybe<Scalars['String']['output']>;
|
||||
regTy?: Maybe<registrationType>;
|
||||
safeMode?: Maybe<Scalars['Boolean']['output']>;
|
||||
sbClean?: Maybe<Scalars['Boolean']['output']>;
|
||||
sbEvents?: Maybe<Scalars['Int']['output']>;
|
||||
@@ -2804,7 +2803,7 @@ export type VarsResolvers<ContextType = Context, ParentType extends ResolversPar
|
||||
regTm?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
regTm2?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
regTo?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
regTy?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
regTy?: Resolver<Maybe<ResolversTypes['registrationType']>, ParentType, ContextType>;
|
||||
safeMode?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
||||
sbClean?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
||||
sbEvents?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
||||
|
||||
@@ -271,18 +271,12 @@ export type DashboardVars = {
|
||||
flashGuid?: Maybe<Scalars['String']['output']>;
|
||||
regState?: Maybe<Scalars['String']['output']>;
|
||||
regTy?: Maybe<Scalars['String']['output']>;
|
||||
serverDescription?: Maybe<Scalars['String']['output']>;
|
||||
serverName?: Maybe<Scalars['String']['output']>;
|
||||
};
|
||||
|
||||
export type DashboardVarsInput = {
|
||||
flashGuid: Scalars['String']['input'];
|
||||
regState: Scalars['String']['input'];
|
||||
regTy: Scalars['String']['input'];
|
||||
/** Server description */
|
||||
serverDescription?: InputMaybe<Scalars['String']['input']>;
|
||||
/** Name of the server */
|
||||
serverName?: InputMaybe<Scalars['String']['input']>;
|
||||
};
|
||||
|
||||
export type DashboardVersions = {
|
||||
@@ -353,7 +347,7 @@ export type KsServerDetails = {
|
||||
flashVendor: Scalars['String']['output'];
|
||||
guid: Scalars['String']['output'];
|
||||
ipsId: Scalars['String']['output'];
|
||||
keyType?: Maybe<Scalars['String']['output']>;
|
||||
keyType: KeyType;
|
||||
licenseKey: Scalars['String']['output'];
|
||||
name: Scalars['String']['output'];
|
||||
plgVersion?: Maybe<Scalars['String']['output']>;
|
||||
|
||||
@@ -157,9 +157,7 @@ export function DashboardVarsInputSchema(): z.ZodObject<Properties<DashboardVars
|
||||
return z.object({
|
||||
flashGuid: z.string(),
|
||||
regState: z.string(),
|
||||
regTy: z.string(),
|
||||
serverDescription: z.string().nullish(),
|
||||
serverName: z.string().nullish()
|
||||
regTy: z.string()
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -139,10 +139,7 @@ type Vars {
|
||||
regCheck: String
|
||||
regFile: String
|
||||
regGuid: String
|
||||
"""
|
||||
Registration type - used to be registrationType enum and should be migrated back, but changed to match mothership for now
|
||||
"""
|
||||
regTy: String
|
||||
regTy: registrationType
|
||||
regState: RegistrationState
|
||||
"""
|
||||
Registration owner
|
||||
|
||||
Reference in New Issue
Block a user