Lines 248-365typescript
248 disabled: "disabled";
251export interface WildcatProjectConfig extends z.infer<typeof wildcatProjectConfigSchema> {
253export declare const wildcatProfileProjectClassSchema: z.ZodObject<{
254 overlays: z.ZodDefault<z.ZodArray<z.ZodString>>;
256export declare const wildcatPresetDefaultsSchema: z.ZodObject<{
257 tracker: z.ZodDefault<z.ZodEnum<{
258 disabled: "disabled";
259 "github-project": "github-project";
262 workflow: z.ZodDefault<z.ZodEnum<{
266 secrets: z.ZodDefault<z.ZodEnum<{
267 disabled: "disabled";
268 onepassword: "onepassword";
MediumSecret Pattern
Hardcoded password in dist/config-schemas.d.ts
dist/config-schemas.d.tsView on unpkg · L268 269 environment: "environment";
270 "hosted-secret-store": "hosted-secret-store";
272 obsidian: z.ZodDefault<z.ZodEnum<{
273 disabled: "disabled";
274 "repo-is-vault": "repo-is-vault";
277 automation: z.ZodDefault<z.ZodEnum<{
279 advisory: "advisory";
282 proposal: "proposal";
284 docs: z.ZodDefault<z.ZodEnum<{
289export declare const wildcatPresetSchema: z.ZodObject<{
290 defaults: z.ZodObject<{
291 tracker: z.ZodDefault<z.ZodEnum<{
292 disabled: "disabled";
293 "github-project": "github-project";
296 workflow: z.ZodDefault<z.ZodEnum<{
300 secrets: z.ZodDefault<z.ZodEnum<{
301 disabled: "disabled";
302 onepassword: "onepassword";
MediumSecret Pattern
Hardcoded password in dist/config-schemas.d.ts
dist/config-schemas.d.tsView on unpkg · L302 303 environment: "environment";
304 "hosted-secret-store": "hosted-secret-store";
306 obsidian: z.ZodDefault<z.ZodEnum<{
307 disabled: "disabled";
308 "repo-is-vault": "repo-is-vault";
311 automation: z.ZodDefault<z.ZodEnum<{
313 advisory: "advisory";
316 proposal: "proposal";
318 docs: z.ZodDefault<z.ZodEnum<{
325 }, z.core.$strict>>>;
327export interface WildcatPreset extends z.infer<typeof wildcatPresetSchema> {
329export declare const wildcatProfileSchema: z.ZodObject<{
330 profile_version: z.ZodDefault<z.ZodNumber>;
331 default_preset: z.ZodString;
332 presets: z.ZodRecord<z.ZodString, z.ZodObject<{
333 defaults: z.ZodObject<{
334 tracker: z.ZodDefault<z.ZodEnum<{
335 disabled: "disabled";
336 "github-project": "github-project";
339 workflow: z.ZodDefault<z.ZodEnum<{
343 secrets: z.ZodDefault<z.ZodEnum<{
344 disabled: "disabled";
345 onepassword: "onepassword";
MediumSecret Pattern
Hardcoded password in dist/config-schemas.d.ts
dist/config-schemas.d.tsView on unpkg · L345 346 environment: "environment";
347 "hosted-secret-store": "hosted-secret-store";
349 obsidian: z.ZodDefault<z.ZodEnum<{
350 disabled: "disabled";
351 "repo-is-vault": "repo-is-vault";
354 automation: z.ZodDefault<z.ZodEnum<{
356 advisory: "advisory";
359 proposal: "proposal";
361 docs: z.ZodDefault<z.ZodEnum<{