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