@types/semantic-release
Advanced tools
Comparing version 17.2.2 to 17.2.3
@@ -12,2 +12,8 @@ // Type definitions for semantic-release 17.2 | ||
/** | ||
* A semver release type. | ||
* See https://github.com/semantic-release/commit-analyzer/blob/master/lib/default-release-types.js | ||
*/ | ||
type ReleaseType = "prerelease" | "prepatch" | "patch" | "preminor" | "minor" | "premajor" | "major"; | ||
/** | ||
* semantic-release options. | ||
@@ -367,5 +373,30 @@ * | ||
*/ | ||
type: "patch" | "minor" | "major"; | ||
type: ReleaseType; | ||
/** | ||
* The release channel of the release. | ||
*/ | ||
channel?: string | undefined; | ||
/** | ||
* The git hash of the release. | ||
*/ | ||
gitHead: string; | ||
/** | ||
* The version without v | ||
*/ | ||
version: string; | ||
/** | ||
* The version with v prefix | ||
*/ | ||
gitTag: string; | ||
/** | ||
* The release name | ||
*/ | ||
name?: string; | ||
/** | ||
* The release notes of the next release. | ||
@@ -527,3 +558,3 @@ */ | ||
*/ | ||
type: "patch" | "minor" | "major"; | ||
type: ReleaseType; | ||
@@ -530,0 +561,0 @@ /** |
{ | ||
"name": "@types/semantic-release", | ||
"version": "17.2.2", | ||
"version": "17.2.3", | ||
"description": "TypeScript definitions for semantic-release", | ||
@@ -35,4 +35,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semantic-release", | ||
}, | ||
"typesPublisherContentHash": "2cfb5a208091e04a0e0d8b8b660a168849a70898acc02c5d189f98a3575f0cf9", | ||
"typesPublisherContentHash": "1b53a9d81aadd020616885156bbf747ab9bd4d8973d92ab1e44f3343a16f4d1b", | ||
"typeScriptVersion": "3.7" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Thu, 16 Sep 2021 20:01:26 GMT | ||
* Last updated: Mon, 08 Nov 2021 19:01:42 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23674
551