@code-pushup/models 0.60.2 → 0.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/audit.d.ts +5 -5
- package/src/lib/category-config.d.ts +5 -5
- package/src/lib/core-config.d.ts +68 -68
- package/src/lib/group.d.ts +7 -7
- package/src/lib/implementation/schemas.d.ts +3 -3
- package/src/lib/implementation/schemas.js +13 -2
- package/src/lib/implementation/schemas.js.map +1 -1
- package/src/lib/plugin-config.d.ts +23 -23
- package/src/lib/report.d.ts +34 -34
- package/src/lib/reports-diff.d.ts +116 -116
package/src/lib/group.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export type GroupRef = z.infer<typeof groupRefSchema>;
|
|
|
21
21
|
export declare const groupMetaSchema: z.ZodObject<{
|
|
22
22
|
title: z.ZodString;
|
|
23
23
|
description: z.ZodOptional<z.ZodString>;
|
|
24
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
24
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
25
25
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
27
|
title: string;
|
|
@@ -31,7 +31,7 @@ export declare const groupMetaSchema: z.ZodObject<{
|
|
|
31
31
|
}, {
|
|
32
32
|
title: string;
|
|
33
33
|
description?: string | undefined;
|
|
34
|
-
docsUrl?:
|
|
34
|
+
docsUrl?: unknown;
|
|
35
35
|
isSkipped?: boolean | undefined;
|
|
36
36
|
}>;
|
|
37
37
|
/**
|
|
@@ -70,7 +70,7 @@ export declare const groupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70
70
|
}, {
|
|
71
71
|
title: z.ZodString;
|
|
72
72
|
description: z.ZodOptional<z.ZodString>;
|
|
73
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
73
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
74
74
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
75
75
|
}>, "strip", z.ZodTypeAny, {
|
|
76
76
|
slug: string;
|
|
@@ -90,7 +90,7 @@ export declare const groupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
90
90
|
}[];
|
|
91
91
|
title: string;
|
|
92
92
|
description?: string | undefined;
|
|
93
|
-
docsUrl?:
|
|
93
|
+
docsUrl?: unknown;
|
|
94
94
|
isSkipped?: boolean | undefined;
|
|
95
95
|
}>;
|
|
96
96
|
/**
|
|
@@ -129,7 +129,7 @@ export declare const groupsSchema: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodOb
|
|
|
129
129
|
}, {
|
|
130
130
|
title: z.ZodString;
|
|
131
131
|
description: z.ZodOptional<z.ZodString>;
|
|
132
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
132
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
133
133
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
134
134
|
}>, "strip", z.ZodTypeAny, {
|
|
135
135
|
slug: string;
|
|
@@ -149,7 +149,7 @@ export declare const groupsSchema: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodOb
|
|
|
149
149
|
}[];
|
|
150
150
|
title: string;
|
|
151
151
|
description?: string | undefined;
|
|
152
|
-
docsUrl?:
|
|
152
|
+
docsUrl?: unknown;
|
|
153
153
|
isSkipped?: boolean | undefined;
|
|
154
154
|
}>, "many">>, {
|
|
155
155
|
slug: string;
|
|
@@ -169,6 +169,6 @@ export declare const groupsSchema: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodOb
|
|
|
169
169
|
}[];
|
|
170
170
|
title: string;
|
|
171
171
|
description?: string | undefined;
|
|
172
|
-
docsUrl?:
|
|
172
|
+
docsUrl?: unknown;
|
|
173
173
|
isSkipped?: boolean | undefined;
|
|
174
174
|
}[] | undefined>;
|
|
@@ -31,7 +31,7 @@ export declare const slugSchema: ZodString;
|
|
|
31
31
|
export declare const descriptionSchema: ZodOptional<ZodString>;
|
|
32
32
|
export declare const urlSchema: ZodString;
|
|
33
33
|
/** Schema for a docsUrl */
|
|
34
|
-
export declare const docsUrlSchema: z.ZodUnion<[ZodOptional<ZodString>, z.ZodLiteral<"">]
|
|
34
|
+
export declare const docsUrlSchema: z.ZodCatch<z.ZodUnion<[ZodOptional<ZodString>, z.ZodLiteral<"">]>>;
|
|
35
35
|
/** Schema for a title of a plugin, category and audit */
|
|
36
36
|
export declare const titleSchema: ZodString;
|
|
37
37
|
/** Schema for score of audit, category or group */
|
|
@@ -51,7 +51,7 @@ export declare function metaSchema(options?: {
|
|
|
51
51
|
}): ZodObject<{
|
|
52
52
|
title: ZodString;
|
|
53
53
|
description: ZodOptional<ZodString>;
|
|
54
|
-
docsUrl: z.ZodUnion<[ZodOptional<ZodString>, z.ZodLiteral<"">]
|
|
54
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[ZodOptional<ZodString>, z.ZodLiteral<"">]>>;
|
|
55
55
|
isSkipped: ZodOptional<z.ZodBoolean>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
57
|
title: string;
|
|
@@ -61,7 +61,7 @@ export declare function metaSchema(options?: {
|
|
|
61
61
|
}, {
|
|
62
62
|
title: string;
|
|
63
63
|
description?: string | undefined;
|
|
64
|
-
docsUrl?:
|
|
64
|
+
docsUrl?: unknown;
|
|
65
65
|
isSkipped?: boolean | undefined;
|
|
66
66
|
}>;
|
|
67
67
|
/** Schema for a generalFilePath */
|
|
@@ -36,8 +36,19 @@ export const urlSchema = z.string().url();
|
|
|
36
36
|
/** Schema for a docsUrl */
|
|
37
37
|
export const docsUrlSchema = urlSchema
|
|
38
38
|
.optional()
|
|
39
|
-
.or(z.literal(''))
|
|
40
|
-
|
|
39
|
+
.or(z.literal('')) // allow empty string (no URL validation)
|
|
40
|
+
// eslint-disable-next-line unicorn/prefer-top-level-await, unicorn/catch-error-name
|
|
41
|
+
.catch(ctx => {
|
|
42
|
+
// if only URL validation fails, supress error since this metadata is optional anyway
|
|
43
|
+
if (ctx.error.errors.length === 1 &&
|
|
44
|
+
ctx.error.errors[0]?.code === 'invalid_string' &&
|
|
45
|
+
ctx.error.errors[0].validation === 'url') {
|
|
46
|
+
console.warn(`Ignoring invalid docsUrl: ${ctx.input}`);
|
|
47
|
+
return '';
|
|
48
|
+
}
|
|
49
|
+
throw ctx.error;
|
|
50
|
+
})
|
|
51
|
+
.describe('Documentation site');
|
|
41
52
|
/** Schema for a title of a plugin, category and audit */
|
|
42
53
|
export const titleSchema = z
|
|
43
54
|
.string({ description: 'Descriptive name' })
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../../../packages/models/src/lib/implementation/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAoD,CAAC,EAAE,MAAM,KAAK,CAAC;AAC1E,OAAO,EACL,sBAAsB,EACtB,eAAe,EACf,gBAAgB,GACjB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEtD,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KAClC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;KACtD,OAAO,CAAC,IAAI,CAAC,CAAC;AAGjB;;GAEG;AACH,MAAM,UAAU,mBAAmB,CACjC,UAGI;IACF,eAAe,EAAE,+BAA+B;IAChD,mBAAmB,EAAE,0BAA0B;CAChD;IAED,OAAO,CAAC,CAAC,MAAM,CAAC;QACd,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,eAAe,EAAE,CAAC;QACxD,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,mBAAmB,EAAE,CAAC;KACjE,CAAC,CAAC;AACL,CAAC;AAED,4DAA4D;AAC5D,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC;KACxB,MAAM,CAAC,EAAE,WAAW,EAAE,sCAAsC,EAAE,CAAC;KAC/D,KAAK,CAAC,SAAS,EAAE;IAChB,OAAO,EACL,6GAA6G;CAChH,CAAC;KACD,GAAG,CAAC,eAAe,EAAE;IACpB,OAAO,EAAE,uBAAuB,eAAe,kBAAkB;CAClE,CAAC,CAAC;AAEL,iDAAiD;AACjD,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC;KAC/B,MAAM,CAAC,EAAE,WAAW,EAAE,wBAAwB,EAAE,CAAC;KACjD,GAAG,CAAC,sBAAsB,CAAC;KAC3B,QAAQ,EAAE,CAAC;AAEd,sBAAsB;AACtB,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC;AAE1C,4BAA4B;AAC5B,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS;KACnC,QAAQ,EAAE;KACV,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../../../packages/models/src/lib/implementation/schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,7 +5,7 @@ export declare const pluginMetaSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
5
5
|
}, {
|
|
6
6
|
title: z.ZodString;
|
|
7
7
|
description: z.ZodOptional<z.ZodString>;
|
|
8
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
8
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
9
9
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
10
10
|
}>, {
|
|
11
11
|
slug: z.ZodString;
|
|
@@ -24,7 +24,7 @@ export declare const pluginMetaSchema: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
24
24
|
title: string;
|
|
25
25
|
icon: "slug" | "file" | "key" | "table" | "command" | "search" | "blink" | "folder-robot" | "folder-src" | "folder-dist" | "folder-css" | "folder-sass" | "folder-television" | "folder-desktop" | "folder-console" | "folder-images" | "folder-scripts" | "folder-node" | "folder-javascript" | "folder-json" | "folder-font" | "folder-bower" | "folder-test" | "folder-jinja" | "folder-markdown" | "folder-pdm" | "folder-php" | "folder-phpmailer" | "folder-sublime" | "folder-docs" | "folder-git" | "folder-github" | "folder-gitlab" | "folder-vscode" | "folder-views" | "folder-vue" | "folder-vuepress" | "folder-expo" | "folder-config" | "folder-i18n" | "folder-components" | "folder-verdaccio" | "folder-aurelia" | "folder-resource" | "folder-lib" | "folder-theme" | "folder-webpack" | "folder-global" | "folder-public" | "folder-include" | "folder-docker" | "folder-database" | "folder-log" | "folder-target" | "folder-temp" | "folder-aws" | "folder-audio" | "folder-video" | "folder-kubernetes" | "folder-import" | "folder-export" | "folder-wakatime" | "folder-circleci" | "folder-wordpress" | "folder-gradle" | "folder-coverage" | "folder-class" | "folder-other" | "folder-lua" | "folder-typescript" | "folder-graphql" | "folder-routes" | "folder-ci" | "folder-benchmark" | "folder-messages" | "folder-less" | "folder-gulp" | "folder-python" | "folder-mojo" | "folder-moon" | "folder-debug" | "folder-fastlane" | "folder-plugin" | "folder-middleware" | "folder-controller" | "folder-ansible" | "folder-server" | "folder-client" | "folder-tasks" | "folder-android" | "folder-ios" | "folder-upload" | "folder-download" | "folder-tools" | "folder-helper" | "folder-serverless" | "folder-api" | "folder-app" | "folder-apollo" | "folder-archive" | "folder-batch" | "folder-buildkite" | "folder-cluster" | "folder-command" | "folder-constant" | "folder-container" | "folder-content" | "folder-context" | "folder-core" | "folder-delta" | "folder-dump" | "folder-examples" | "folder-environment" | "folder-functions" | "folder-generator" | "folder-hook" | "folder-job" | "folder-keys" | "folder-layout" | "folder-mail" | "folder-mappings" | "folder-meta" | "folder-changesets" | "folder-packages" | "folder-shared" | "folder-shader" | "folder-stack" | "folder-template" | "folder-utils" | "folder-supabase" | "folder-private" | "folder-linux" | "folder-windows" | "folder-macos" | "folder-error" | "folder-event" | "folder-secure" | "folder-custom" | "folder-mock" | "folder-syntax" | "folder-vm" | "folder-stylus" | "folder-flow" | "folder-rules" | "folder-review" | "folder-animation" | "folder-guard" | "folder-prisma" | "folder-pipe" | "folder-svg" | "folder-terraform" | "folder-mobile" | "folder-stencil" | "folder-firebase" | "folder-svelte" | "folder-update" | "folder-intellij" | "folder-azure-pipelines" | "folder-mjml" | "folder-admin" | "folder-scala" | "folder-connection" | "folder-quasar" | "folder-next" | "folder-cobol" | "folder-yarn" | "folder-husky" | "folder-storybook" | "folder-base" | "folder-cart" | "folder-home" | "folder-project" | "folder-interface" | "folder-netlify" | "folder-enum" | "folder-contract" | "folder-queue" | "folder-vercel" | "folder-cypress" | "folder-decorators" | "folder-java" | "folder-resolver" | "folder-angular" | "folder-unity" | "folder-pdf" | "folder-proto" | "folder-plastic" | "folder-gamemaker" | "folder-mercurial" | "folder-godot" | "folder-lottie" | "folder-taskfile" | "folder-cloudflare" | "folder-seeders" | "folder-robot-open" | "folder-src-open" | "folder-dist-open" | "folder-css-open" | "folder-sass-open" | "folder-television-open" | "folder-desktop-open" | "folder-console-open" | "folder-images-open" | "folder-scripts-open" | "folder-node-open" | "folder-javascript-open" | "folder-json-open" | "folder-font-open" | "folder-bower-open" | "folder-test-open" | "folder-jinja-open" | "folder-markdown-open" | "folder-pdm-open" | "folder-php-open" | "folder-phpmailer-open" | "folder-sublime-open" | "folder-docs-open" | "folder-git-open" | "folder-github-open" | "folder-gitlab-open" | "folder-vscode-open" | "folder-views-open" | "folder-vue-open" | "folder-vuepress-open" | "folder-expo-open" | "folder-config-open" | "folder-i18n-open" | "folder-components-open" | "folder-verdaccio-open" | "folder-aurelia-open" | "folder-resource-open" | "folder-lib-open" | "folder-theme-open" | "folder-webpack-open" | "folder-global-open" | "folder-public-open" | "folder-include-open" | "folder-docker-open" | "folder-database-open" | "folder-log-open" | "folder-target-open" | "folder-temp-open" | "folder-aws-open" | "folder-audio-open" | "folder-video-open" | "folder-kubernetes-open" | "folder-import-open" | "folder-export-open" | "folder-wakatime-open" | "folder-circleci-open" | "folder-wordpress-open" | "folder-gradle-open" | "folder-coverage-open" | "folder-class-open" | "folder-other-open" | "folder-lua-open" | "folder-typescript-open" | "folder-graphql-open" | "folder-routes-open" | "folder-ci-open" | "folder-benchmark-open" | "folder-messages-open" | "folder-less-open" | "folder-gulp-open" | "folder-python-open" | "folder-mojo-open" | "folder-moon-open" | "folder-debug-open" | "folder-fastlane-open" | "folder-plugin-open" | "folder-middleware-open" | "folder-controller-open" | "folder-ansible-open" | "folder-server-open" | "folder-client-open" | "folder-tasks-open" | "folder-android-open" | "folder-ios-open" | "folder-upload-open" | "folder-download-open" | "folder-tools-open" | "folder-helper-open" | "folder-serverless-open" | "folder-api-open" | "folder-app-open" | "folder-apollo-open" | "folder-archive-open" | "folder-batch-open" | "folder-buildkite-open" | "folder-cluster-open" | "folder-command-open" | "folder-constant-open" | "folder-container-open" | "folder-content-open" | "folder-context-open" | "folder-core-open" | "folder-delta-open" | "folder-dump-open" | "folder-examples-open" | "folder-environment-open" | "folder-functions-open" | "folder-generator-open" | "folder-hook-open" | "folder-job-open" | "folder-keys-open" | "folder-layout-open" | "folder-mail-open" | "folder-mappings-open" | "folder-meta-open" | "folder-changesets-open" | "folder-packages-open" | "folder-shared-open" | "folder-shader-open" | "folder-stack-open" | "folder-template-open" | "folder-utils-open" | "folder-supabase-open" | "folder-private-open" | "folder-linux-open" | "folder-windows-open" | "folder-macos-open" | "folder-error-open" | "folder-event-open" | "folder-secure-open" | "folder-custom-open" | "folder-mock-open" | "folder-syntax-open" | "folder-vm-open" | "folder-stylus-open" | "folder-flow-open" | "folder-rules-open" | "folder-review-open" | "folder-animation-open" | "folder-guard-open" | "folder-prisma-open" | "folder-pipe-open" | "folder-svg-open" | "folder-terraform-open" | "folder-mobile-open" | "folder-stencil-open" | "folder-firebase-open" | "folder-svelte-open" | "folder-update-open" | "folder-intellij-open" | "folder-azure-pipelines-open" | "folder-mjml-open" | "folder-admin-open" | "folder-scala-open" | "folder-connection-open" | "folder-quasar-open" | "folder-next-open" | "folder-cobol-open" | "folder-yarn-open" | "folder-husky-open" | "folder-storybook-open" | "folder-base-open" | "folder-cart-open" | "folder-home-open" | "folder-project-open" | "folder-interface-open" | "folder-netlify-open" | "folder-enum-open" | "folder-contract-open" | "folder-queue-open" | "folder-vercel-open" | "folder-cypress-open" | "folder-decorators-open" | "folder-java-open" | "folder-resolver-open" | "folder-angular-open" | "folder-unity-open" | "folder-pdf-open" | "folder-proto-open" | "folder-plastic-open" | "folder-gamemaker-open" | "folder-mercurial-open" | "folder-godot-open" | "folder-lottie-open" | "folder-taskfile-open" | "folder-cloudflare-open" | "folder-seeders-open" | "html" | "pug" | "markdown" | "css" | "sass" | "less" | "json" | "hjson" | "jinja" | "proto" | "sublime" | "twine" | "yaml" | "xml" | "image" | "javascript" | "react" | "react_ts" | "routing" | "settings" | "typescript-def" | "markojs" | "astro" | "pdf" | "vscode" | "visualstudio" | "database" | "kusto" | "csharp" | "qsharp" | "zip" | "vala" | "zig" | "exe" | "hex" | "java" | "jar" | "javaclass" | "c" | "h" | "cpp" | "hpp" | "rc" | "go" | "python" | "python-misc" | "url" | "console" | "powershell" | "gradle" | "word" | "certificate" | "font" | "lib" | "dll" | "ruby" | "fsharp" | "swift" | "arduino" | "docker" | "tex" | "powerpoint" | "video" | "virtual" | "vedic" | "email" | "audio" | "coffee" | "document" | "graphql" | "rust" | "raml" | "xaml" | "haskell" | "kotlin" | "otne" | "git" | "lua" | "clojure" | "groovy" | "r" | "dart" | "dart_generated" | "actionscript" | "mxml" | "autohotkey" | "flash" | "swc" | "cmake" | "assembly" | "vue" | "ocaml" | "odin" | "javascript-map" | "css-map" | "lock" | "handlebars" | "perl" | "haxe" | "test-ts" | "test-jsx" | "test-js" | "angular" | "angular-component" | "angular-guard" | "angular-service" | "angular-pipe" | "angular-directive" | "angular-resolver" | "puppet" | "elixir" | "livescript" | "erlang" | "twig" | "julia" | "elm" | "purescript" | "smarty" | "stylus" | "reason" | "bucklescript" | "merlin" | "verilog" | "mathematica" | "wolframlanguage" | "nunjucks" | "robot" | "solidity" | "autoit" | "haml" | "yang" | "mjml" | "terraform" | "laravel" | "applescript" | "cake" | "cucumber" | "nim" | "apiblueprint" | "riot" | "vfl" | "kl" | "postcss" | "todo" | "coldfusion" | "cabal" | "nix" | "slim" | "http" | "restql" | "kivy" | "graphcool" | "sbt" | "android" | "tune" | "gitlab" | "jenkins" | "figma" | "huff" | "crystal" | "drone" | "cuda" | "log" | "dotjs" | "ejs" | "wakatime" | "processing" | "storybook" | "wepy" | "hcl" | "san" | "quokka" | "django" | "red" | "makefile" | "foxpro" | "i18n" | "webassembly" | "jupyter" | "d" | "mdx" | "mdsvex" | "ballerina" | "racket" | "bazel" | "mint" | "velocity" | "godot" | "godot-assets" | "azure-pipelines" | "azure" | "vagrant" | "prisma" | "razor" | "abc" | "asciidoc" | "edge" | "scheme" | "lisp" | "3d" | "svg" | "svelte" | "vim" | "moonscript" | "advpl_prw" | "advpl_ptm" | "advpl_tlpp" | "advpl_include" | "disc" | "fortran" | "tcl" | "liquid" | "prolog" | "coconut" | "sketch" | "pawn" | "forth" | "uml" | "meson" | "dhall" | "sml" | "opam" | "imba" | "drawio" | "pascal" | "shaderlab" | "sas" | "nuget" | "denizenscript" | "nginx" | "minecraft" | "rescript" | "rescript-interface" | "brainfuck" | "bicep" | "cobol" | "grain" | "lolcode" | "idris" | "pipeline" | "opa" | "windicss" | "scala" | "lilypond" | "vlang" | "chess" | "gemini" | "tsconfig" | "tauri" | "jsconfig" | "ada" | "horusec" | "pdm" | "coala" | "dinophp" | "teal" | "template" | "shader" | "siyuan" | "ndst" | "tobi" | "gleam" | "steadybit" | "capnp" | "tree" | "cadence" | "openapi" | "swagger" | "antlr" | "stylable" | "pinejs" | "taskfile" | "gamemaker" | "tldraw" | "typst" | "mermaid" | "mojo" | "roblox" | "spwn" | "templ" | "chrome" | "stan" | "abap" | "lottie" | "apps-script" | "pkl" | "playwright" | "go-mod" | "gemfile" | "rubocop" | "rspec" | "semgrep" | "vue-config" | "nuxt" | "vercel" | "verdaccio" | "payload" | "next" | "remix" | "posthtml" | "webpack" | "ionic" | "gulp" | "nodejs" | "npm" | "yarn" | "turborepo" | "babel" | "blitz" | "contributing" | "readme" | "changelog" | "architecture" | "credits" | "authors" | "flow" | "favicon" | "karma" | "bithound" | "svgo" | "appveyor" | "travis" | "codecov" | "sonarcloud" | "protractor" | "fusebox" | "heroku" | "editorconfig" | "bower" | "eslint" | "conduct" | "watchman" | "aurelia" | "auto" | "mocha" | "firebase" | "rollup" | "hack" | "hardhat" | "stylelint" | "code-climate" | "prettier" | "renovate" | "apollo" | "nodemon" | "webhint" | "browserlist" | "snyk" | "sequelize" | "gatsby" | "circleci" | "cloudfoundry" | "grunt" | "jest" | "fastlane" | "helm" | "wallaby" | "stencil" | "semantic-release" | "bitbucket" | "istanbul" | "tailwindcss" | "buildkite" | "netlify" | "nest" | "moon" | "percy" | "gitpod" | "codeowners" | "gcp" | "husky" | "tilt" | "capacitor" | "adonis" | "commitlint" | "buck" | "nx" | "dune" | "roadmap" | "stryker" | "modernizr" | "stitches" | "replit" | "snowpack" | "quasar" | "dependabot" | "vite" | "vitest" | "lerna" | "textlint" | "sentry" | "phpunit" | "php-cs-fixer" | "robots" | "maven" | "serverless" | "supabase" | "ember" | "poetry" | "parcel" | "astyle" | "lighthouse" | "svgr" | "rome" | "cypress" | "plop" | "tobimake" | "pnpm" | "gridsome" | "caddy" | "bun" | "nano-staged" | "knip" | "craco" | "mercurial" | "deno" | "plastic" | "unocss" | "ifanr-cloud" | "concourse" | "syncpack" | "werf" | "panda" | "biome" | "esbuild" | "puppeteer" | "kubernetes" | "matlab" | "diff" | "typescript" | "php" | "salesforce" | "objective-c" | "objective-cpp" | "blink_light" | "jinja_light" | "huff_light" | "crystal_light" | "drone_light" | "wakatime_light" | "hcl_light" | "uml_light" | "chess_light" | "openapi_light" | "tldraw_light" | "rubocop_light" | "vercel_light" | "payload_light" | "next_light" | "remix_light" | "turborepo_light" | "auto_light" | "stylelint_light" | "code-climate_light" | "browserlist_light" | "circleci_light" | "semantic-release_light" | "netlify_light" | "stitches_light" | "snowpack_light" | "pnpm_light" | "bun_light" | "nano-staged_light" | "deno_light" | "folder-jinja_light" | "folder-intellij_light" | "folder-jinja-open_light" | "folder-intellij-open_light" | "folder" | "folder-open" | "folder-root" | "folder-root-open" | "php_elephant" | "php_elephant_pink" | "go_gopher" | "nodejs_alt" | "silverstripe";
|
|
26
26
|
description?: string | undefined;
|
|
27
|
-
docsUrl?:
|
|
27
|
+
docsUrl?: unknown;
|
|
28
28
|
isSkipped?: boolean | undefined;
|
|
29
29
|
packageName?: string | undefined;
|
|
30
30
|
version?: string | undefined;
|
|
@@ -1407,7 +1407,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1407
1407
|
}, {
|
|
1408
1408
|
title: z.ZodString;
|
|
1409
1409
|
description: z.ZodOptional<z.ZodString>;
|
|
1410
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1410
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1411
1411
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1412
1412
|
}>, "strip", z.ZodTypeAny, {
|
|
1413
1413
|
slug: string;
|
|
@@ -1419,7 +1419,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1419
1419
|
slug: string;
|
|
1420
1420
|
title: string;
|
|
1421
1421
|
description?: string | undefined;
|
|
1422
|
-
docsUrl?:
|
|
1422
|
+
docsUrl?: unknown;
|
|
1423
1423
|
isSkipped?: boolean | undefined;
|
|
1424
1424
|
}>, "many">, {
|
|
1425
1425
|
slug: string;
|
|
@@ -1431,7 +1431,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1431
1431
|
slug: string;
|
|
1432
1432
|
title: string;
|
|
1433
1433
|
description?: string | undefined;
|
|
1434
|
-
docsUrl?:
|
|
1434
|
+
docsUrl?: unknown;
|
|
1435
1435
|
isSkipped?: boolean | undefined;
|
|
1436
1436
|
}[]>;
|
|
1437
1437
|
groups: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1461,7 +1461,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1461
1461
|
}, {
|
|
1462
1462
|
title: z.ZodString;
|
|
1463
1463
|
description: z.ZodOptional<z.ZodString>;
|
|
1464
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1464
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1465
1465
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1466
1466
|
}>, "strip", z.ZodTypeAny, {
|
|
1467
1467
|
slug: string;
|
|
@@ -1481,7 +1481,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1481
1481
|
}[];
|
|
1482
1482
|
title: string;
|
|
1483
1483
|
description?: string | undefined;
|
|
1484
|
-
docsUrl?:
|
|
1484
|
+
docsUrl?: unknown;
|
|
1485
1485
|
isSkipped?: boolean | undefined;
|
|
1486
1486
|
}>, "many">>, {
|
|
1487
1487
|
slug: string;
|
|
@@ -1501,7 +1501,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1501
1501
|
}[];
|
|
1502
1502
|
title: string;
|
|
1503
1503
|
description?: string | undefined;
|
|
1504
|
-
docsUrl?:
|
|
1504
|
+
docsUrl?: unknown;
|
|
1505
1505
|
isSkipped?: boolean | undefined;
|
|
1506
1506
|
}[] | undefined>;
|
|
1507
1507
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1806,7 +1806,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1806
1806
|
slug: string;
|
|
1807
1807
|
title: string;
|
|
1808
1808
|
description?: string | undefined;
|
|
1809
|
-
docsUrl?:
|
|
1809
|
+
docsUrl?: unknown;
|
|
1810
1810
|
isSkipped?: boolean | undefined;
|
|
1811
1811
|
}[];
|
|
1812
1812
|
groups?: {
|
|
@@ -1817,7 +1817,7 @@ export declare const pluginDataSchema: z.ZodObject<{
|
|
|
1817
1817
|
}[];
|
|
1818
1818
|
title: string;
|
|
1819
1819
|
description?: string | undefined;
|
|
1820
|
-
docsUrl?:
|
|
1820
|
+
docsUrl?: unknown;
|
|
1821
1821
|
isSkipped?: boolean | undefined;
|
|
1822
1822
|
}[] | undefined;
|
|
1823
1823
|
}>;
|
|
@@ -1827,7 +1827,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
1827
1827
|
}, {
|
|
1828
1828
|
title: z.ZodString;
|
|
1829
1829
|
description: z.ZodOptional<z.ZodString>;
|
|
1830
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1830
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1831
1831
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1832
1832
|
}>, {
|
|
1833
1833
|
slug: z.ZodString;
|
|
@@ -3201,7 +3201,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3201
3201
|
}, {
|
|
3202
3202
|
title: z.ZodString;
|
|
3203
3203
|
description: z.ZodOptional<z.ZodString>;
|
|
3204
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
3204
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
3205
3205
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
3206
3206
|
}>, "strip", z.ZodTypeAny, {
|
|
3207
3207
|
slug: string;
|
|
@@ -3213,7 +3213,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3213
3213
|
slug: string;
|
|
3214
3214
|
title: string;
|
|
3215
3215
|
description?: string | undefined;
|
|
3216
|
-
docsUrl?:
|
|
3216
|
+
docsUrl?: unknown;
|
|
3217
3217
|
isSkipped?: boolean | undefined;
|
|
3218
3218
|
}>, "many">, {
|
|
3219
3219
|
slug: string;
|
|
@@ -3225,7 +3225,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3225
3225
|
slug: string;
|
|
3226
3226
|
title: string;
|
|
3227
3227
|
description?: string | undefined;
|
|
3228
|
-
docsUrl?:
|
|
3228
|
+
docsUrl?: unknown;
|
|
3229
3229
|
isSkipped?: boolean | undefined;
|
|
3230
3230
|
}[]>;
|
|
3231
3231
|
groups: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3255,7 +3255,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3255
3255
|
}, {
|
|
3256
3256
|
title: z.ZodString;
|
|
3257
3257
|
description: z.ZodOptional<z.ZodString>;
|
|
3258
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
3258
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
3259
3259
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
3260
3260
|
}>, "strip", z.ZodTypeAny, {
|
|
3261
3261
|
slug: string;
|
|
@@ -3275,7 +3275,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3275
3275
|
}[];
|
|
3276
3276
|
title: string;
|
|
3277
3277
|
description?: string | undefined;
|
|
3278
|
-
docsUrl?:
|
|
3278
|
+
docsUrl?: unknown;
|
|
3279
3279
|
isSkipped?: boolean | undefined;
|
|
3280
3280
|
}>, "many">>, {
|
|
3281
3281
|
slug: string;
|
|
@@ -3295,7 +3295,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3295
3295
|
}[];
|
|
3296
3296
|
title: string;
|
|
3297
3297
|
description?: string | undefined;
|
|
3298
|
-
docsUrl?:
|
|
3298
|
+
docsUrl?: unknown;
|
|
3299
3299
|
isSkipped?: boolean | undefined;
|
|
3300
3300
|
}[] | undefined>;
|
|
3301
3301
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3611,11 +3611,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3611
3611
|
slug: string;
|
|
3612
3612
|
title: string;
|
|
3613
3613
|
description?: string | undefined;
|
|
3614
|
-
docsUrl?:
|
|
3614
|
+
docsUrl?: unknown;
|
|
3615
3615
|
isSkipped?: boolean | undefined;
|
|
3616
3616
|
}[];
|
|
3617
3617
|
description?: string | undefined;
|
|
3618
|
-
docsUrl?:
|
|
3618
|
+
docsUrl?: unknown;
|
|
3619
3619
|
isSkipped?: boolean | undefined;
|
|
3620
3620
|
packageName?: string | undefined;
|
|
3621
3621
|
version?: string | undefined;
|
|
@@ -3627,7 +3627,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3627
3627
|
}[];
|
|
3628
3628
|
title: string;
|
|
3629
3629
|
description?: string | undefined;
|
|
3630
|
-
docsUrl?:
|
|
3630
|
+
docsUrl?: unknown;
|
|
3631
3631
|
isSkipped?: boolean | undefined;
|
|
3632
3632
|
}[] | undefined;
|
|
3633
3633
|
}>, {
|
|
@@ -3943,11 +3943,11 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3943
3943
|
slug: string;
|
|
3944
3944
|
title: string;
|
|
3945
3945
|
description?: string | undefined;
|
|
3946
|
-
docsUrl?:
|
|
3946
|
+
docsUrl?: unknown;
|
|
3947
3947
|
isSkipped?: boolean | undefined;
|
|
3948
3948
|
}[];
|
|
3949
3949
|
description?: string | undefined;
|
|
3950
|
-
docsUrl?:
|
|
3950
|
+
docsUrl?: unknown;
|
|
3951
3951
|
isSkipped?: boolean | undefined;
|
|
3952
3952
|
packageName?: string | undefined;
|
|
3953
3953
|
version?: string | undefined;
|
|
@@ -3959,7 +3959,7 @@ export declare const pluginConfigSchema: z.ZodEffects<z.ZodObject<z.objectUtil.e
|
|
|
3959
3959
|
}[];
|
|
3960
3960
|
title: string;
|
|
3961
3961
|
description?: string | undefined;
|
|
3962
|
-
docsUrl?:
|
|
3962
|
+
docsUrl?: unknown;
|
|
3963
3963
|
isSkipped?: boolean | undefined;
|
|
3964
3964
|
}[] | undefined;
|
|
3965
3965
|
}>;
|