@dendotdev/grunt 1.0.8 → 1.0.9

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/dist/index.mjs CHANGED
@@ -1741,7 +1741,9 @@ var SettingsModule = class extends ModuleBase {
1741
1741
  */
1742
1742
  getFlightedFeatureFlags(flightId) {
1743
1743
  this.assertNotEmpty(flightId, "flightId");
1744
- return this.get(`/featureflags/hi?flight=${flightId}`);
1744
+ return this.get(`/featureflags/hi?flight=${flightId}`, {
1745
+ useClearance: true
1746
+ });
1745
1747
  }
1746
1748
  /**
1747
1749
  * Get the currently active clearance.
@@ -1806,7 +1808,8 @@ var SettingsModule = class extends ModuleBase {
1806
1808
  this.assertNotEmpty(buildNumber, "buildNumber");
1807
1809
  this.assertNotEmpty(release, "release");
1808
1810
  return this.get(
1809
- `/oban/flight-configurations/titles/hi/audiences/${audience}/players/xuid(${player})/active?sandbox=${sandbox}&build=${buildNumber}&release=${release}`
1811
+ `/oban/flight-configurations/titles/hi/audiences/${audience}/players/xuid(${player})/active?sandbox=${sandbox}&build=${buildNumber}&release=${release}`,
1812
+ { useClearance: true }
1810
1813
  );
1811
1814
  }
1812
1815
  /**