@savvy-web/mcp 1.3.3 → 1.3.5
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/LICENSE +21 -0
- package/README.md +2 -2
- package/{public/content → content}/guides/api-docs-from-api-extractor.md +47 -33
- package/{public/content → content}/guides/building-a-github-action.md +2 -2
- package/content/guides/choosing-a-builder.md +93 -0
- package/content/manifest.json +10538 -0
- package/content/packages/bundler/api/function/build.md +18 -0
- package/content/packages/bundler/api/function/definebuild.md +18 -0
- package/content/packages/bundler/api/function/parseargs.md +18 -0
- package/content/packages/bundler/api/function/runbuild.md +18 -0
- package/content/packages/bundler/api/interface/buildconfig.md +147 -0
- package/content/packages/bundler/api/interface/buildconfiginput.md +153 -0
- package/content/packages/bundler/api/interface/buildentryoverride.md +86 -0
- package/content/packages/bundler/api/interface/outputconfig.md +34 -0
- package/content/packages/bundler/api/interface/parsedargs.md +44 -0
- package/content/packages/bundler/api/interface/runoptions.md +158 -0
- package/content/packages/bundler/api.md +28 -0
- package/content/packages/bundler/overview.md +89 -0
- package/content/packages/github-action-builder/api/class/actionymlmissing.md +30 -0
- package/content/packages/github-action-builder/api/class/actionymlpatherror.md +48 -0
- package/content/packages/github-action-builder/api/class/actionymlschemaerror.md +45 -0
- package/content/packages/github-action-builder/api/class/actionymlsyntaxerror.md +57 -0
- package/content/packages/github-action-builder/api/class/buildfailed.md +39 -0
- package/content/packages/github-action-builder/api/class/bundlefailed.md +39 -0
- package/content/packages/github-action-builder/api/class/cleanerror.md +39 -0
- package/content/packages/github-action-builder/api/class/configinvalid.md +39 -0
- package/content/packages/github-action-builder/api/class/configloadfailed.md +39 -0
- package/content/packages/github-action-builder/api/class/confignotfound.md +39 -0
- package/content/packages/github-action-builder/api/class/entryfilemissing.md +39 -0
- package/content/packages/github-action-builder/api/class/githubaction.md +101 -0
- package/content/packages/github-action-builder/api/class/mainentrymissing.md +39 -0
- package/content/packages/github-action-builder/api/class/persistlocalerror.md +39 -0
- package/content/packages/github-action-builder/api/class/validationfailed.md +48 -0
- package/content/packages/github-action-builder/api/class/workerentryinvalidname.md +37 -0
- package/content/packages/github-action-builder/api/class/workerentrymissing.md +44 -0
- package/content/packages/github-action-builder/api/class/writeerror.md +39 -0
- package/content/packages/github-action-builder/api/function/defineconfig.md +68 -0
- package/content/packages/github-action-builder/api/interface/buildservice.md +83 -0
- package/content/packages/github-action-builder/api/interface/configservice.md +66 -0
- package/content/packages/github-action-builder/api/interface/githubactionoptions.md +60 -0
- package/content/packages/github-action-builder/api/interface/loadconfigresult.md +44 -0
- package/content/packages/github-action-builder/api/interface/persistlocalservice.md +37 -0
- package/content/packages/github-action-builder/api/interface/validationservice.md +82 -0
- package/content/packages/github-action-builder/api/type/actionymlresult.md +18 -0
- package/content/packages/github-action-builder/api/type/apperror.md +18 -0
- package/content/packages/github-action-builder/api/type/builderror.md +18 -0
- package/content/packages/github-action-builder/api/type/buildoptions.md +18 -0
- package/content/packages/github-action-builder/api/type/buildresult.md +18 -0
- package/content/packages/github-action-builder/api/type/buildrunneroptions.md +18 -0
- package/content/packages/github-action-builder/api/type/bundleresult.md +18 -0
- package/content/packages/github-action-builder/api/type/bundlestats.md +18 -0
- package/content/packages/github-action-builder/api/type/config.md +18 -0
- package/content/packages/github-action-builder/api/type/configerror.md +18 -0
- package/content/packages/github-action-builder/api/type/configinput.md +18 -0
- package/content/packages/github-action-builder/api/type/detectedentry.md +18 -0
- package/content/packages/github-action-builder/api/type/detectentriesresult.md +18 -0
- package/content/packages/github-action-builder/api/type/entries.md +18 -0
- package/content/packages/github-action-builder/api/type/githubactionbuildresult.md +18 -0
- package/content/packages/github-action-builder/api/type/loadconfigoptions.md +18 -0
- package/content/packages/github-action-builder/api/type/persisterror.md +18 -0
- package/content/packages/github-action-builder/api/type/persistlocaloptions.md +18 -0
- package/content/packages/github-action-builder/api/type/persistlocalresult.md +18 -0
- package/content/packages/github-action-builder/api/type/persistlocalrunneroptions.md +18 -0
- package/content/packages/github-action-builder/api/type/validateoptions.md +18 -0
- package/content/packages/github-action-builder/api/type/validationerror.md +20 -0
- package/content/packages/github-action-builder/api/type/validationerroritem.md +18 -0
- package/content/packages/github-action-builder/api/type/validationoptions.md +18 -0
- package/content/packages/github-action-builder/api/type/validationresult.md +18 -0
- package/content/packages/github-action-builder/api/type/validationwarning.md +18 -0
- package/content/packages/github-action-builder/api/variable/actionymlmissingbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/actionymlpatherrorbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/actionymlresultschema.md +33 -0
- package/content/packages/github-action-builder/api/variable/actionymlschemaerrorbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/actionymlsyntaxerrorbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/applayer.md +38 -0
- package/content/packages/github-action-builder/api/variable/buildfailedbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/buildlayer.md +18 -0
- package/content/packages/github-action-builder/api/variable/buildoptionsschema.md +31 -0
- package/content/packages/github-action-builder/api/variable/buildresultschema.md +32 -0
- package/content/packages/github-action-builder/api/variable/buildrunneroptionsschema.md +21 -0
- package/content/packages/github-action-builder/api/variable/buildservice.md +18 -0
- package/content/packages/github-action-builder/api/variable/bundlefailedbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/bundleresultschema.md +27 -0
- package/content/packages/github-action-builder/api/variable/bundlestatsschema.md +23 -0
- package/content/packages/github-action-builder/api/variable/cleanerrorbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/configinputschema.md +41 -0
- package/content/packages/github-action-builder/api/variable/configinvalidbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/configlayer.md +18 -0
- package/content/packages/github-action-builder/api/variable/configloadfailedbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/confignotfoundbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/configschema.md +59 -0
- package/content/packages/github-action-builder/api/variable/configservice.md +18 -0
- package/content/packages/github-action-builder/api/variable/detectedentryschema.md +22 -0
- package/content/packages/github-action-builder/api/variable/detectentriesresultschema.md +25 -0
- package/content/packages/github-action-builder/api/variable/entriesschema.md +25 -0
- package/content/packages/github-action-builder/api/variable/entryfilemissingbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/githubactionbuildresultschema.md +60 -0
- package/content/packages/github-action-builder/api/variable/loadconfigoptionsschema.md +21 -0
- package/content/packages/github-action-builder/api/variable/mainentrymissingbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/persistlocalerrorbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/persistlocallayer.md +18 -0
- package/content/packages/github-action-builder/api/variable/persistlocaloptionsschema.md +28 -0
- package/content/packages/github-action-builder/api/variable/persistlocalresultschema.md +25 -0
- package/content/packages/github-action-builder/api/variable/persistlocalrunneroptionsschema.md +20 -0
- package/content/packages/github-action-builder/api/variable/persistlocalservice.md +18 -0
- package/content/packages/github-action-builder/api/variable/validateoptionsschema.md +21 -0
- package/content/packages/github-action-builder/api/variable/validationerrorschema.md +23 -0
- package/content/packages/github-action-builder/api/variable/validationfailedbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/validationlayer.md +18 -0
- package/content/packages/github-action-builder/api/variable/validationoptionsschema.md +24 -0
- package/content/packages/github-action-builder/api/variable/validationresultschema.md +32 -0
- package/content/packages/github-action-builder/api/variable/validationservice.md +18 -0
- package/content/packages/github-action-builder/api/variable/validationwarningschema.md +23 -0
- package/content/packages/github-action-builder/api/variable/workerentryinvalidnamebase.md +20 -0
- package/content/packages/github-action-builder/api/variable/workerentrymissingbase.md +20 -0
- package/content/packages/github-action-builder/api/variable/writeerrorbase.md +20 -0
- package/content/packages/github-action-builder/api.md +125 -0
- package/content/packages/github-action-effects/api/class/actioncache.md +18 -0
- package/content/packages/github-action-effects/api/class/actioncacheerror.md +44 -0
- package/content/packages/github-action-effects/api/class/actionenvironment.md +18 -0
- package/content/packages/github-action-effects/api/class/actionenvironmenterror.md +37 -0
- package/content/packages/github-action-effects/api/class/actioninputerror.md +44 -0
- package/content/packages/github-action-effects/api/class/actionlogger.md +18 -0
- package/content/packages/github-action-effects/api/class/actionoutputerror.md +37 -0
- package/content/packages/github-action-effects/api/class/actionoutputs.md +18 -0
- package/content/packages/github-action-effects/api/class/actionstate.md +18 -0
- package/content/packages/github-action-effects/api/class/actionstateerror.md +44 -0
- package/content/packages/github-action-effects/api/class/artifact.md +18 -0
- package/content/packages/github-action-effects/api/class/artifacterror.md +53 -0
- package/content/packages/github-action-effects/api/class/attest.md +18 -0
- package/content/packages/github-action-effects/api/class/attesterror.md +42 -0
- package/content/packages/github-action-effects/api/class/blobstore.md +18 -0
- package/content/packages/github-action-effects/api/class/blobstoreerror.md +44 -0
- package/content/packages/github-action-effects/api/class/changesetanalyzer.md +18 -0
- package/content/packages/github-action-effects/api/class/changeseterror.md +37 -0
- package/content/packages/github-action-effects/api/class/checkrun.md +18 -0
- package/content/packages/github-action-effects/api/class/checkrunerror.md +44 -0
- package/content/packages/github-action-effects/api/class/commandrunner.md +18 -0
- package/content/packages/github-action-effects/api/class/commandrunnererror.md +73 -0
- package/content/packages/github-action-effects/api/class/configloader.md +18 -0
- package/content/packages/github-action-effects/api/class/configloadererror.md +44 -0
- package/content/packages/github-action-effects/api/class/dryrun.md +18 -0
- package/content/packages/github-action-effects/api/class/gitbranch.md +18 -0
- package/content/packages/github-action-effects/api/class/gitbrancherror.md +44 -0
- package/content/packages/github-action-effects/api/class/gitcommit.md +18 -0
- package/content/packages/github-action-effects/api/class/gitcommiterror.md +37 -0
- package/content/packages/github-action-effects/api/class/githubapp.md +18 -0
- package/content/packages/github-action-effects/api/class/githubapperror.md +37 -0
- package/content/packages/github-action-effects/api/class/githubartifactmetadata.md +18 -0
- package/content/packages/github-action-effects/api/class/githubartifactmetadataerror.md +44 -0
- package/content/packages/github-action-effects/api/class/githubclient.md +18 -0
- package/content/packages/github-action-effects/api/class/githubclienterror.md +60 -0
- package/content/packages/github-action-effects/api/class/githubcommit.md +18 -0
- package/content/packages/github-action-effects/api/class/githubcommiterror.md +44 -0
- package/content/packages/github-action-effects/api/class/githubcontent.md +18 -0
- package/content/packages/github-action-effects/api/class/githubcontenterror.md +44 -0
- package/content/packages/github-action-effects/api/class/githubgraphql.md +18 -0
- package/content/packages/github-action-effects/api/class/githubgraphqlerror.md +48 -0
- package/content/packages/github-action-effects/api/class/githubissue.md +18 -0
- package/content/packages/github-action-effects/api/class/githubissueerror.md +51 -0
- package/content/packages/github-action-effects/api/class/githubrelease.md +18 -0
- package/content/packages/github-action-effects/api/class/githubreleaseerror.md +51 -0
- package/content/packages/github-action-effects/api/class/gittag.md +18 -0
- package/content/packages/github-action-effects/api/class/gittagerror.md +44 -0
- package/content/packages/github-action-effects/api/class/glob.md +18 -0
- package/content/packages/github-action-effects/api/class/globerror.md +44 -0
- package/content/packages/github-action-effects/api/class/intotostatement.md +18 -0
- package/content/packages/github-action-effects/api/class/intotosubject.md +18 -0
- package/content/packages/github-action-effects/api/class/ioerror.md +44 -0
- package/content/packages/github-action-effects/api/class/npmregistry.md +18 -0
- package/content/packages/github-action-effects/api/class/npmregistryerror.md +50 -0
- package/content/packages/github-action-effects/api/class/octokitauthapp.md +18 -0
- package/content/packages/github-action-effects/api/class/oidctokenerror.md +42 -0
- package/content/packages/github-action-effects/api/class/oidctokenissuer.md +18 -0
- package/content/packages/github-action-effects/api/class/packagemanageradapter.md +18 -0
- package/content/packages/github-action-effects/api/class/packagemanagererror.md +44 -0
- package/content/packages/github-action-effects/api/class/packagepublish.md +18 -0
- package/content/packages/github-action-effects/api/class/packagepublisherror.md +68 -0
- package/content/packages/github-action-effects/api/class/pullrequest.md +18 -0
- package/content/packages/github-action-effects/api/class/pullrequestcomment.md +18 -0
- package/content/packages/github-action-effects/api/class/pullrequestcommenterror.md +44 -0
- package/content/packages/github-action-effects/api/class/pullrequesterror.md +44 -0
- package/content/packages/github-action-effects/api/class/ratelimiter.md +18 -0
- package/content/packages/github-action-effects/api/class/ratelimiterror.md +51 -0
- package/content/packages/github-action-effects/api/class/runtimeenvironmenterror.md +37 -0
- package/content/packages/github-action-effects/api/class/sbom.md +18 -0
- package/content/packages/github-action-effects/api/class/sbomerror.md +42 -0
- package/content/packages/github-action-effects/api/class/semverresolvererror.md +44 -0
- package/content/packages/github-action-effects/api/class/sigstorebundle.md +18 -0
- package/content/packages/github-action-effects/api/class/sigstoresigner.md +18 -0
- package/content/packages/github-action-effects/api/class/sigstoresignererror.md +42 -0
- package/content/packages/github-action-effects/api/class/slsaerror.md +42 -0
- package/content/packages/github-action-effects/api/class/tokenpermissionchecker.md +18 -0
- package/content/packages/github-action-effects/api/class/tokenpermissionerror.md +58 -0
- package/content/packages/github-action-effects/api/class/toolinstaller.md +18 -0
- package/content/packages/github-action-effects/api/class/toolinstallererror.md +58 -0
- package/content/packages/github-action-effects/api/class/workflowdispatch.md +18 -0
- package/content/packages/github-action-effects/api/class/workflowdispatcherror.md +44 -0
- package/content/packages/github-action-effects/api/class/workspacedetector.md +18 -0
- package/content/packages/github-action-effects/api/class/workspacedetectorerror.md +35 -0
- package/content/packages/github-action-effects/api/function/attesttestfulllayer.md +19 -0
- package/content/packages/github-action-effects/api/function/buildslsaprovenancepredicate.md +23 -0
- package/content/packages/github-action-effects/api/function/buildstatement.md +29 -0
- package/content/packages/github-action-effects/api/function/decodejwtclaims.md +18 -0
- package/content/packages/github-action-effects/api/function/dryrunlive.md +18 -0
- package/content/packages/github-action-effects/api/function/generatepackageviewurl.md +27 -0
- package/content/packages/github-action-effects/api/function/getregistrydisplayname.md +26 -0
- package/content/packages/github-action-effects/api/function/getregistrytype.md +26 -0
- package/content/packages/github-action-effects/api/function/iscustomregistry.md +26 -0
- package/content/packages/github-action-effects/api/function/isgithubpackagesregistry.md +26 -0
- package/content/packages/github-action-effects/api/function/isjsrregistry.md +26 -0
- package/content/packages/github-action-effects/api/function/isnpmregistry.md +26 -0
- package/content/packages/github-action-effects/api/function/makeattestteststate.md +18 -0
- package/content/packages/github-action-effects/api/function/makesbomteststate.md +18 -0
- package/content/packages/github-action-effects/api/function/makesigstoresignerlive.md +18 -0
- package/content/packages/github-action-effects/api/function/npmpurl.md +18 -0
- package/content/packages/github-action-effects/api/function/resilienceschedule.md +18 -0
- package/content/packages/github-action-effects/api/function/s3blobstorelive.md +18 -0
- package/content/packages/github-action-effects/api/function/savetoken.md +18 -0
- package/content/packages/github-action-effects/api/function/serializestatement.md +18 -0
- package/content/packages/github-action-effects/api/function/subject.md +23 -0
- package/content/packages/github-action-effects/api/function/tokenpermissioncheckerlive.md +18 -0
- package/content/packages/github-action-effects/api/interface/accumulateresult.md +35 -0
- package/content/packages/github-action-effects/api/interface/actioncacheteststate.md +26 -0
- package/content/packages/github-action-effects/api/interface/actionloggerteststate.md +59 -0
- package/content/packages/github-action-effects/api/interface/actionoutputsteststate.md +56 -0
- package/content/packages/github-action-effects/api/interface/actionrunoptions.md +28 -0
- package/content/packages/github-action-effects/api/interface/actionstateteststate.md +28 -0
- package/content/packages/github-action-effects/api/interface/annotationproperties.md +68 -0
- package/content/packages/github-action-effects/api/interface/appauth.md +44 -0
- package/content/packages/github-action-effects/api/interface/artifactitem.md +44 -0
- package/content/packages/github-action-effects/api/interface/artifactteststate.md +38 -0
- package/content/packages/github-action-effects/api/interface/attestationlistentry.md +36 -0
- package/content/packages/github-action-effects/api/interface/attestationrecord.md +44 -0
- package/content/packages/github-action-effects/api/interface/attestinput.md +38 -0
- package/content/packages/github-action-effects/api/interface/attestteststate.md +111 -0
- package/content/packages/github-action-effects/api/interface/blobstoreteststate.md +26 -0
- package/content/packages/github-action-effects/api/interface/botidentity.md +32 -0
- package/content/packages/github-action-effects/api/interface/changesetanalyzerteststate.md +32 -0
- package/content/packages/github-action-effects/api/interface/checkrunannotation.md +56 -0
- package/content/packages/github-action-effects/api/interface/checkrundata.md +50 -0
- package/content/packages/github-action-effects/api/interface/checkrunoutput.md +44 -0
- package/content/packages/github-action-effects/api/interface/checkrunrecord.md +62 -0
- package/content/packages/github-action-effects/api/interface/checkrunteststate.md +32 -0
- package/content/packages/github-action-effects/api/interface/commandresponse.md +38 -0
- package/content/packages/github-action-effects/api/interface/commentrecord.md +32 -0
- package/content/packages/github-action-effects/api/interface/commitcomparison.md +32 -0
- package/content/packages/github-action-effects/api/interface/commitdetail.md +28 -0
- package/content/packages/github-action-effects/api/interface/commitfile.md +32 -0
- package/content/packages/github-action-effects/api/interface/commitsummary.md +38 -0
- package/content/packages/github-action-effects/api/interface/configloaderteststate.md +28 -0
- package/content/packages/github-action-effects/api/interface/dispatchrecord.md +38 -0
- package/content/packages/github-action-effects/api/interface/downloadoptions.md +28 -0
- package/content/packages/github-action-effects/api/interface/dryrunresult.md +60 -0
- package/content/packages/github-action-effects/api/interface/dryrunteststate.md +26 -0
- package/content/packages/github-action-effects/api/interface/execoptions.md +52 -0
- package/content/packages/github-action-effects/api/interface/execoutput.md +38 -0
- package/content/packages/github-action-effects/api/interface/findby.md +44 -0
- package/content/packages/github-action-effects/api/interface/gitbranchteststate.md +26 -0
- package/content/packages/github-action-effects/api/interface/gitcommitteststate.md +51 -0
- package/content/packages/github-action-effects/api/interface/githubappteststate.md +54 -0
- package/content/packages/github-action-effects/api/interface/githubartifactmetadatateststate.md +36 -0
- package/content/packages/github-action-effects/api/interface/githubclientteststate.md +47 -0
- package/content/packages/github-action-effects/api/interface/githubcommitteststate.md +52 -0
- package/content/packages/github-action-effects/api/interface/githubcontentteststate.md +28 -0
- package/content/packages/github-action-effects/api/interface/githubgraphqlteststate.md +52 -0
- package/content/packages/github-action-effects/api/interface/githubissueteststate.md +53 -0
- package/content/packages/github-action-effects/api/interface/githubreleaseteststate.md +52 -0
- package/content/packages/github-action-effects/api/interface/gittagteststate.md +41 -0
- package/content/packages/github-action-effects/api/interface/globoptions.md +52 -0
- package/content/packages/github-action-effects/api/interface/globteststate.md +32 -0
- package/content/packages/github-action-effects/api/interface/hashfilesoptions.md +36 -0
- package/content/packages/github-action-effects/api/interface/idempotentpublishinput.md +66 -0
- package/content/packages/github-action-effects/api/interface/idempotentpublishresult.md +48 -0
- package/content/packages/github-action-effects/api/interface/inflightpackage.md +38 -0
- package/content/packages/github-action-effects/api/interface/installoptions.md +36 -0
- package/content/packages/github-action-effects/api/interface/issuedata.md +60 -0
- package/content/packages/github-action-effects/api/interface/npmregistryteststate.md +32 -0
- package/content/packages/github-action-effects/api/interface/oidcclaims.md +98 -0
- package/content/packages/github-action-effects/api/interface/packagemanageradapterteststate.md +47 -0
- package/content/packages/github-action-effects/api/interface/packagepublishteststate.md +121 -0
- package/content/packages/github-action-effects/api/interface/packresult.md +84 -0
- package/content/packages/github-action-effects/api/interface/polloptions.md +36 -0
- package/content/packages/github-action-effects/api/interface/provenanceattestationinput.md +44 -0
- package/content/packages/github-action-effects/api/interface/provisionoptions.md +52 -0
- package/content/packages/github-action-effects/api/interface/publishtarballresult.md +28 -0
- package/content/packages/github-action-effects/api/interface/pullrequestcommentteststate.md +35 -0
- package/content/packages/github-action-effects/api/interface/pullrequestfile.md +32 -0
- package/content/packages/github-action-effects/api/interface/pullrequestinfo.md +106 -0
- package/content/packages/github-action-effects/api/interface/pullrequestlistoptions.md +60 -0
- package/content/packages/github-action-effects/api/interface/pullrequestrecord.md +74 -0
- package/content/packages/github-action-effects/api/interface/pullrequestteststate.md +54 -0
- package/content/packages/github-action-effects/api/interface/ratelimiterteststate.md +44 -0
- package/content/packages/github-action-effects/api/interface/registrytarget.md +52 -0
- package/content/packages/github-action-effects/api/interface/releaseasset.md +44 -0
- package/content/packages/github-action-effects/api/interface/releasedata.md +62 -0
- package/content/packages/github-action-effects/api/interface/report_2.md +76 -0
- package/content/packages/github-action-effects/api/interface/resilienceoptions.md +52 -0
- package/content/packages/github-action-effects/api/interface/resolveddependency.md +44 -0
- package/content/packages/github-action-effects/api/interface/restresponse.md +26 -0
- package/content/packages/github-action-effects/api/interface/s3blobstoreconfig.md +62 -0
- package/content/packages/github-action-effects/api/interface/sbomattestationinput.md +44 -0
- package/content/packages/github-action-effects/api/interface/sbomauthor.md +38 -0
- package/content/packages/github-action-effects/api/interface/sbomcontact.md +38 -0
- package/content/packages/github-action-effects/api/interface/sbominput.md +88 -0
- package/content/packages/github-action-effects/api/interface/sbomsupplier.md +44 -0
- package/content/packages/github-action-effects/api/interface/sbomteststate.md +52 -0
- package/content/packages/github-action-effects/api/interface/sigstoresignerconfig.md +32 -0
- package/content/packages/github-action-effects/api/interface/storagerecordinput.md +68 -0
- package/content/packages/github-action-effects/api/interface/tagref.md +34 -0
- package/content/packages/github-action-effects/api/interface/tokenpermissioncheckerteststate.md +32 -0
- package/content/packages/github-action-effects/api/interface/toolinstallerteststate.md +97 -0
- package/content/packages/github-action-effects/api/interface/uploadoptions.md +36 -0
- package/content/packages/github-action-effects/api/interface/uploadresult.md +32 -0
- package/content/packages/github-action-effects/api/interface/workflowdispatchteststate.md +40 -0
- package/content/packages/github-action-effects/api/interface/workflowrunstatus.md +32 -0
- package/content/packages/github-action-effects/api/interface/workspacedetectorteststate.md +32 -0
- package/content/packages/github-action-effects/api/namespace/step.md +16 -0
- package/content/packages/github-action-effects/api/type/actionloglevel.md +16 -0
- package/content/packages/github-action-effects/api/type/annotationlevel.md +18 -0
- package/content/packages/github-action-effects/api/type/bumptype.md +16 -0
- package/content/packages/github-action-effects/api/type/capturedoutput.md +16 -0
- package/content/packages/github-action-effects/api/type/changeset.md +16 -0
- package/content/packages/github-action-effects/api/type/changesetfile.md +16 -0
- package/content/packages/github-action-effects/api/type/checklistitem.md +16 -0
- package/content/packages/github-action-effects/api/type/checkrunconclusion.md +18 -0
- package/content/packages/github-action-effects/api/type/coreservices.md +18 -0
- package/content/packages/github-action-effects/api/type/cyclonedxbom.md +18 -0
- package/content/packages/github-action-effects/api/type/extrapermission.md +18 -0
- package/content/packages/github-action-effects/api/type/filechange.md +16 -0
- package/content/packages/github-action-effects/api/type/githubcontext.md +18 -0
- package/content/packages/github-action-effects/api/type/installationtoken.md +18 -0
- package/content/packages/github-action-effects/api/type/loglevelinput.md +16 -0
- package/content/packages/github-action-effects/api/type/npmpackageinfo.md +16 -0
- package/content/packages/github-action-effects/api/type/packagemanagerinfo.md +18 -0
- package/content/packages/github-action-effects/api/type/packagemanagername.md +18 -0
- package/content/packages/github-action-effects/api/type/permissioncheckresult.md +18 -0
- package/content/packages/github-action-effects/api/type/permissiongap.md +18 -0
- package/content/packages/github-action-effects/api/type/permissionlevel.md +18 -0
- package/content/packages/github-action-effects/api/type/ratelimitstatus.md +18 -0
- package/content/packages/github-action-effects/api/type/registrytype.md +18 -0
- package/content/packages/github-action-effects/api/type/runnercontext.md +18 -0
- package/content/packages/github-action-effects/api/type/status.md +16 -0
- package/content/packages/github-action-effects/api/type/treeentry.md +16 -0
- package/content/packages/github-action-effects/api/type/webhookpayload.md +18 -0
- package/content/packages/github-action-effects/api/type/workspaceinfo.md +16 -0
- package/content/packages/github-action-effects/api/type/workspacepackage.md +16 -0
- package/content/packages/github-action-effects/api/type/workspacetype.md +16 -0
- package/content/packages/github-action-effects/api/variable/action.md +41 -0
- package/content/packages/github-action-effects/api/variable/actioncachelive.md +18 -0
- package/content/packages/github-action-effects/api/variable/actioncachetest.md +29 -0
- package/content/packages/github-action-effects/api/variable/actionenvironmentlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/actionenvironmenttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/actioninput.md +31 -0
- package/content/packages/github-action-effects/api/variable/actionloggerlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/actionloggertest.md +29 -0
- package/content/packages/github-action-effects/api/variable/actionloglevel.md +18 -0
- package/content/packages/github-action-effects/api/variable/actionoutputslive.md +16 -0
- package/content/packages/github-action-effects/api/variable/actionoutputstest.md +29 -0
- package/content/packages/github-action-effects/api/variable/actionsconfigprovider.md +27 -0
- package/content/packages/github-action-effects/api/variable/actionslogger.md +18 -0
- package/content/packages/github-action-effects/api/variable/actionsruntime.md +36 -0
- package/content/packages/github-action-effects/api/variable/actionstatelive.md +16 -0
- package/content/packages/github-action-effects/api/variable/actionstatetest.md +29 -0
- package/content/packages/github-action-effects/api/variable/artifactlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/artifacttest.md +29 -0
- package/content/packages/github-action-effects/api/variable/attestlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/attesttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/automerge.md +21 -0
- package/content/packages/github-action-effects/api/variable/blobstoretest.md +21 -0
- package/content/packages/github-action-effects/api/variable/bumptype.md +18 -0
- package/content/packages/github-action-effects/api/variable/capturedoutput.md +21 -0
- package/content/packages/github-action-effects/api/variable/changeset.md +25 -0
- package/content/packages/github-action-effects/api/variable/changesetanalyzerlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/changesetanalyzertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/changesetfile.md +21 -0
- package/content/packages/github-action-effects/api/variable/checklistitem.md +21 -0
- package/content/packages/github-action-effects/api/variable/checkrunlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/checkruntest.md +21 -0
- package/content/packages/github-action-effects/api/variable/commandrunnerlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/commandrunnertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/configloaderlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/configloadertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/cyclonedx_bom.md +18 -0
- package/content/packages/github-action-effects/api/variable/dryruntest.md +24 -0
- package/content/packages/github-action-effects/api/variable/erroraccumulator.md +21 -0
- package/content/packages/github-action-effects/api/variable/extrapermission.md +21 -0
- package/content/packages/github-action-effects/api/variable/filechange.md +24 -0
- package/content/packages/github-action-effects/api/variable/filechangecontent.md +21 -0
- package/content/packages/github-action-effects/api/variable/filechangedeletion.md +21 -0
- package/content/packages/github-action-effects/api/variable/gitbranchlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/gitbranchtest.md +21 -0
- package/content/packages/github-action-effects/api/variable/gitcommitlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/gitcommittest.md +21 -0
- package/content/packages/github-action-effects/api/variable/github_build_type.md +18 -0
- package/content/packages/github-action-effects/api/variable/githubapplive.md +18 -0
- package/content/packages/github-action-effects/api/variable/githubapptest.md +21 -0
- package/content/packages/github-action-effects/api/variable/githubartifactmetadatalive.md +18 -0
- package/content/packages/github-action-effects/api/variable/githubartifactmetadatatest.md +24 -0
- package/content/packages/github-action-effects/api/variable/githubblobstorelive.md +18 -0
- package/content/packages/github-action-effects/api/variable/githubclientlive.md +26 -0
- package/content/packages/github-action-effects/api/variable/githubclienttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/githubcommitlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/githubcommittest.md +21 -0
- package/content/packages/github-action-effects/api/variable/githubcontentlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/githubcontenttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/githubcontext.md +35 -0
- package/content/packages/github-action-effects/api/variable/githubgraphqllive.md +18 -0
- package/content/packages/github-action-effects/api/variable/githubgraphqltest.md +24 -0
- package/content/packages/github-action-effects/api/variable/githubissuelive.md +16 -0
- package/content/packages/github-action-effects/api/variable/githubissuetest.md +24 -0
- package/content/packages/github-action-effects/api/variable/githubmarkdown.md +45 -0
- package/content/packages/github-action-effects/api/variable/githubreleaselive.md +16 -0
- package/content/packages/github-action-effects/api/variable/githubreleasetest.md +24 -0
- package/content/packages/github-action-effects/api/variable/githubtoken.md +27 -0
- package/content/packages/github-action-effects/api/variable/gittaglive.md +16 -0
- package/content/packages/github-action-effects/api/variable/gittagtest.md +24 -0
- package/content/packages/github-action-effects/api/variable/globlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/globtest.md +30 -0
- package/content/packages/github-action-effects/api/variable/in_toto_payload_type.md +18 -0
- package/content/packages/github-action-effects/api/variable/in_toto_statement_v1.md +18 -0
- package/content/packages/github-action-effects/api/variable/installationtoken.md +28 -0
- package/content/packages/github-action-effects/api/variable/ioutil.md +22 -0
- package/content/packages/github-action-effects/api/variable/loglevelinput.md +18 -0
- package/content/packages/github-action-effects/api/variable/npmpackageinfo.md +24 -0
- package/content/packages/github-action-effects/api/variable/npmregistrylive.md +18 -0
- package/content/packages/github-action-effects/api/variable/npmregistrytest.md +21 -0
- package/content/packages/github-action-effects/api/variable/octokitauthapplive.md +18 -0
- package/content/packages/github-action-effects/api/variable/oidctokenissuerlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/oidctokenissuertest.md +18 -0
- package/content/packages/github-action-effects/api/variable/packagemanageradapterlive.md +19 -0
- package/content/packages/github-action-effects/api/variable/packagemanageradaptertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/packagemanagerinfo.md +22 -0
- package/content/packages/github-action-effects/api/variable/packagemanagername.md +18 -0
- package/content/packages/github-action-effects/api/variable/packagepublishlive.md +19 -0
- package/content/packages/github-action-effects/api/variable/packagepublishtest.md +27 -0
- package/content/packages/github-action-effects/api/variable/pathutils.md +31 -0
- package/content/packages/github-action-effects/api/variable/permissioncheckresult.md +31 -0
- package/content/packages/github-action-effects/api/variable/permissiongap.md +22 -0
- package/content/packages/github-action-effects/api/variable/permissionlevel.md +18 -0
- package/content/packages/github-action-effects/api/variable/pullrequestcommentlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/pullrequestcommenttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/pullrequestlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/pullrequesttest.md +21 -0
- package/content/packages/github-action-effects/api/variable/ratelimiterlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/ratelimitertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/ratelimitstatus.md +23 -0
- package/content/packages/github-action-effects/api/variable/reportbuilder.md +33 -0
- package/content/packages/github-action-effects/api/variable/runnercontext.md +25 -0
- package/content/packages/github-action-effects/api/variable/sbomlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/sbomtest.md +21 -0
- package/content/packages/github-action-effects/api/variable/semverresolver.md +30 -0
- package/content/packages/github-action-effects/api/variable/sigstore_bundle_v0_3_media_type.md +18 -0
- package/content/packages/github-action-effects/api/variable/sigstore_oidc_audience.md +18 -0
- package/content/packages/github-action-effects/api/variable/sigstoresignerlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/sigstoresignertest.md +18 -0
- package/content/packages/github-action-effects/api/variable/slsa_provenance_v1.md +18 -0
- package/content/packages/github-action-effects/api/variable/spdx_v2_3.md +18 -0
- package/content/packages/github-action-effects/api/variable/status.md +18 -0
- package/content/packages/github-action-effects/api/variable/tokenpermissioncheckertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/toolinstallerlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/toolinstallertest.md +21 -0
- package/content/packages/github-action-effects/api/variable/treeentry.md +26 -0
- package/content/packages/github-action-effects/api/variable/treeentrycontent.md +22 -0
- package/content/packages/github-action-effects/api/variable/treeentrydeletion.md +22 -0
- package/content/packages/github-action-effects/api/variable/webhookpayload.md +51 -0
- package/content/packages/github-action-effects/api/variable/workflowdispatchlive.md +16 -0
- package/content/packages/github-action-effects/api/variable/workflowdispatchtest.md +21 -0
- package/content/packages/github-action-effects/api/variable/workspacedetectorlive.md +18 -0
- package/content/packages/github-action-effects/api/variable/workspacedetectortest.md +21 -0
- package/content/packages/github-action-effects/api/variable/workspaceinfo.md +22 -0
- package/content/packages/github-action-effects/api/variable/workspacepackage.md +24 -0
- package/content/packages/github-action-effects/api/variable/workspacetype.md +18 -0
- package/content/packages/github-action-effects/api.md +386 -0
- package/content/packages/rspress-builder/api/function/build.md +18 -0
- package/content/packages/rspress-builder/api/function/defineplugin.md +18 -0
- package/content/packages/rspress-builder/api/interface/rspressbundleoptions.md +28 -0
- package/content/packages/rspress-builder/api/interface/rspresspluginoptions.md +76 -0
- package/content/packages/rspress-builder/api.md +22 -0
- package/content/packages/silk-effects/api/class/analyzedworkspace.md +121 -0
- package/content/packages/silk-effects/api/class/biomeschemasync.md +33 -0
- package/content/packages/silk-effects/api/class/biomesyncerror.md +41 -0
- package/content/packages/silk-effects/api/class/changesetconfig.md +28 -0
- package/content/packages/silk-effects/api/class/changesetconfigerror.md +41 -0
- package/content/packages/silk-effects/api/class/changesetconfigreader.md +33 -0
- package/content/packages/silk-effects/api/class/configdiscovery.md +33 -0
- package/content/packages/silk-effects/api/class/confignotfounderror.md +41 -0
- package/content/packages/silk-effects/api/class/managedsection.md +18 -0
- package/content/packages/silk-effects/api/class/resolvedtool.md +62 -0
- package/content/packages/silk-effects/api/class/sectionblock.md +95 -0
- package/content/packages/silk-effects/api/class/sectiondefinition.md +104 -0
- package/content/packages/silk-effects/api/class/sectionparseerror.md +41 -0
- package/content/packages/silk-effects/api/class/sectionvalidationerror.md +41 -0
- package/content/packages/silk-effects/api/class/sectionwriteerror.md +41 -0
- package/content/packages/silk-effects/api/class/shellsectiondefinition.md +56 -0
- package/content/packages/silk-effects/api/class/silkpublishability.md +46 -0
- package/content/packages/silk-effects/api/class/silkpublishconfig.md +18 -0
- package/content/packages/silk-effects/api/class/silkworkspaceanalyzer.md +33 -0
- package/content/packages/silk-effects/api/class/tagformaterror.md +48 -0
- package/content/packages/silk-effects/api/class/tagstrategy.md +32 -0
- package/content/packages/silk-effects/api/class/toolcommand.md +76 -0
- package/content/packages/silk-effects/api/class/tooldefinition.md +73 -0
- package/content/packages/silk-effects/api/class/tooldiscovery.md +35 -0
- package/content/packages/silk-effects/api/class/toolnotfounderror.md +39 -0
- package/content/packages/silk-effects/api/class/toolresolutionerror.md +39 -0
- package/content/packages/silk-effects/api/class/toolversionmismatcherror.md +46 -0
- package/content/packages/silk-effects/api/class/versioningdetectionerror.md +34 -0
- package/content/packages/silk-effects/api/class/versioningstrategy.md +34 -0
- package/content/packages/silk-effects/api/class/workspaceanalysis.md +94 -0
- package/content/packages/silk-effects/api/class/workspaceanalysiserror.md +41 -0
- package/content/packages/silk-effects/api/function/buildschemaurl.md +26 -0
- package/content/packages/silk-effects/api/function/extractsemver.md +26 -0
- package/content/packages/silk-effects/api/function/readtargetsbinding.md +23 -0
- package/content/packages/silk-effects/api/function/savvybasepreamble.md +22 -0
- package/content/packages/silk-effects/api/function/savvyhookshygiene.md +22 -0
- package/content/packages/silk-effects/api/function/savvytoolsection.md +37 -0
- package/content/packages/silk-effects/api/interface/commitlintplugin.md +26 -0
- package/content/packages/silk-effects/api/interface/commitlintuserconfig.md +76 -0
- package/content/packages/silk-effects/api/interface/promptconfig.md +38 -0
- package/content/packages/silk-effects/api/interface/promptsettings.md +32 -0
- package/content/packages/silk-effects/api/interface/publishablepackage.md +44 -0
- package/content/packages/silk-effects/api/interface/rawpackagejson.md +44 -0
- package/content/packages/silk-effects/api/interface/rawpublishconfig.md +44 -0
- package/content/packages/silk-effects/api/interface/rawtargetobject.md +44 -0
- package/content/packages/silk-effects/api/interface/rulesconfig.md +26 -0
- package/content/packages/silk-effects/api/interface/targetbinding.md +52 -0
- package/content/packages/silk-effects/api/interface/targetgroupbinding.md +44 -0
- package/content/packages/silk-effects/api/interface/targetsbinding.md +32 -0
- package/content/packages/silk-effects/api/namespace/changesets.md +16 -0
- package/content/packages/silk-effects/api/namespace/commitlint.md +16 -0
- package/content/packages/silk-effects/api/namespace/lint.md +16 -0
- package/content/packages/silk-effects/api/namespace/turbo.md +16 -0
- package/content/packages/silk-effects/api/type/biomesyncoptions.md +16 -0
- package/content/packages/silk-effects/api/type/biomesyncresult.md +16 -0
- package/content/packages/silk-effects/api/type/changesetconfigfile.md +16 -0
- package/content/packages/silk-effects/api/type/changesetmode.md +18 -0
- package/content/packages/silk-effects/api/type/checkresult.md +16 -0
- package/content/packages/silk-effects/api/type/checkresultdefinition.md +24 -0
- package/content/packages/silk-effects/api/type/commentstyle.md +16 -0
- package/content/packages/silk-effects/api/type/configdiscoveryoptions.md +16 -0
- package/content/packages/silk-effects/api/type/configlocation.md +16 -0
- package/content/packages/silk-effects/api/type/configsource.md +16 -0
- package/content/packages/silk-effects/api/type/rawpublishtargets.md +18 -0
- package/content/packages/silk-effects/api/type/rawtargetvalue.md +18 -0
- package/content/packages/silk-effects/api/type/resolutionpolicy.md +16 -0
- package/content/packages/silk-effects/api/type/resolutionpolicydefinition.md +23 -0
- package/content/packages/silk-effects/api/type/ruleapplicability.md +18 -0
- package/content/packages/silk-effects/api/type/ruleconfigtuple.md +18 -0
- package/content/packages/silk-effects/api/type/ruleseverity.md +18 -0
- package/content/packages/silk-effects/api/type/sectiondiff.md +16 -0
- package/content/packages/silk-effects/api/type/sectiondiffdefinition.md +24 -0
- package/content/packages/silk-effects/api/type/silkchangesetconfigfile.md +16 -0
- package/content/packages/silk-effects/api/type/sourcerequirement.md +16 -0
- package/content/packages/silk-effects/api/type/sourcerequirementdefinition.md +23 -0
- package/content/packages/silk-effects/api/type/syncresult.md +16 -0
- package/content/packages/silk-effects/api/type/syncresultdefinition.md +24 -0
- package/content/packages/silk-effects/api/type/tagstrategytype.md +16 -0
- package/content/packages/silk-effects/api/type/toolsource.md +16 -0
- package/content/packages/silk-effects/api/type/versionextractor.md +16 -0
- package/content/packages/silk-effects/api/type/versionextractordefinition.md +28 -0
- package/content/packages/silk-effects/api/type/versioningstrategyresult.md +16 -0
- package/content/packages/silk-effects/api/type/versioningstrategytype.md +16 -0
- package/content/packages/silk-effects/api/variable/biomeschemasynclive.md +18 -0
- package/content/packages/silk-effects/api/variable/biomesyncoptions.md +23 -0
- package/content/packages/silk-effects/api/variable/biomesyncresult.md +22 -0
- package/content/packages/silk-effects/api/variable/changesetconfigfile.md +36 -0
- package/content/packages/silk-effects/api/variable/changesetconfiglive.md +18 -0
- package/content/packages/silk-effects/api/variable/changesetconfigreaderlive.md +18 -0
- package/content/packages/silk-effects/api/variable/checkresult.md +70 -0
- package/content/packages/silk-effects/api/variable/commentstyle.md +18 -0
- package/content/packages/silk-effects/api/variable/configdiscoverylive.md +18 -0
- package/content/packages/silk-effects/api/variable/configdiscoveryoptions.md +21 -0
- package/content/packages/silk-effects/api/variable/configlocation.md +21 -0
- package/content/packages/silk-effects/api/variable/configsource.md +18 -0
- package/content/packages/silk-effects/api/variable/managedsectionlive.md +18 -0
- package/content/packages/silk-effects/api/variable/publishabilitydetectoradaptivelive.md +19 -0
- package/content/packages/silk-effects/api/variable/resolutionpolicy.md +92 -0
- package/content/packages/silk-effects/api/variable/savvybasesection.md +25 -0
- package/content/packages/silk-effects/api/variable/savvyhookssection.md +18 -0
- package/content/packages/silk-effects/api/variable/sectiondiff.md +70 -0
- package/content/packages/silk-effects/api/variable/silkchangesetconfigfile.md +40 -0
- package/content/packages/silk-effects/api/variable/silkpublishabilitydetectorlive.md +18 -0
- package/content/packages/silk-effects/api/variable/silkworkspaceanalyzerlive.md +20 -0
- package/content/packages/silk-effects/api/variable/sourcerequirement.md +92 -0
- package/content/packages/silk-effects/api/variable/syncresult.md +81 -0
- package/content/packages/silk-effects/api/variable/tagstrategylive.md +18 -0
- package/content/packages/silk-effects/api/variable/tagstrategytype.md +18 -0
- package/content/packages/silk-effects/api/variable/tooldiscoverylive.md +19 -0
- package/content/packages/silk-effects/api/variable/toolsource.md +18 -0
- package/content/packages/silk-effects/api/variable/versionextractor.md +99 -0
- package/content/packages/silk-effects/api/variable/versioningstrategylive.md +18 -0
- package/content/packages/silk-effects/api/variable/versioningstrategyresult.md +22 -0
- package/content/packages/silk-effects/api/variable/versioningstrategytype.md +18 -0
- package/content/packages/silk-effects/api.md +144 -0
- package/content/packages/templates/api/function/createbiome.md +26 -0
- package/content/packages/templates/api/function/createchangeset.md +26 -0
- package/content/packages/templates/api/function/creategitignore.md +26 -0
- package/content/packages/templates/api/function/createpackagejson.md +26 -0
- package/content/packages/templates/api/function/createpnpmworkspace.md +26 -0
- package/content/packages/templates/api/function/createreadme.md +26 -0
- package/content/packages/templates/api/function/createtsconfig.md +26 -0
- package/content/packages/templates/api/function/createturboroot.md +26 -0
- package/content/packages/templates/api/function/createturboworkspace.md +26 -0
- package/content/packages/templates/api/function/createvscode.md +26 -0
- package/content/packages/templates/api/function/createworkspace.md +26 -0
- package/content/packages/templates/api/interface/templateentry.md +44 -0
- package/content/packages/templates/api/type/biomeoptionstype.md +18 -0
- package/content/packages/templates/api/type/changesetoptionstype.md +18 -0
- package/content/packages/templates/api/type/gitignoreoptionstype.md +18 -0
- package/content/packages/templates/api/type/packagejsonoptionstype.md +18 -0
- package/content/packages/templates/api/type/pnpmworkspaceoptionstype.md +18 -0
- package/content/packages/templates/api/type/readmeoptionstype.md +18 -0
- package/content/packages/templates/api/type/template.md +18 -0
- package/content/packages/templates/api/type/tsconfigoptionstype.md +18 -0
- package/content/packages/templates/api/type/turborootoptionstype.md +18 -0
- package/content/packages/templates/api/type/turboworkspaceoptionstype.md +18 -0
- package/content/packages/templates/api/type/updatetemplate.md +18 -0
- package/content/packages/templates/api/type/vscodeoptionstype.md +18 -0
- package/content/packages/templates/api/type/workspaceoptionstype.md +18 -0
- package/content/packages/templates/api/variable/biomeoptions.md +22 -0
- package/content/packages/templates/api/variable/changesetoptions.md +29 -0
- package/content/packages/templates/api/variable/gitignoreoptions.md +27 -0
- package/content/packages/templates/api/variable/packagejsonoptions.md +60 -0
- package/content/packages/templates/api/variable/pnpmworkspaceoptions.md +23 -0
- package/content/packages/templates/api/variable/readmeoptions.md +21 -0
- package/content/packages/templates/api/variable/tsconfigoptions.md +26 -0
- package/content/packages/templates/api/variable/turborootoptions.md +25 -0
- package/content/packages/templates/api/variable/turboworkspaceoptions.md +20 -0
- package/content/packages/templates/api/variable/vscodeoptions.md +25 -0
- package/content/packages/templates/api/variable/workspaceoptions.md +33 -0
- package/content/packages/templates/api.md +60 -0
- package/content/packages/tsdown-plugins/api/class/buildcollector.md +62 -0
- package/content/packages/tsdown-plugins/api/class/buildcollectortag.md +16 -0
- package/content/packages/tsdown-plugins/api/class/buildreport.md +16 -0
- package/content/packages/tsdown-plugins/api/class/configvalidationerror.md +41 -0
- package/content/packages/tsdown-plugins/api/class/configvalidator.md +18 -0
- package/content/packages/tsdown-plugins/api/class/diagnosticentry.md +18 -0
- package/content/packages/tsdown-plugins/api/class/emittedfile.md +18 -0
- package/content/packages/tsdown-plugins/api/class/environmentdetector.md +16 -0
- package/content/packages/tsdown-plugins/api/class/executorresolver.md +16 -0
- package/content/packages/tsdown-plugins/api/class/formatselector.md +16 -0
- package/content/packages/tsdown-plugins/api/class/metagenerationerror.md +41 -0
- package/content/packages/tsdown-plugins/api/class/outputrenderer.md +16 -0
- package/content/packages/tsdown-plugins/api/class/passreport.md +18 -0
- package/content/packages/tsdown-plugins/api/class/reporttimings.md +16 -0
- package/content/packages/tsdown-plugins/api/class/targetgroupreport.md +16 -0
- package/content/packages/tsdown-plugins/api/class/tsconfigresolver.md +84 -0
- package/content/packages/tsdown-plugins/api/function/ambientoutname.md +18 -0
- package/content/packages/tsdown-plugins/api/function/analyzereexportbarrel.md +18 -0
- package/content/packages/tsdown-plugins/api/function/applysubdirmetaentries.md +21 -0
- package/content/packages/tsdown-plugins/api/function/assertnoentrycollisions.md +18 -0
- package/content/packages/tsdown-plugins/api/function/buildemittedmanifest.md +18 -0
- package/content/packages/tsdown-plugins/api/function/buildmetricsplugin.md +18 -0
- package/content/packages/tsdown-plugins/api/function/buildresolvedtsconfig.md +18 -0
- package/content/packages/tsdown-plugins/api/function/buildtargetgroups.md +18 -0
- package/content/packages/tsdown-plugins/api/function/cjsdefaultinterop.md +18 -0
- package/content/packages/tsdown-plugins/api/function/classifydtsexport.md +18 -0
- package/content/packages/tsdown-plugins/api/function/collectexportnames.md +18 -0
- package/content/packages/tsdown-plugins/api/function/computeexefilename.md +18 -0
- package/content/packages/tsdown-plugins/api/function/copyambientdts.md +18 -0
- package/content/packages/tsdown-plugins/api/function/copypublicdir.md +18 -0
- package/content/packages/tsdown-plugins/api/function/createtimer.md +18 -0
- package/content/packages/tsdown-plugins/api/function/createtsdownlogger.md +18 -0
- package/content/packages/tsdown-plugins/api/function/declarationext.md +18 -0
- package/content/packages/tsdown-plugins/api/function/defaultmanifesttransform.md +20 -0
- package/content/packages/tsdown-plugins/api/function/deriveexportpaths.md +18 -0
- package/content/packages/tsdown-plugins/api/function/derivetargetgroupoptions.md +18 -0
- package/content/packages/tsdown-plugins/api/function/emitmanifest.md +18 -0
- package/content/packages/tsdown-plugins/api/function/extractambientdts.md +18 -0
- package/content/packages/tsdown-plugins/api/function/extractentries.md +16 -0
- package/content/packages/tsdown-plugins/api/function/findrelativespecifiers.md +21 -0
- package/content/packages/tsdown-plugins/api/function/flattenissues.md +21 -0
- package/content/packages/tsdown-plugins/api/function/formattime.md +16 -0
- package/content/packages/tsdown-plugins/api/function/generatemeta.md +18 -0
- package/content/packages/tsdown-plugins/api/function/istargetobject.md +18 -0
- package/content/packages/tsdown-plugins/api/function/mixeddtsexporterror.md +18 -0
- package/content/packages/tsdown-plugins/api/function/nodebuiltindefaultinterop.md +18 -0
- package/content/packages/tsdown-plugins/api/function/normalizebinpaths.md +18 -0
- package/content/packages/tsdown-plugins/api/function/normalizeexeoptions.md +18 -0
- package/content/packages/tsdown-plugins/api/function/normalizeloosefiles.md +18 -0
- package/content/packages/tsdown-plugins/api/function/normalizemetaoptions.md +21 -0
- package/content/packages/tsdown-plugins/api/function/packagejsonentries.md +18 -0
- package/content/packages/tsdown-plugins/api/function/readtsconfigjsx.md +18 -0
- package/content/packages/tsdown-plugins/api/function/removedeclarationmaps.md +18 -0
- package/content/packages/tsdown-plugins/api/function/renderreexportstub.md +22 -0
- package/content/packages/tsdown-plugins/api/function/renderreport.md +17 -0
- package/content/packages/tsdown-plugins/api/function/resolvejsxconfig.md +18 -0
- package/content/packages/tsdown-plugins/api/function/resolvemanifest.md +18 -0
- package/content/packages/tsdown-plugins/api/function/resolvenextversions.md +18 -0
- package/content/packages/tsdown-plugins/api/function/resolveportabletsconfig.md +27 -0
- package/content/packages/tsdown-plugins/api/function/resolvetargets.md +21 -0
- package/content/packages/tsdown-plugins/api/function/rewritemetaversions.md +18 -0
- package/content/packages/tsdown-plugins/api/function/runexebuild.md +18 -0
- package/content/packages/tsdown-plugins/api/function/runmetapass.md +18 -0
- package/content/packages/tsdown-plugins/api/function/serializeissues.md +18 -0
- package/content/packages/tsdown-plugins/api/function/transformbin.md +18 -0
- package/content/packages/tsdown-plugins/api/function/transformexports.md +18 -0
- package/content/packages/tsdown-plugins/api/function/transformmanifest.md +18 -0
- package/content/packages/tsdown-plugins/api/function/writedtsemittsconfig.md +18 -0
- package/content/packages/tsdown-plugins/api/function/writeissuesartifact.md +23 -0
- package/content/packages/tsdown-plugins/api/function/writeresolvedtsconfig.md +18 -0
- package/content/packages/tsdown-plugins/api/function/writetargetsbinding.md +18 -0
- package/content/packages/tsdown-plugins/api/interface/ambientdtsentry.md +38 -0
- package/content/packages/tsdown-plugins/api/interface/buildemittedmanifestoptions.md +69 -0
- package/content/packages/tsdown-plugins/api/interface/buildgroupspec.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/buildissues.md +56 -0
- package/content/packages/tsdown-plugins/api/interface/buildtargetgroupsoptions.md +205 -0
- package/content/packages/tsdown-plugins/api/interface/copyambientdtsoptions.md +42 -0
- package/content/packages/tsdown-plugins/api/interface/cssoptions.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/derivedtsdownoptions.md +106 -0
- package/content/packages/tsdown-plugins/api/interface/deriveoptions.md +100 -0
- package/content/packages/tsdown-plugins/api/interface/diagnosticinput.md +66 -0
- package/content/packages/tsdown-plugins/api/interface/emitmanifestoptions.md +71 -0
- package/content/packages/tsdown-plugins/api/interface/entryoverride.md +86 -0
- package/content/packages/tsdown-plugins/api/interface/execonfig.md +60 -0
- package/content/packages/tsdown-plugins/api/interface/exerewrite.md +44 -0
- package/content/packages/tsdown-plugins/api/interface/exeseaconfig.md +38 -0
- package/content/packages/tsdown-plugins/api/interface/exetarget.md +38 -0
- package/content/packages/tsdown-plugins/api/interface/exetargetinput.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/extractambientoptions.md +24 -0
- package/content/packages/tsdown-plugins/api/interface/extractoptions.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/extractresult.md +34 -0
- package/content/packages/tsdown-plugins/api/interface/formatter.md +30 -0
- package/content/packages/tsdown-plugins/api/interface/formattercontext.md +30 -0
- package/content/packages/tsdown-plugins/api/interface/generatemetaoptions.md +124 -0
- package/content/packages/tsdown-plugins/api/interface/jsxconfig.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/loosefilespec.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/metaoptions.md +42 -0
- package/content/packages/tsdown-plugins/api/interface/metaresult.md +30 -0
- package/content/packages/tsdown-plugins/api/interface/moduleexportnames.md +34 -0
- package/content/packages/tsdown-plugins/api/interface/nextversions.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/normalizedexe.md +48 -0
- package/content/packages/tsdown-plugins/api/interface/normalizedloosefile.md +60 -0
- package/content/packages/tsdown-plugins/api/interface/normalizedmeta.md +41 -0
- package/content/packages/tsdown-plugins/api/interface/packagejsonentriesoptions.md +34 -0
- package/content/packages/tsdown-plugins/api/interface/packagejsonlike.md +30 -0
- package/content/packages/tsdown-plugins/api/interface/pkgoscpu.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/plaindiagnostic.md +68 -0
- package/content/packages/tsdown-plugins/api/interface/portabletsconfig.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/publishtargetobject.md +44 -0
- package/content/packages/tsdown-plugins/api/interface/reexportbarrelanalysis.md +44 -0
- package/content/packages/tsdown-plugins/api/interface/renderedoutput.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/renderreportoptions.md +44 -0
- package/content/packages/tsdown-plugins/api/interface/resolvedcompileroptions.md +26 -0
- package/content/packages/tsdown-plugins/api/interface/resolvedgroup.md +44 -0
- package/content/packages/tsdown-plugins/api/interface/resolvedtarget.md +52 -0
- package/content/packages/tsdown-plugins/api/interface/resolvedtsconfig.md +36 -0
- package/content/packages/tsdown-plugins/api/interface/resolvedtsconfigoptions.md +50 -0
- package/content/packages/tsdown-plugins/api/interface/runexebuildoptions.md +74 -0
- package/content/packages/tsdown-plugins/api/interface/runmetapassoptions.md +104 -0
- package/content/packages/tsdown-plugins/api/interface/targetgroupref.md +38 -0
- package/content/packages/tsdown-plugins/api/interface/targetresolution.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/timer.md +30 -0
- package/content/packages/tsdown-plugins/api/interface/transformmanifestoptions.md +50 -0
- package/content/packages/tsdown-plugins/api/interface/tsconfigjsx.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/tsdocoptions.md +32 -0
- package/content/packages/tsdown-plugins/api/interface/tsdoctagdefinition.md +38 -0
- package/content/packages/tsdown-plugins/api/interface/tsdownlogger.md +62 -0
- package/content/packages/tsdown-plugins/api/interface/validationinput.md +69 -0
- package/content/packages/tsdown-plugins/api/interface/warningsuppressionrule.md +32 -0
- package/content/packages/tsdown-plugins/api/type/buildformat.md +18 -0
- package/content/packages/tsdown-plugins/api/type/buildplatform.md +18 -0
- package/content/packages/tsdown-plugins/api/type/dtsexportclass.md +25 -0
- package/content/packages/tsdown-plugins/api/type/dualexports.md +18 -0
- package/content/packages/tsdown-plugins/api/type/environment.md +16 -0
- package/content/packages/tsdown-plugins/api/type/exebuild.md +18 -0
- package/content/packages/tsdown-plugins/api/type/executor.md +16 -0
- package/content/packages/tsdown-plugins/api/type/json.md +16 -0
- package/content/packages/tsdown-plugins/api/type/loosefiles.md +18 -0
- package/content/packages/tsdown-plugins/api/type/outputformat.md +16 -0
- package/content/packages/tsdown-plugins/api/type/passkind.md +16 -0
- package/content/packages/tsdown-plugins/api/type/publishtargets.md +18 -0
- package/content/packages/tsdown-plugins/api/type/publishtargetvalue.md +18 -0
- package/content/packages/tsdown-plugins/api/type/targetgroupid.md +18 -0
- package/content/packages/tsdown-plugins/api/type/tsdownbuild.md +18 -0
- package/content/packages/tsdown-plugins/api/variable/ciannotationsformatter.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/configvalidatorlive.md +18 -0
- package/content/packages/tsdown-plugins/api/variable/default_exe_node_version.md +18 -0
- package/content/packages/tsdown-plugins/api/variable/environmentdetectorlive.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/executorresolverlive.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/formatselectorlive.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/jsonformatter.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/markdownformatter.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/outputrendererlive.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/reportpipelinelive.md +17 -0
- package/content/packages/tsdown-plugins/api/variable/silentformatter.md +16 -0
- package/content/packages/tsdown-plugins/api/variable/terminalformatter.md +16 -0
- package/content/packages/tsdown-plugins/api.md +183 -0
- package/{public/content → content}/standards/api-model-pipeline.md +6 -5
- package/index.d.ts +6 -6
- package/package.json +2 -2
- package/resources/doc-index.js +2 -2
- package/resources/index.js +10 -1
- package/resources/load.js +4 -4
- package/tools/docs-search.js +1 -1
- package/public/content/guides/choosing-a-builder.md +0 -140
- package/public/content/manifest.json +0 -414
- package/public/content/packages/rslib-builder/overview.md +0 -68
- /package/{public/content → content}/_templates/guides.md +0 -0
- /package/{public/content → content}/_templates/packages.md +0 -0
- /package/{public/content → content}/_templates/standards.md +0 -0
- /package/{public/content → content}/guides/llm-friendly-json-schemas.md +0 -0
- /package/{public/content → content}/packages/cli/command-tree.md +0 -0
- /package/{public/content → content}/packages/cli/init-and-check.md +0 -0
- /package/{public/content → content}/packages/mcp/resource-taxonomy.md +0 -0
- /package/{public/content → content}/packages/silk/export-map.md +0 -0
- /package/{public/content → content}/packages/silk/install-and-setup.md +0 -0
- /package/{public/content → content}/packages/silk-effects/index.md +0 -0
- /package/{public/content → content}/packages/silk-effects/managed-section.md +0 -0
- /package/{public/content → content}/packages/silk-effects/platform-layers.md +0 -0
- /package/{public/content → content}/standards/catalog-usage.md +0 -0
- /package/{public/content → content}/standards/changeset-discipline.md +0 -0
- /package/{public/content → content}/standards/changeset-format.md +0 -0
- /package/{public/content → content}/standards/commit-contract.md +0 -0
- /package/{public/content → content}/standards/dependency-conventions.md +0 -0
- /package/{public/content → content}/standards/linting-conventions.md +0 -0
- /package/{public/content → content}/standards/publishability.md +0 -0
- /package/{public/content → content}/standards/semver.md +0 -0
- /package/{public/content → content}/standards/test-classification.md +0 -0
- /package/{public/content → content}/standards/turbo/best-practices.md +0 -0
- /package/{public/content → content}/standards/turbo/boundaries.md +0 -0
- /package/{public/content → content}/standards/turbo/ci.md +0 -0
- /package/{public/content → content}/standards/turbo/environment.md +0 -0
- /package/{public/content → content}/standards/turbo/filtering.md +0 -0
- /package/{public/content → content}/standards/turbo/watch.md +0 -0
- /package/{public/content → content}/tags.json +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/persistlocallayer
|
|
3
|
+
title: "PersistLocalLayer — github-action-builder variable"
|
|
4
|
+
summary: "Layer providing PersistLocalService (no dependencies)."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PersistLocalLayer
|
|
13
|
+
|
|
14
|
+
Layer providing [PersistLocalService](silk://packages/github-action-builder/api/variable/persistlocalservice) (no dependencies).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
PersistLocalLayer: Layer.Layer<PersistLocalService, never, never>
|
|
18
|
+
```
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/persistlocaloptionsschema
|
|
3
|
+
title: "PersistLocalOptionsSchema — github-action-builder variable"
|
|
4
|
+
summary: "Schema for persist-local options."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PersistLocalOptionsSchema
|
|
13
|
+
|
|
14
|
+
Schema for persist-local options.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
PersistLocalOptionsSchema: Schema.Struct<{
|
|
18
|
+
enabled: Schema.optionalWith<typeof Schema.Boolean, {
|
|
19
|
+
default: () => true;
|
|
20
|
+
}>; /** Path for the local action directory, relative to cwd. Defaults to ".github/actions/local". */
|
|
21
|
+
path: Schema.optionalWith<typeof Schema.String, {
|
|
22
|
+
default: () => string;
|
|
23
|
+
}>; /** Generate act boilerplate files (.actrc, act-test.yml) if they don't exist. Defaults to true. */
|
|
24
|
+
actTemplate: Schema.optionalWith<typeof Schema.Boolean, {
|
|
25
|
+
default: () => true;
|
|
26
|
+
}>;
|
|
27
|
+
}>
|
|
28
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/persistlocalresultschema
|
|
3
|
+
title: "PersistLocalResultSchema — github-action-builder variable"
|
|
4
|
+
summary: "Result of the persist-local operation."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PersistLocalResultSchema
|
|
13
|
+
|
|
14
|
+
Result of the persist-local operation.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
PersistLocalResultSchema: Schema.Struct<{
|
|
18
|
+
success: typeof Schema.Boolean; /** Number of files copied (changed or new). */
|
|
19
|
+
filesCopied: typeof Schema.Number; /** Number of files skipped (unchanged). */
|
|
20
|
+
filesSkipped: typeof Schema.Number; /** Whether act template files were generated. */
|
|
21
|
+
actTemplateGenerated: typeof Schema.Boolean; /** Output path where files were persisted. */
|
|
22
|
+
outputPath: typeof Schema.String; /** Error message if failed. */
|
|
23
|
+
error: Schema.optional<typeof Schema.String>;
|
|
24
|
+
}>
|
|
25
|
+
```
|
package/content/packages/github-action-builder/api/variable/persistlocalrunneroptionsschema.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/persistlocalrunneroptionsschema
|
|
3
|
+
title: "PersistLocalRunnerOptionsSchema — github-action-builder variable"
|
|
4
|
+
summary: "Options for the persist operation."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PersistLocalRunnerOptionsSchema
|
|
13
|
+
|
|
14
|
+
Options for the persist operation.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
PersistLocalRunnerOptionsSchema: Schema.Struct<{
|
|
18
|
+
cwd: Schema.optional<typeof Schema.String>;
|
|
19
|
+
}>
|
|
20
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/persistlocalservice
|
|
3
|
+
title: "PersistLocalService — github-action-builder variable"
|
|
4
|
+
summary: "PersistLocalService tag for dependency injection."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# PersistLocalService
|
|
13
|
+
|
|
14
|
+
[PersistLocalService](silk://packages/github-action-builder/api/variable/persistlocalservice) tag for dependency injection.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
PersistLocalService: Context.Tag<PersistLocalService, PersistLocalService>
|
|
18
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validateoptionsschema
|
|
3
|
+
title: "ValidateOptionsSchema — github-action-builder variable"
|
|
4
|
+
summary: "Options for validation."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidateOptionsSchema
|
|
13
|
+
|
|
14
|
+
Options for validation.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidateOptionsSchema: Schema.Struct<{
|
|
18
|
+
cwd: Schema.optional<Schema.transform<Schema.Union<[typeof Schema.String, Schema.instanceOf<Buffer<ArrayBufferLike>>, Schema.instanceOf<URL>]>, typeof Schema.String>>; /** Force strict mode regardless of environment. Auto-detects from CI when undefined. */
|
|
19
|
+
strict: Schema.optional<typeof Schema.Boolean>;
|
|
20
|
+
}>
|
|
21
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationerrorschema
|
|
3
|
+
title: "ValidationErrorSchema — github-action-builder variable"
|
|
4
|
+
summary: "A validation error item."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationErrorSchema
|
|
13
|
+
|
|
14
|
+
A validation error item.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationErrorSchema: Schema.Struct<{
|
|
18
|
+
code: typeof Schema.String; /** Human-readable error message. */
|
|
19
|
+
message: typeof Schema.String; /** File path where error occurred. */
|
|
20
|
+
file: Schema.optional<typeof Schema.String>; /** Suggestion for fixing the error. */
|
|
21
|
+
suggestion: Schema.optional<typeof Schema.String>;
|
|
22
|
+
}>
|
|
23
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationfailedbase
|
|
3
|
+
title: "ValidationFailedBase — github-action-builder variable"
|
|
4
|
+
summary: "Base class for ValidationFailed error."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationFailedBase
|
|
13
|
+
|
|
14
|
+
Base class for [ValidationFailed](silk://packages/github-action-builder/api/class/validationfailed) error.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationFailedBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
18
|
+
readonly _tag: "ValidationFailed";
|
|
19
|
+
} & Readonly<A>
|
|
20
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationlayer
|
|
3
|
+
title: "ValidationLayer — github-action-builder variable"
|
|
4
|
+
summary: "Layer providing ValidationService (depends on ConfigService)."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationLayer
|
|
13
|
+
|
|
14
|
+
Layer providing [ValidationService](silk://packages/github-action-builder/api/variable/validationservice) (depends on [ConfigService](silk://packages/github-action-builder/api/variable/configservice)).
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationLayer: Layer.Layer<ValidationService, never, never>
|
|
18
|
+
```
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationoptionsschema
|
|
3
|
+
title: "ValidationOptionsSchema — github-action-builder variable"
|
|
4
|
+
summary: "Schema for validation options."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationOptionsSchema
|
|
13
|
+
|
|
14
|
+
Schema for validation options.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationOptionsSchema: Schema.Struct<{
|
|
18
|
+
requireActionYml: Schema.optionalWith<typeof Schema.Boolean, {
|
|
19
|
+
default: () => true;
|
|
20
|
+
}>; /** Maximum bundle size before warning/error (e.g., "5mb", "500kb"). */
|
|
21
|
+
maxBundleSize: Schema.optional<typeof Schema.String>; /** Treat warnings as errors. Auto-detects from CI when undefined. */
|
|
22
|
+
strict: Schema.optional<typeof Schema.Boolean>;
|
|
23
|
+
}>
|
|
24
|
+
```
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationresultschema
|
|
3
|
+
title: "ValidationResultSchema — github-action-builder variable"
|
|
4
|
+
summary: "Validation result with errors and warnings."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationResultSchema
|
|
13
|
+
|
|
14
|
+
Validation result with errors and warnings.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationResultSchema: Schema.Struct<{
|
|
18
|
+
valid: typeof Schema.Boolean; /** Validation errors. */
|
|
19
|
+
errors: Schema.Array$<Schema.Struct<{
|
|
20
|
+
code: typeof Schema.String; /** Human-readable error message. */
|
|
21
|
+
message: typeof Schema.String; /** File path where error occurred. */
|
|
22
|
+
file: Schema.optional<typeof Schema.String>; /** Suggestion for fixing the error. */
|
|
23
|
+
suggestion: Schema.optional<typeof Schema.String>;
|
|
24
|
+
}>>; /** Validation warnings. */
|
|
25
|
+
warnings: Schema.Array$<Schema.Struct<{
|
|
26
|
+
code: typeof Schema.String; /** Human-readable warning message. */
|
|
27
|
+
message: typeof Schema.String; /** File path where warning occurred. */
|
|
28
|
+
file: Schema.optional<typeof Schema.String>; /** Suggestion for addressing the warning. */
|
|
29
|
+
suggestion: Schema.optional<typeof Schema.String>;
|
|
30
|
+
}>>;
|
|
31
|
+
}>
|
|
32
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationservice
|
|
3
|
+
title: "ValidationService — github-action-builder variable"
|
|
4
|
+
summary: "ValidationService tag for dependency injection."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationService
|
|
13
|
+
|
|
14
|
+
[ValidationService](silk://packages/github-action-builder/api/variable/validationservice) tag for dependency injection.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationService: Context.Tag<ValidationService, ValidationService>
|
|
18
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/validationwarningschema
|
|
3
|
+
title: "ValidationWarningSchema — github-action-builder variable"
|
|
4
|
+
summary: "A validation warning."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ValidationWarningSchema
|
|
13
|
+
|
|
14
|
+
A validation warning.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
ValidationWarningSchema: Schema.Struct<{
|
|
18
|
+
code: typeof Schema.String; /** Human-readable warning message. */
|
|
19
|
+
message: typeof Schema.String; /** File path where warning occurred. */
|
|
20
|
+
file: Schema.optional<typeof Schema.String>; /** Suggestion for addressing the warning. */
|
|
21
|
+
suggestion: Schema.optional<typeof Schema.String>;
|
|
22
|
+
}>
|
|
23
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/workerentryinvalidnamebase
|
|
3
|
+
title: "WorkerEntryInvalidNameBase — github-action-builder variable"
|
|
4
|
+
summary: "Base class for WorkerEntryInvalidName error."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# WorkerEntryInvalidNameBase
|
|
13
|
+
|
|
14
|
+
Base class for [WorkerEntryInvalidName](silk://packages/github-action-builder/api/class/workerentryinvalidname) error.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
WorkerEntryInvalidNameBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
18
|
+
readonly _tag: "WorkerEntryInvalidName";
|
|
19
|
+
} & Readonly<A>
|
|
20
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/workerentrymissingbase
|
|
3
|
+
title: "WorkerEntryMissingBase — github-action-builder variable"
|
|
4
|
+
summary: "Base class for WorkerEntryMissing error."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# WorkerEntryMissingBase
|
|
13
|
+
|
|
14
|
+
Base class for [WorkerEntryMissing](silk://packages/github-action-builder/api/class/workerentrymissing) error.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
WorkerEntryMissingBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
18
|
+
readonly _tag: "WorkerEntryMissing";
|
|
19
|
+
} & Readonly<A>
|
|
20
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api/variable/writeerrorbase
|
|
3
|
+
title: "WriteErrorBase — github-action-builder variable"
|
|
4
|
+
summary: "Base class for WriteError error."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# WriteErrorBase
|
|
13
|
+
|
|
14
|
+
Base class for [WriteError](silk://packages/github-action-builder/api/class/writeerror) error.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
WriteErrorBase: new <A extends Record<string, any> = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P] }>) => import("effect/Cause").YieldableError & {
|
|
18
|
+
readonly _tag: "WriteError";
|
|
19
|
+
} & Readonly<A>
|
|
20
|
+
```
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-builder/api
|
|
3
|
+
title: "@savvy-web/github-action-builder — API reference"
|
|
4
|
+
summary: "@savvy-web/github-action-builder API reference: 98 documented symbols."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-builder, api]
|
|
8
|
+
priority: 0.4
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# @savvy-web/github-action-builder — API reference
|
|
13
|
+
|
|
14
|
+
## class
|
|
15
|
+
|
|
16
|
+
- [`ActionYmlMissing`](silk://packages/github-action-builder/api/class/actionymlmissing) — Error when action.yml file is missing.
|
|
17
|
+
- [`ActionYmlPathError`](silk://packages/github-action-builder/api/class/actionymlpatherror) — Error when action.yml runs paths don't resolve correctly in destination.
|
|
18
|
+
- [`ActionYmlSchemaError`](silk://packages/github-action-builder/api/class/actionymlschemaerror) — Error when action.yml fails schema validation.
|
|
19
|
+
- [`ActionYmlSyntaxError`](silk://packages/github-action-builder/api/class/actionymlsyntaxerror) — Error when action.yml has invalid YAML syntax.
|
|
20
|
+
- [`BuildFailed`](silk://packages/github-action-builder/api/class/buildfailed) — Error when the build process fails overall.
|
|
21
|
+
- [`BundleFailed`](silk://packages/github-action-builder/api/class/bundlefailed) — Error when bundling with rsbuild fails.
|
|
22
|
+
- [`CleanError`](silk://packages/github-action-builder/api/class/cleanerror) — Error when cleaning the output directory fails.
|
|
23
|
+
- [`ConfigInvalid`](silk://packages/github-action-builder/api/class/configinvalid) — Error when configuration file exists but contains invalid content.
|
|
24
|
+
- [`ConfigLoadFailed`](silk://packages/github-action-builder/api/class/configloadfailed) — Error when configuration file fails to load (import error, syntax error, etc.).
|
|
25
|
+
- [`ConfigNotFound`](silk://packages/github-action-builder/api/class/confignotfound) — Error when configuration file is not found.
|
|
26
|
+
- [`EntryFileMissing`](silk://packages/github-action-builder/api/class/entryfilemissing) — Error when an explicitly specified entry file is missing.
|
|
27
|
+
- [`GitHubAction`](silk://packages/github-action-builder/api/class/githubaction) — Main API class for building GitHub Actions.
|
|
28
|
+
- [`MainEntryMissing`](silk://packages/github-action-builder/api/class/mainentrymissing) — Error when the required main entry point is missing.
|
|
29
|
+
- [`PersistLocalError`](silk://packages/github-action-builder/api/class/persistlocalerror) — Error when persisting build output to local action directory fails.
|
|
30
|
+
- [`ValidationFailed`](silk://packages/github-action-builder/api/class/validationfailed) — Error when validation fails in strict mode (CI environment).
|
|
31
|
+
- [`WorkerEntryInvalidName`](silk://packages/github-action-builder/api/class/workerentryinvalidname) — Error when a worker entry name is reserved or path-unsafe.
|
|
32
|
+
- [`WorkerEntryMissing`](silk://packages/github-action-builder/api/class/workerentrymissing) — Error when a worker entry source file is not found.
|
|
33
|
+
- [`WriteError`](silk://packages/github-action-builder/api/class/writeerror) — Error when writing output files fails.
|
|
34
|
+
|
|
35
|
+
## function
|
|
36
|
+
|
|
37
|
+
- [`defineConfig`](silk://packages/github-action-builder/api/function/defineconfig) — Define a configuration with full TypeScript support.
|
|
38
|
+
|
|
39
|
+
## interface
|
|
40
|
+
|
|
41
|
+
- [`BuildService`](silk://packages/github-action-builder/api/interface/buildservice) — BuildService interface for build and bundling capabilities.
|
|
42
|
+
- [`ConfigService`](silk://packages/github-action-builder/api/interface/configservice) — ConfigService interface for configuration management capabilities.
|
|
43
|
+
- [`GitHubActionOptions`](silk://packages/github-action-builder/api/interface/githubactionoptions) — Options for creating a GitHubAction builder instance.
|
|
44
|
+
- [`LoadConfigResult`](silk://packages/github-action-builder/api/interface/loadconfigresult) — Result of configuration loading.
|
|
45
|
+
- [`PersistLocalService`](silk://packages/github-action-builder/api/interface/persistlocalservice) — PersistLocalService interface for copying build output locally.
|
|
46
|
+
- [`ValidationService`](silk://packages/github-action-builder/api/interface/validationservice) — ValidationService interface for validation capabilities.
|
|
47
|
+
|
|
48
|
+
## type
|
|
49
|
+
|
|
50
|
+
- [`ActionYmlResult`](silk://packages/github-action-builder/api/type/actionymlresult) — Result of action.yml validation.
|
|
51
|
+
- [`AppError`](silk://packages/github-action-builder/api/type/apperror) — Union of all possible errors in the GitHub Action Builder.
|
|
52
|
+
- [`BuildError`](silk://packages/github-action-builder/api/type/builderror) — Union of all build-related errors.
|
|
53
|
+
- [`BuildOptions`](silk://packages/github-action-builder/api/type/buildoptions) — Build options for the bundler.
|
|
54
|
+
- [`BuildResult`](silk://packages/github-action-builder/api/type/buildresult) — Result of the complete build process.
|
|
55
|
+
- [`BuildRunnerOptions`](silk://packages/github-action-builder/api/type/buildrunneroptions) — Options for the build process.
|
|
56
|
+
- [`BundleResult`](silk://packages/github-action-builder/api/type/bundleresult) — Result of bundling a single entry.
|
|
57
|
+
- [`BundleStats`](silk://packages/github-action-builder/api/type/bundlestats) — Statistics for a single bundled entry.
|
|
58
|
+
- [`Config`](silk://packages/github-action-builder/api/type/config) — Fully resolved configuration with all defaults applied.
|
|
59
|
+
- [`ConfigError`](silk://packages/github-action-builder/api/type/configerror) — Union of all configuration-related errors.
|
|
60
|
+
- [`ConfigInput`](silk://packages/github-action-builder/api/type/configinput) — User-provided configuration input (all fields optional).
|
|
61
|
+
- [`DetectedEntry`](silk://packages/github-action-builder/api/type/detectedentry) — Detected entry point information.
|
|
62
|
+
- [`DetectEntriesResult`](silk://packages/github-action-builder/api/type/detectentriesresult) — Result of entry detection.
|
|
63
|
+
- [`Entries`](silk://packages/github-action-builder/api/type/entries) — Entry point paths configuration.
|
|
64
|
+
- [`GitHubActionBuildResult`](silk://packages/github-action-builder/api/type/githubactionbuildresult) — Result of a GitHubAction build operation.
|
|
65
|
+
- [`LoadConfigOptions`](silk://packages/github-action-builder/api/type/loadconfigoptions) — Options for loading configuration.
|
|
66
|
+
- [`PersistError`](silk://packages/github-action-builder/api/type/persisterror) — Union of all persist-local-related errors.
|
|
67
|
+
- [`PersistLocalOptions`](silk://packages/github-action-builder/api/type/persistlocaloptions) — Persist-local options for copying build output.
|
|
68
|
+
- [`PersistLocalResult`](silk://packages/github-action-builder/api/type/persistlocalresult) — Result of the persist-local operation.
|
|
69
|
+
- [`PersistLocalRunnerOptions`](silk://packages/github-action-builder/api/type/persistlocalrunneroptions) — Options for the persist operation.
|
|
70
|
+
- [`ValidateOptions`](silk://packages/github-action-builder/api/type/validateoptions) — Options for validation.
|
|
71
|
+
- [`ValidationError`](silk://packages/github-action-builder/api/type/validationerror) — Union of all validation-related errors.
|
|
72
|
+
- [`ValidationErrorItem`](silk://packages/github-action-builder/api/type/validationerroritem) — A validation error item.
|
|
73
|
+
- [`ValidationOptions`](silk://packages/github-action-builder/api/type/validationoptions) — Validation options for the build process.
|
|
74
|
+
- [`ValidationResult`](silk://packages/github-action-builder/api/type/validationresult) — Validation result with errors and warnings.
|
|
75
|
+
- [`ValidationWarning`](silk://packages/github-action-builder/api/type/validationwarning) — A validation warning.
|
|
76
|
+
|
|
77
|
+
## variable
|
|
78
|
+
|
|
79
|
+
- [`ActionYmlMissingBase`](silk://packages/github-action-builder/api/variable/actionymlmissingbase) — Base class for ActionYmlMissing error.
|
|
80
|
+
- [`ActionYmlPathErrorBase`](silk://packages/github-action-builder/api/variable/actionymlpatherrorbase) — Base class for ActionYmlPathError error.
|
|
81
|
+
- [`ActionYmlResultSchema`](silk://packages/github-action-builder/api/variable/actionymlresultschema) — Result of action.yml validation.
|
|
82
|
+
- [`ActionYmlSchemaErrorBase`](silk://packages/github-action-builder/api/variable/actionymlschemaerrorbase) — Base class for ActionYmlSchemaError error.
|
|
83
|
+
- [`ActionYmlSyntaxErrorBase`](silk://packages/github-action-builder/api/variable/actionymlsyntaxerrorbase) — Base class for ActionYmlSyntaxError error.
|
|
84
|
+
- [`AppLayer`](silk://packages/github-action-builder/api/variable/applayer) — Combined layer providing all services.
|
|
85
|
+
- [`BuildFailedBase`](silk://packages/github-action-builder/api/variable/buildfailedbase) — Base class for BuildFailed error.
|
|
86
|
+
- [`BuildLayer`](silk://packages/github-action-builder/api/variable/buildlayer) — Layer providing BuildService (depends on ConfigService).
|
|
87
|
+
- [`BuildOptionsSchema`](silk://packages/github-action-builder/api/variable/buildoptionsschema) — Schema for build options.
|
|
88
|
+
- [`BuildResultSchema`](silk://packages/github-action-builder/api/variable/buildresultschema) — Result of the complete build process.
|
|
89
|
+
- [`BuildRunnerOptionsSchema`](silk://packages/github-action-builder/api/variable/buildrunneroptionsschema) — Options for the build process.
|
|
90
|
+
- [`BuildService`](silk://packages/github-action-builder/api/variable/buildservice) — BuildService tag for dependency injection.
|
|
91
|
+
- [`BundleFailedBase`](silk://packages/github-action-builder/api/variable/bundlefailedbase) — Base class for BundleFailed error.
|
|
92
|
+
- [`BundleResultSchema`](silk://packages/github-action-builder/api/variable/bundleresultschema) — Result of bundling a single entry.
|
|
93
|
+
- [`BundleStatsSchema`](silk://packages/github-action-builder/api/variable/bundlestatsschema) — Statistics for a single bundled entry.
|
|
94
|
+
- [`CleanErrorBase`](silk://packages/github-action-builder/api/variable/cleanerrorbase) — Base class for CleanError error.
|
|
95
|
+
- [`ConfigInputSchema`](silk://packages/github-action-builder/api/variable/configinputschema) — User-provided configuration input (all fields optional).
|
|
96
|
+
- [`ConfigInvalidBase`](silk://packages/github-action-builder/api/variable/configinvalidbase) — Base class for ConfigInvalid error.
|
|
97
|
+
- [`ConfigLayer`](silk://packages/github-action-builder/api/variable/configlayer) — Layer providing ConfigService (no dependencies).
|
|
98
|
+
- [`ConfigLoadFailedBase`](silk://packages/github-action-builder/api/variable/configloadfailedbase) — Base class for ConfigLoadFailed error.
|
|
99
|
+
- [`ConfigNotFoundBase`](silk://packages/github-action-builder/api/variable/confignotfoundbase) — Base class for ConfigNotFound error.
|
|
100
|
+
- [`ConfigSchema`](silk://packages/github-action-builder/api/variable/configschema) — Fully resolved configuration with all defaults applied.
|
|
101
|
+
- [`ConfigService`](silk://packages/github-action-builder/api/variable/configservice) — ConfigService tag for dependency injection.
|
|
102
|
+
- [`DetectedEntrySchema`](silk://packages/github-action-builder/api/variable/detectedentryschema) — Detected entry point information.
|
|
103
|
+
- [`DetectEntriesResultSchema`](silk://packages/github-action-builder/api/variable/detectentriesresultschema) — Result of entry detection.
|
|
104
|
+
- [`EntriesSchema`](silk://packages/github-action-builder/api/variable/entriesschema) — Schema for entry point paths.
|
|
105
|
+
- [`EntryFileMissingBase`](silk://packages/github-action-builder/api/variable/entryfilemissingbase) — Base class for EntryFileMissing error.
|
|
106
|
+
- [`GitHubActionBuildResultSchema`](silk://packages/github-action-builder/api/variable/githubactionbuildresultschema) — Result of a GitHubAction build operation.
|
|
107
|
+
- [`LoadConfigOptionsSchema`](silk://packages/github-action-builder/api/variable/loadconfigoptionsschema) — Options for loading configuration.
|
|
108
|
+
- [`MainEntryMissingBase`](silk://packages/github-action-builder/api/variable/mainentrymissingbase) — Base class for MainEntryMissing error.
|
|
109
|
+
- [`PersistLocalErrorBase`](silk://packages/github-action-builder/api/variable/persistlocalerrorbase) — Base class for PersistLocalError error.
|
|
110
|
+
- [`PersistLocalLayer`](silk://packages/github-action-builder/api/variable/persistlocallayer) — Layer providing PersistLocalService (no dependencies).
|
|
111
|
+
- [`PersistLocalOptionsSchema`](silk://packages/github-action-builder/api/variable/persistlocaloptionsschema) — Schema for persist-local options.
|
|
112
|
+
- [`PersistLocalResultSchema`](silk://packages/github-action-builder/api/variable/persistlocalresultschema) — Result of the persist-local operation.
|
|
113
|
+
- [`PersistLocalRunnerOptionsSchema`](silk://packages/github-action-builder/api/variable/persistlocalrunneroptionsschema) — Options for the persist operation.
|
|
114
|
+
- [`PersistLocalService`](silk://packages/github-action-builder/api/variable/persistlocalservice) — PersistLocalService tag for dependency injection.
|
|
115
|
+
- [`ValidateOptionsSchema`](silk://packages/github-action-builder/api/variable/validateoptionsschema) — Options for validation.
|
|
116
|
+
- [`ValidationErrorSchema`](silk://packages/github-action-builder/api/variable/validationerrorschema) — A validation error item.
|
|
117
|
+
- [`ValidationFailedBase`](silk://packages/github-action-builder/api/variable/validationfailedbase) — Base class for ValidationFailed error.
|
|
118
|
+
- [`ValidationLayer`](silk://packages/github-action-builder/api/variable/validationlayer) — Layer providing ValidationService (depends on ConfigService).
|
|
119
|
+
- [`ValidationOptionsSchema`](silk://packages/github-action-builder/api/variable/validationoptionsschema) — Schema for validation options.
|
|
120
|
+
- [`ValidationResultSchema`](silk://packages/github-action-builder/api/variable/validationresultschema) — Validation result with errors and warnings.
|
|
121
|
+
- [`ValidationService`](silk://packages/github-action-builder/api/variable/validationservice) — ValidationService tag for dependency injection.
|
|
122
|
+
- [`ValidationWarningSchema`](silk://packages/github-action-builder/api/variable/validationwarningschema) — A validation warning.
|
|
123
|
+
- [`WorkerEntryInvalidNameBase`](silk://packages/github-action-builder/api/variable/workerentryinvalidnamebase) — Base class for WorkerEntryInvalidName error.
|
|
124
|
+
- [`WorkerEntryMissingBase`](silk://packages/github-action-builder/api/variable/workerentrymissingbase) — Base class for WorkerEntryMissing error.
|
|
125
|
+
- [`WriteErrorBase`](silk://packages/github-action-builder/api/variable/writeerrorbase) — Base class for WriteError error.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-effects/api/class/actioncache
|
|
3
|
+
title: "ActionCache — github-action-effects class"
|
|
4
|
+
summary: "Service for GitHub Actions cache operations. Uses the V2 Twirp cache protocol at ACTIONS_RESULTS_URL with Azure Blob Storage for uploads/downloads. No dependen…"
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-effects, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ActionCache
|
|
13
|
+
|
|
14
|
+
Service for GitHub Actions cache operations. Uses the V2 Twirp cache protocol at ACTIONS_RESULTS_URL with Azure Blob Storage for uploads/downloads. No dependency on `@actions/cache`.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
class ActionCache extends ActionCache_base
|
|
18
|
+
```
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-effects/api/class/actioncacheerror
|
|
3
|
+
title: "ActionCacheError — github-action-effects class"
|
|
4
|
+
summary: "Error when a cache operation (save or restore) fails."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-effects, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ActionCacheError
|
|
13
|
+
|
|
14
|
+
Error when a cache operation (save or restore) fails.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
class ActionCacheError extends ActionCacheError_base<{
|
|
18
|
+
readonly key: string; /** The operation that failed. */
|
|
19
|
+
readonly operation: "save" | "restore"; /** Human-readable description of what went wrong. */
|
|
20
|
+
readonly reason: string;
|
|
21
|
+
}>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Members
|
|
25
|
+
|
|
26
|
+
### key
|
|
27
|
+
|
|
28
|
+
```ts
|
|
29
|
+
readonly key: string;
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The cache key involved.
|
|
33
|
+
|
|
34
|
+
### operation
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
readonly operation: "save" | "restore";
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### reason
|
|
41
|
+
|
|
42
|
+
```ts
|
|
43
|
+
readonly reason: string;
|
|
44
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-effects/api/class/actionenvironment
|
|
3
|
+
title: "ActionEnvironment — github-action-effects class"
|
|
4
|
+
summary: "Service for reading GitHub Actions environment variables."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-effects, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ActionEnvironment
|
|
13
|
+
|
|
14
|
+
Service for reading GitHub Actions environment variables.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
class ActionEnvironment extends ActionEnvironment_base
|
|
18
|
+
```
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: packages/github-action-effects/api/class/actionenvironmenterror
|
|
3
|
+
title: "ActionEnvironmentError — github-action-effects class"
|
|
4
|
+
summary: "Error when a required environment variable is missing or invalid."
|
|
5
|
+
tier: packages
|
|
6
|
+
source: generated
|
|
7
|
+
tags: [github-action-effects, api]
|
|
8
|
+
priority: 0.3
|
|
9
|
+
related: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ActionEnvironmentError
|
|
13
|
+
|
|
14
|
+
Error when a required environment variable is missing or invalid.
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
class ActionEnvironmentError extends ActionEnvironmentError_base<{
|
|
18
|
+
readonly variable: string; /** Human-readable description of what went wrong. */
|
|
19
|
+
readonly reason: string;
|
|
20
|
+
}>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Members
|
|
24
|
+
|
|
25
|
+
### reason
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
readonly reason: string;
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### variable
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
readonly variable: string;
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The environment variable name.
|