Skip to content

Commit 19c4f96

Browse files
committed
Updates @gitkraken/provider-apis to 0.25.2
1 parent ccf72bb commit 19c4f96

File tree

3 files changed

+57
-52
lines changed

3 files changed

+57
-52
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17979,7 +17979,7 @@
1797917979
},
1798017980
"dependencies": {
1798117981
"@gitkraken/gitkraken-components": "10.7.0",
17982-
"@gitkraken/provider-apis": "0.24.2",
17982+
"@gitkraken/provider-apis": "0.25.2",
1798317983
"@gitkraken/shared-web-components": "0.1.1-rc.15",
1798417984
"@gk-nzaytsev/fast-string-truncated-width": "1.1.0",
1798517985
"@lit-labs/signals": "^0.1.1",

pnpm-lock.yaml

Lines changed: 50 additions & 50 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,
40+
organizationName: null,
41+
projectId: null,
42+
repoId: null,
43+
resourceId: null,
3944
provider: provider,
4045
entityType: entityType,
4146
version: EntityVersion.One,

0 commit comments

Comments
 (0)