mario-core 2.9.412-feedback → 2.9.413-feedback

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.9.412-feedback",
3
+ "version": "2.9.413-feedback",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1 +0,0 @@
1
- export declare const getWeeklyQuestsApi: () => Promise<import("axios").AxiosResponse<any>>;
@@ -1,37 +0,0 @@
1
- export interface IWeeklyQuest {
2
- id: number;
3
- isActive: boolean;
4
- challenge: IChallenge;
5
- title: string;
6
- source: SourceWeeklyQuests;
7
- request: IRequest;
8
- status: StatusWeeklyQuest;
9
- order: number;
10
- }
11
- export declare enum IChallenge {
12
- Challenge1 = 0,
13
- Challenge2 = 1,
14
- Challenge3 = 2,
15
- Challenge4 = 3,
16
- Challenge5 = 4
17
- }
18
- export declare enum SourceWeeklyQuests {
19
- CheckIn = 0,
20
- ClassReflection = 1,
21
- Conference = 2,
22
- Goal = 3,
23
- Interests = 4,
24
- ChallengesSection = 5,
25
- LearningStrategies = 6,
26
- SupportNetwork = 7
27
- }
28
- export declare enum IRequest {
29
- View = 0,
30
- Complete = 1,
31
- Update = 2
32
- }
33
- export declare enum StatusWeeklyQuest {
34
- Pending = 0,
35
- Completed = 1,
36
- NotCompleted = 2
37
- }