Skip to content

dependabit / manifest/src / AuthConfigSchema

Variable: AuthConfigSchema

ts
const AuthConfigSchema: ZodOptional<ZodObject<{
  secretEnvVar: ZodOptional<ZodString>;
  type: ZodEnum<{
     basic: "basic";
     none: "none";
     oauth: "oauth";
     token: "token";
  }>;
}, $strip>>;

Defined in: packages/manifest/src/schema.ts:62

Released under the MIT License.