@firestartr/cli 1.50.1-snapshot-3 → 1.50.1-snapshot-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.
Files changed (2) hide show
  1. package/build/index.js +3 -3
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -309607,7 +309607,7 @@ class GroupGithubDecanter extends GithubDecanter {
309607
309607
  this.claim = {
309608
309608
  kind: this.claimKind,
309609
309609
  version: this.VERSION(),
309610
- name: this.data.groupDetails.name,
309610
+ name: this.data.groupDetails.slug,
309611
309611
  description: this.data.groupDetails.description,
309612
309612
  type: 'business-unit',
309613
309613
  };
@@ -309631,7 +309631,7 @@ class GroupGithubDecanter extends GithubDecanter {
309631
309631
  __decantProviders() {
309632
309632
  this.__patchClaim({
309633
309633
  op: 'add',
309634
- value: { github: { name: this.data.groupDetails.name, org: this.org } },
309634
+ value: { github: { name: this.data.groupDetails.slug, org: this.org } },
309635
309635
  path: '/providers',
309636
309636
  });
309637
309637
  }
@@ -309645,7 +309645,7 @@ class GroupGithubDecanter extends GithubDecanter {
309645
309645
  }
309646
309646
  }
309647
309647
  async __gatherMembers() {
309648
- this.data['members'] = (await github_0.team.getTeamMembers(this.data.groupDetails.name, this.org)).map((member) => {
309648
+ this.data['members'] = (await github_0.team.getTeamMembers(this.data.groupDetails.slug, this.org)).map((member) => {
309649
309649
  return { name: member.login, role: member.role };
309650
309650
  });
309651
309651
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.50.1-snapshot-3",
3
+ "version": "1.50.1-snapshot-5",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",