fansunited-management-components 1.30.0 → 1.31.0
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/index.es.js +735 -731
- package/index.umd.js +121 -121
- package/package.json +1 -1
- package/src/components/Schedule/Schedule.d.ts +1 -0
- package/src/services/https/HttpsService.d.ts +2 -0
- package/src/types/types.d.ts +1 -0
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@ import { default as PollRequestBody } from '../../models/voting/PollRequestBody'
|
|
|
10
10
|
import { default as EitherOrRequestBody } from '../../models/minigames/eitherors/EitherOrRequestBody';
|
|
11
11
|
import { default as BracketGameRequestBody } from '../../models/games/bracket/BracketGameRequestBody';
|
|
12
12
|
import { default as StandingGameRequestBody } from '../../models/games/standing/StandingGameRequestBody';
|
|
13
|
+
import { FeatureType } from '../../types/types';
|
|
13
14
|
|
|
14
15
|
export default class HttpsService extends Https {
|
|
15
16
|
private loyaltyBaseUrl;
|
|
@@ -29,6 +30,7 @@ export default class HttpsService extends Https {
|
|
|
29
30
|
exportDetailedGameLeaderboard: (gameId: string, limit: number) => Promise<Response>;
|
|
30
31
|
createGame: (requestBody: GameRequestBody) => Promise<Response>;
|
|
31
32
|
editGame: (gameId: string, requestBody: GameRequestBody) => Promise<Response>;
|
|
33
|
+
getEntityFeature: (entityType: FeatureType) => Promise<Response>;
|
|
32
34
|
getClassicQuizFeature: () => Promise<Response>;
|
|
33
35
|
getEitherOrFeature: () => Promise<Response>;
|
|
34
36
|
getPollFeature: () => Promise<Response>;
|
package/src/types/types.d.ts
CHANGED