@the-liberators/ngx-scrumteamsurvey-tools 2.3.10 → 2.3.13
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/esm2022/lib/results/components/participants/participants.component.mjs +3 -3
- package/esm2022/lib/results/models/teamMetaDataDto.mjs +2 -4
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs +4 -6
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs.map +1 -1
- package/lib/results/models/teamMetaDataDto.d.ts +5 -8
- package/package.json +1 -1
|
@@ -9,20 +9,17 @@ export declare class TeamMetaDataDto {
|
|
|
9
9
|
lowTrustMode: boolean;
|
|
10
10
|
pincode: string;
|
|
11
11
|
improvementGoal: string;
|
|
12
|
-
improvementGoals:
|
|
13
|
-
teamTypes:
|
|
12
|
+
improvementGoals: SelectListItemApiDto[];
|
|
13
|
+
teamTypes: SelectListItemApiDto[];
|
|
14
|
+
reminderFrequencies: SelectListItemApiDto[];
|
|
15
|
+
reminderDate: Date;
|
|
14
16
|
}
|
|
15
17
|
export declare enum SubscriptionTierEnum {
|
|
16
18
|
Freemium = "Freemium",
|
|
17
19
|
Professional = "Professional",
|
|
18
20
|
Enterprise = "Enterprise"
|
|
19
21
|
}
|
|
20
|
-
export declare class
|
|
21
|
-
key: string;
|
|
22
|
-
name: string;
|
|
23
|
-
selected: boolean;
|
|
24
|
-
}
|
|
25
|
-
export declare class TeamMetaDataTeamTypeDto {
|
|
22
|
+
export declare abstract class SelectListItemApiDto {
|
|
26
23
|
key: string;
|
|
27
24
|
name: string;
|
|
28
25
|
selected: boolean;
|