Skip to content

Commit eec532f

Browse files
Updates @gitkraken/provider-apis to 0.25.2 (#3719)
* Updates @gitkraken/provider-apis to 0.25.2 * Bumps to 0.25.5 and adds comments on null inputs --------- Co-authored-by: Ramin Tadayon <[email protected]>
1 parent cb71cee commit eec532f

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19606,7 +19606,7 @@
1960619606
},
1960719607
"dependencies": {
1960819608
"@gitkraken/gitkraken-components": "10.7.0",
19609-
"@gitkraken/provider-apis": "0.24.2",
19609+
"@gitkraken/provider-apis": "0.25.5",
1961019610
"@gitkraken/shared-web-components": "0.1.1-rc.15",
1961119611
"@gk-nzaytsev/fast-string-truncated-width": "1.1.0",
1961219612
"@lit-labs/signals": "0.1.1",

pnpm-lock.yaml

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plus/integrations/providers/utils.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function getEntityIdentifierInput(entity: IssueOrPullRequest | LaunchpadI
2525
}
2626

2727
let provider = fromStringToEntityIdentifierProviderType(entity.provider.id);
28-
let domain = undefined;
28+
let domain = null;
2929
if (provider === EntityIdentifierProviderType.Github && !isGitHubDotCom(entity.provider.domain)) {
3030
provider = EntityIdentifierProviderType.GithubEnterprise;
3131
domain = entity.provider.domain;
@@ -36,6 +36,11 @@ export function getEntityIdentifierInput(entity: IssueOrPullRequest | LaunchpadI
3636
}
3737

3838
return {
39+
accountOrOrgId: null, // needed for Trello issues, once supported
40+
organizationName: null, // needed for Azure issues and PRs, once supported
41+
projectId: null, // needed for Jira issues, Trello issues, and Azure issues and PRs, once supported
42+
repoId: null, // needed for Azure and BitBucket PRs, once supported
43+
resourceId: null, // needed for Jira issues, once supported
3944
provider: provider,
4045
entityType: entityType,
4146
version: EntityVersion.One,

0 commit comments

Comments
 (0)