@dendotdev/grunt 1.0.7 → 1.0.8
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 +0 -11
- package/dist/index.d.ts +0 -11
- package/dist/index.js +0 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2687,9 +2687,6 @@ declare class LobbyModule extends ModuleBase {
|
|
|
2687
2687
|
*
|
|
2688
2688
|
* @example
|
|
2689
2689
|
* ```typescript
|
|
2690
|
-
* // Get clearance level
|
|
2691
|
-
* const clearance = await client.settings.getClearanceLevel();
|
|
2692
|
-
*
|
|
2693
2690
|
* // Get flighted feature flags
|
|
2694
2691
|
* const flags = await client.settings.getFlightedFeatureFlags('flight-id');
|
|
2695
2692
|
*
|
|
@@ -2699,14 +2696,6 @@ declare class LobbyModule extends ModuleBase {
|
|
|
2699
2696
|
*/
|
|
2700
2697
|
declare class SettingsModule extends ModuleBase {
|
|
2701
2698
|
constructor(client: ClientBase);
|
|
2702
|
-
/**
|
|
2703
|
-
* Get the clearance level for the current player.
|
|
2704
|
-
*
|
|
2705
|
-
* Returns feature flags and flight IDs the player has access to.
|
|
2706
|
-
*
|
|
2707
|
-
* @returns Flighted feature flags
|
|
2708
|
-
*/
|
|
2709
|
-
getClearanceLevel(): Promise<HaloApiResult<FlightedFeatureFlags>>;
|
|
2710
2699
|
/**
|
|
2711
2700
|
* Get a list of features enabled for a given flight.
|
|
2712
2701
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -2687,9 +2687,6 @@ declare class LobbyModule extends ModuleBase {
|
|
|
2687
2687
|
*
|
|
2688
2688
|
* @example
|
|
2689
2689
|
* ```typescript
|
|
2690
|
-
* // Get clearance level
|
|
2691
|
-
* const clearance = await client.settings.getClearanceLevel();
|
|
2692
|
-
*
|
|
2693
2690
|
* // Get flighted feature flags
|
|
2694
2691
|
* const flags = await client.settings.getFlightedFeatureFlags('flight-id');
|
|
2695
2692
|
*
|
|
@@ -2699,14 +2696,6 @@ declare class LobbyModule extends ModuleBase {
|
|
|
2699
2696
|
*/
|
|
2700
2697
|
declare class SettingsModule extends ModuleBase {
|
|
2701
2698
|
constructor(client: ClientBase);
|
|
2702
|
-
/**
|
|
2703
|
-
* Get the clearance level for the current player.
|
|
2704
|
-
*
|
|
2705
|
-
* Returns feature flags and flight IDs the player has access to.
|
|
2706
|
-
*
|
|
2707
|
-
* @returns Flighted feature flags
|
|
2708
|
-
*/
|
|
2709
|
-
getClearanceLevel(): Promise<HaloApiResult<FlightedFeatureFlags>>;
|
|
2710
2699
|
/**
|
|
2711
2700
|
* Get a list of features enabled for a given flight.
|
|
2712
2701
|
*
|
package/dist/index.js
CHANGED
|
@@ -1735,18 +1735,6 @@ var SettingsModule = class extends ModuleBase {
|
|
|
1735
1735
|
constructor(client) {
|
|
1736
1736
|
super(client, HALO_CORE_ENDPOINTS.SETTINGS_ORIGIN);
|
|
1737
1737
|
}
|
|
1738
|
-
/**
|
|
1739
|
-
* Get the clearance level for the current player.
|
|
1740
|
-
*
|
|
1741
|
-
* Returns feature flags and flight IDs the player has access to.
|
|
1742
|
-
*
|
|
1743
|
-
* @returns Flighted feature flags
|
|
1744
|
-
*/
|
|
1745
|
-
getClearanceLevel() {
|
|
1746
|
-
return this.get("/hi/clearance", {
|
|
1747
|
-
useSpartanToken: true
|
|
1748
|
-
});
|
|
1749
|
-
}
|
|
1750
1738
|
/**
|
|
1751
1739
|
* Get a list of features enabled for a given flight.
|
|
1752
1740
|
*
|