@gitkraken/provider-apis 0.22.0 → 0.22.1
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/CHANGELOG.md
CHANGED
|
@@ -97,7 +97,7 @@ export type JiraIssueEntityIdentifierInput = {
|
|
|
97
97
|
provider: EntityIdentifierProviderType;
|
|
98
98
|
entityType: EntityType;
|
|
99
99
|
version?: EntityVersion;
|
|
100
|
-
resourceId
|
|
100
|
+
resourceId?: string;
|
|
101
101
|
projectId: string;
|
|
102
102
|
entityId: string;
|
|
103
103
|
domain?: string;
|
|
@@ -110,7 +110,7 @@ export type TrelloIssueEntityIdentifierInput = {
|
|
|
110
110
|
projectId: string;
|
|
111
111
|
entityId: string;
|
|
112
112
|
};
|
|
113
|
-
export type AnyEntityIdentifierInput = AzureIssueEntityIdentifierInput | AzurePullRequestEntityIdentifierInput | BitbucketIssueEntityIdentifierInput | BitbucketPullRequestEntityIdentifierInput | GithubIssueEntityIdentifierInput | GithubPullRequestEntityIdentifierInput | GitlabIssueEntityIdentifierInput | GitlabPullRequestEntityIdentifierInput | JiraIssueEntityIdentifierInput | TrelloIssueEntityIdentifierInput;
|
|
113
|
+
export type AnyEntityIdentifierInput = AzureIssueEntityIdentifierInput | AzurePullRequestEntityIdentifierInput | BitbucketIssueEntityIdentifierInput | BitbucketPullRequestEntityIdentifierInput | GithubIssueEntityIdentifierInput | GithubPullRequestEntityIdentifierInput | GitlabIssueEntityIdentifierInput | GitlabPullRequestEntityIdentifierInput | JiraIssueEntityIdentifierInput | TrelloIssueEntityIdentifierInput | EntityIdentifier;
|
|
114
114
|
export interface EntityIdentifierInterface {
|
|
115
115
|
encode(entityIdentifier: AnyEntityIdentifierInput): string;
|
|
116
116
|
decode(entityFields: string[]): EntityIdentifier;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitkraken/provider-apis",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.1",
|
|
4
4
|
"description": "An SDK around different third-party APIs that accepts and returns data in a common format.",
|
|
5
5
|
"author": "Axosoft, LLC dba GitKraken",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|