@myclub_se/data-access 1.6.0 → 1.7.1

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.
Files changed (45) hide show
  1. package/esm2020/lib/api-models/api-event.mjs +1 -1
  2. package/esm2020/lib/api-models/api-member-team.mjs +1 -1
  3. package/esm2020/lib/api-models/api-search-team.mjs +2 -0
  4. package/esm2020/lib/api-models/index.mjs +2 -4
  5. package/esm2020/lib/models/event.mjs +5 -2
  6. package/esm2020/lib/models/index.mjs +1 -3
  7. package/esm2020/lib/models/member-team.mjs +3 -2
  8. package/esm2020/lib/models/search-team.mjs +5 -2
  9. package/esm2020/lib/services/factories/event-factory.mjs +2 -2
  10. package/esm2020/lib/services/factories/index.mjs +1 -4
  11. package/esm2020/lib/services/factories/member-team-factory.mjs +2 -2
  12. package/esm2020/lib/services/factories/search-team-factory.mjs +5 -0
  13. package/esm2020/lib/services/team.service.mjs +8 -7
  14. package/fesm2015/myclub_se-data-access.mjs +19 -32
  15. package/fesm2015/myclub_se-data-access.mjs.map +1 -1
  16. package/fesm2020/myclub_se-data-access.mjs +19 -32
  17. package/fesm2020/myclub_se-data-access.mjs.map +1 -1
  18. package/lib/api-models/api-event.d.ts +3 -0
  19. package/lib/api-models/api-member-team.d.ts +1 -0
  20. package/lib/api-models/api-search-team.d.ts +8 -0
  21. package/lib/api-models/index.d.ts +1 -3
  22. package/lib/models/event.d.ts +4 -1
  23. package/lib/models/index.d.ts +0 -2
  24. package/lib/models/member-team.d.ts +2 -1
  25. package/lib/models/search-team.d.ts +6 -1
  26. package/lib/services/factories/index.d.ts +0 -3
  27. package/lib/services/factories/search-team-factory.d.ts +3 -0
  28. package/lib/services/team.service.d.ts +4 -4
  29. package/package.json +1 -1
  30. package/esm2020/lib/api-models/api-club-team.mjs +0 -2
  31. package/esm2020/lib/api-models/api-search-member-team.mjs +0 -2
  32. package/esm2020/lib/api-models/api-section-team.mjs +0 -2
  33. package/esm2020/lib/models/club-team.mjs +0 -7
  34. package/esm2020/lib/models/search-member-team.mjs +0 -9
  35. package/esm2020/lib/services/factories/club-team-factory.mjs +0 -3
  36. package/esm2020/lib/services/factories/search-member-team-factory.mjs +0 -5
  37. package/esm2020/lib/services/factories/section-team-factory.mjs +0 -3
  38. package/lib/api-models/api-club-team.d.ts +0 -4
  39. package/lib/api-models/api-search-member-team.d.ts +0 -7
  40. package/lib/api-models/api-section-team.d.ts +0 -4
  41. package/lib/models/club-team.d.ts +0 -5
  42. package/lib/models/search-member-team.d.ts +0 -8
  43. package/lib/services/factories/club-team-factory.d.ts +0 -3
  44. package/lib/services/factories/search-member-team-factory.d.ts +0 -3
  45. package/lib/services/factories/section-team-factory.d.ts +0 -3
@@ -1,6 +1,9 @@
1
1
  export interface ApiEvent {
2
2
  activity_id: string | null;
3
3
  activity_type: string | null;
4
+ base_background_color: string | null;
5
+ base_color: string | null;
6
+ base_name: string | null;
4
7
  calendar_name: string;
5
8
  description: string | null;
6
9
  end: string;
@@ -6,4 +6,5 @@ export interface ApiMemberTeam {
6
6
  name: string;
7
7
  phone: string;
8
8
  section: ApiSection;
9
+ section_name: string | undefined;
9
10
  }
@@ -0,0 +1,8 @@
1
+ import { ApiClub, ApiSection } from '.';
2
+ export interface ApiSearchTeam {
3
+ club: ApiClub | undefined;
4
+ section: ApiSection | undefined;
5
+ id: string;
6
+ name: string;
7
+ section_name: string | undefined;
8
+ }
@@ -13,7 +13,6 @@ export * from './api-card';
13
13
  export * from './api-club';
14
14
  export * from './api-club-image';
15
15
  export * from './api-club-section';
16
- export * from './api-club-team';
17
16
  export * from './api-collection';
18
17
  export * from './api-directory';
19
18
  export * from './api-event';
@@ -30,9 +29,8 @@ export * from './api-member-team-through';
30
29
  export * from './api-news';
31
30
  export * from './api-partner';
32
31
  export * from './api-search-club';
33
- export * from './api-search-member-team';
32
+ export * from './api-search-team';
34
33
  export * from './api-section';
35
- export * from './api-section-team';
36
34
  export * from './api-token';
37
35
  export * from './api-user';
38
36
  export * from './api-user-notification';
@@ -2,6 +2,9 @@ export declare class Event {
2
2
  id: string;
3
3
  activity_id: string | null;
4
4
  activity_type: string | null;
5
+ base_background_color: string | null;
6
+ base_color: string | null;
7
+ base_name: string | null;
5
8
  calendar_name: string;
6
9
  description: string | null;
7
10
  end: string;
@@ -14,5 +17,5 @@ export declare class Event {
14
17
  start: string;
15
18
  title: string;
16
19
  type: string;
17
- constructor(id: string, activity_id: string | null, activity_type: string | null, calendar_name: string, description: string | null, end: string, invitation_id: string | null, invitation_response: string | null, location: string, meet_up_place: string | null, meet_up_time: string, member_id: string, start: string, title: string, type: string);
20
+ constructor(id: string, activity_id: string | null, activity_type: string | null, base_background_color: string | null, base_color: string | null, base_name: string | null, calendar_name: string, description: string | null, end: string, invitation_id: string | null, invitation_response: string | null, location: string, meet_up_place: string | null, meet_up_time: string, member_id: string, start: string, title: string, type: string);
18
21
  }
@@ -15,7 +15,6 @@ export * from './card';
15
15
  export * from './club';
16
16
  export * from './club-image';
17
17
  export * from './club-section';
18
- export * from './club-team';
19
18
  export * from './collection';
20
19
  export * from './contact';
21
20
  export * from './directory';
@@ -36,7 +35,6 @@ export * from './news';
36
35
  export * from './partner';
37
36
  export * from './role';
38
37
  export * from './search-club';
39
- export * from './search-member-team';
40
38
  export * from './search-team';
41
39
  export * from './section';
42
40
  export * from './token';
@@ -6,5 +6,6 @@ export declare class MemberTeam {
6
6
  email: string;
7
7
  name: string;
8
8
  phone: string;
9
- constructor(club: Club, section: Section | null, id: string, email: string, name: string, phone: string);
9
+ section_name: string | undefined;
10
+ constructor(club: Club, section: Section | null, id: string, email: string, name: string, phone: string, section_name: string | undefined);
10
11
  }
@@ -1,5 +1,10 @@
1
+ import { Club } from './club';
2
+ import { Section } from './section';
1
3
  export declare class SearchTeam {
4
+ club: Club | undefined;
5
+ section: Section | undefined;
2
6
  id: string;
3
7
  name: string;
4
- constructor(id: string, name: string);
8
+ section_name: string | undefined;
9
+ constructor(club: Club | undefined, section: Section | undefined, id: string, name: string, section_name: string | undefined);
5
10
  }
@@ -20,7 +20,6 @@ export * from './card-ticket-location-factory';
20
20
  export * from './club-factory';
21
21
  export * from './club-image-factory';
22
22
  export * from './club-section-factory';
23
- export * from './club-team-factory';
24
23
  export * from './contact-factory';
25
24
  export * from './credit-card-factory';
26
25
  export * from './directory-factory';
@@ -51,10 +50,8 @@ export * from './search-club-factory';
51
50
  export * from './search-member-card-factory';
52
51
  export * from './search-member-factory';
53
52
  export * from './search-member-invoice-factory';
54
- export * from './search-member-team-factory';
55
53
  export * from './search-member-team-through-factory';
56
54
  export * from './section-factory';
57
- export * from './section-team-factory';
58
55
  export * from './swish-factory';
59
56
  export * from './token-factory';
60
57
  export * from './unpaid-invoice-factory';
@@ -0,0 +1,3 @@
1
+ import { ApiSearchTeam } from '../../api-models';
2
+ import { SearchTeam } from '../../models';
3
+ export declare const searchTeamFactory: (apiSearchTeam: ApiSearchTeam) => SearchTeam;
@@ -1,18 +1,18 @@
1
- import { ClubTeam, MemberTeam, MemberTeamThrough, Role, SearchMemberTeam, SearchTeam } from '../models';
1
+ import { MemberTeam, MemberTeamThrough, SearchTeam } from '../models';
2
2
  import { ApiService } from './api.service';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TeamService {
5
5
  private apiService;
6
6
  constructor(apiService: ApiService);
7
7
  deleteTeamLeaderTeamMember(teamId: string, id: string): import("rxjs").Observable<boolean>;
8
- getClubTeams(clubId: string): import("rxjs").Observable<import("../models").Collection<ClubTeam>>;
8
+ getClubTeams(clubId: string): import("rxjs").Observable<import("../models").Collection<SearchTeam>>;
9
9
  getMemberTeam(memberId: string, teamId: string): import("rxjs").Observable<MemberTeam>;
10
10
  getMemberTeamExtraMember(memberId: string, teamId: string, id: string): import("rxjs").Observable<import("../models").ActivityExtraMember>;
11
11
  getMemberTeamExtraMembers(memberId: string, teamId: string, q: string, offset: number): import("rxjs").Observable<import("../models").Collection<import("../models").ActivityExtraMember>>;
12
12
  getMemberTeamMember(memberId: string, teamId: string, id: string): import("rxjs").Observable<MemberTeamThrough>;
13
13
  getMemberTeamMembers(memberId: string, teamId: string, q: string, offset: number): import("rxjs").Observable<import("../models").Collection<MemberTeamThrough>>;
14
- getMemberTeams(memberId: string): import("rxjs").Observable<import("../models").Collection<SearchMemberTeam>>;
15
- getSectionTeams(role: Role, sectionId: string): import("rxjs").Observable<import("../models").Collection<SearchTeam>>;
14
+ getMemberTeams(memberId: string): import("rxjs").Observable<import("../models").Collection<SearchTeam>>;
15
+ getSectionTeams(sectionId: string): import("rxjs").Observable<import("../models").Collection<SearchTeam>>;
16
16
  getTeamLeaderTeam(teamId: string): import("rxjs").Observable<MemberTeam>;
17
17
  getTeamLeaderTeamExtraMember(teamId: string, id: string): import("rxjs").Observable<import("../models").ActivityExtraMember>;
18
18
  getTeamLeaderTeamExtraMembers(teamId: string, q: string, offset: number): import("rxjs").Observable<import("../models").Collection<import("../models").ActivityExtraMember>>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@myclub_se/data-access",
3
3
  "description": "This is the package required to access the api for the MyClub Member API V3 from angular",
4
- "version": "1.6.0",
4
+ "version": "1.7.1",
5
5
  "license": "MIT",
6
6
  "main": "src/index.ts",
7
7
  "peerDependencies": {
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWNsdWItdGVhbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2RhdGEtYWNjZXNzL3NyYy9saWIvYXBpLW1vZGVscy9hcGktY2x1Yi10ZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEFwaUNsdWJUZWFtIHtcbiAgaWQ6IHN0cmluZztcbiAgbmFtZTogc3RyaW5nO1xufVxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXNlYXJjaC1tZW1iZXItdGVhbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2RhdGEtYWNjZXNzL3NyYy9saWIvYXBpLW1vZGVscy9hcGktc2VhcmNoLW1lbWJlci10ZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBcGlDbHViLCBBcGlTZWN0aW9uIH0gZnJvbSAnLic7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQXBpU2VhcmNoTWVtYmVyVGVhbSB7XG4gIGNsdWI6IEFwaUNsdWI7XG4gIGlkOiBzdHJpbmc7XG4gIG5hbWU6IHN0cmluZztcbiAgc2VjdGlvbjogQXBpU2VjdGlvbjtcbn1cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLXNlY3Rpb24tdGVhbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2RhdGEtYWNjZXNzL3NyYy9saWIvYXBpLW1vZGVscy9hcGktc2VjdGlvbi10ZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEFwaVNlY3Rpb25UZWFtIHtcbiAgaWQ6IHN0cmluZztcbiAgbmFtZTogc3RyaW5nO1xufVxuIl19
@@ -1,7 +0,0 @@
1
- export class ClubTeam {
2
- constructor(id, name) {
3
- this.id = id;
4
- this.name = name;
5
- }
6
- }
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2x1Yi10ZWFtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGF0YS1hY2Nlc3Mvc3JjL2xpYi9tb2RlbHMvY2x1Yi10ZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxRQUFRO0lBQ25CLFlBQW1CLEVBQVUsRUFBUyxJQUFZO1FBQS9CLE9BQUUsR0FBRixFQUFFLENBQVE7UUFBUyxTQUFJLEdBQUosSUFBSSxDQUFRO0lBQUcsQ0FBQztDQUN2RCIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBDbHViVGVhbSB7XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBpZDogc3RyaW5nLCBwdWJsaWMgbmFtZTogc3RyaW5nKSB7fVxufVxuIl19
@@ -1,9 +0,0 @@
1
- export class SearchMemberTeam {
2
- constructor(club, id, name, section) {
3
- this.club = club;
4
- this.id = id;
5
- this.name = name;
6
- this.section = section;
7
- }
8
- }
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLW1lbWJlci10ZWFtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGF0YS1hY2Nlc3Mvc3JjL2xpYi9tb2RlbHMvc2VhcmNoLW1lbWJlci10ZWFtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxnQkFBZ0I7SUFDM0IsWUFBbUIsSUFBVSxFQUFTLEVBQVUsRUFBUyxJQUFZLEVBQVMsT0FBdUI7UUFBbEYsU0FBSSxHQUFKLElBQUksQ0FBTTtRQUFTLE9BQUUsR0FBRixFQUFFLENBQVE7UUFBUyxTQUFJLEdBQUosSUFBSSxDQUFRO1FBQVMsWUFBTyxHQUFQLE9BQU8sQ0FBZ0I7SUFDckcsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2x1YiwgU2VjdGlvbiB9IGZyb20gJy4nO1xuXG5leHBvcnQgY2xhc3MgU2VhcmNoTWVtYmVyVGVhbSB7XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBjbHViOiBDbHViLCBwdWJsaWMgaWQ6IHN0cmluZywgcHVibGljIG5hbWU6IHN0cmluZywgcHVibGljIHNlY3Rpb246IFNlY3Rpb24gfCBudWxsKSB7XG4gIH1cbn1cbiJdfQ==
@@ -1,3 +0,0 @@
1
- import { SearchTeam } from '../../models';
2
- export const clubTeamFactory = (apiClubTeam) => new SearchTeam(apiClubTeam.id, apiClubTeam.name);
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2x1Yi10ZWFtLWZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kYXRhLWFjY2Vzcy9zcmMvbGliL3NlcnZpY2VzL2ZhY3Rvcmllcy9jbHViLXRlYW0tZmFjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRTFDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRyxDQUFDLFdBQXdCLEVBQUUsRUFBRSxDQUFDLElBQUksVUFBVSxDQUFDLFdBQVcsQ0FBQyxFQUFFLEVBQUUsV0FBVyxDQUFDLElBQUksQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXBpQ2x1YlRlYW0gfSBmcm9tICcuLi8uLi9hcGktbW9kZWxzJztcbmltcG9ydCB7IFNlYXJjaFRlYW0gfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuXG5leHBvcnQgY29uc3QgY2x1YlRlYW1GYWN0b3J5ID0gKGFwaUNsdWJUZWFtOiBBcGlDbHViVGVhbSkgPT4gbmV3IFNlYXJjaFRlYW0oYXBpQ2x1YlRlYW0uaWQsIGFwaUNsdWJUZWFtLm5hbWUpO1xuIl19
@@ -1,5 +0,0 @@
1
- import { SearchMemberTeam } from '../../models';
2
- import { clubFactory } from './club-factory';
3
- import { sectionFactory } from './section-factory';
4
- export const searchMemberTeamFactory = (apiSearchMemberTeam) => new SearchMemberTeam(clubFactory(apiSearchMemberTeam.club), apiSearchMemberTeam.id, apiSearchMemberTeam.name, apiSearchMemberTeam.section ? sectionFactory(apiSearchMemberTeam.section) : null);
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLW1lbWJlci10ZWFtLWZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kYXRhLWFjY2Vzcy9zcmMvbGliL3NlcnZpY2VzL2ZhY3Rvcmllcy9zZWFyY2gtbWVtYmVyLXRlYW0tZmFjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDaEQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUVuRCxNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBRyxDQUFDLG1CQUF3QyxFQUFFLEVBQUUsQ0FDbEYsSUFBSSxnQkFBZ0IsQ0FDbEIsV0FBVyxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxFQUNyQyxtQkFBbUIsQ0FBQyxFQUFFLEVBQ3RCLG1CQUFtQixDQUFDLElBQUksRUFDeEIsbUJBQW1CLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxjQUFjLENBQUMsbUJBQW1CLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDakYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFwaVNlYXJjaE1lbWJlclRlYW0gfSBmcm9tICcuLi8uLi9hcGktbW9kZWxzJztcbmltcG9ydCB7IFNlYXJjaE1lbWJlclRlYW0gfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuaW1wb3J0IHsgY2x1YkZhY3RvcnkgfSBmcm9tICcuL2NsdWItZmFjdG9yeSc7XG5pbXBvcnQgeyBzZWN0aW9uRmFjdG9yeSB9IGZyb20gJy4vc2VjdGlvbi1mYWN0b3J5JztcblxuZXhwb3J0IGNvbnN0IHNlYXJjaE1lbWJlclRlYW1GYWN0b3J5ID0gKGFwaVNlYXJjaE1lbWJlclRlYW06IEFwaVNlYXJjaE1lbWJlclRlYW0pID0+XG4gIG5ldyBTZWFyY2hNZW1iZXJUZWFtKFxuICAgIGNsdWJGYWN0b3J5KGFwaVNlYXJjaE1lbWJlclRlYW0uY2x1YiksXG4gICAgYXBpU2VhcmNoTWVtYmVyVGVhbS5pZCxcbiAgICBhcGlTZWFyY2hNZW1iZXJUZWFtLm5hbWUsXG4gICAgYXBpU2VhcmNoTWVtYmVyVGVhbS5zZWN0aW9uID8gc2VjdGlvbkZhY3RvcnkoYXBpU2VhcmNoTWVtYmVyVGVhbS5zZWN0aW9uKSA6IG51bGxcbiAgKTtcbiJdfQ==
@@ -1,3 +0,0 @@
1
- import { SearchTeam } from '../../models';
2
- export const sectionTeamFactory = (apiSectionTeam) => new SearchTeam(apiSectionTeam.id, apiSectionTeam.name);
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VjdGlvbi10ZWFtLWZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kYXRhLWFjY2Vzcy9zcmMvbGliL3NlcnZpY2VzL2ZhY3Rvcmllcy9zZWN0aW9uLXRlYW0tZmFjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRTFDLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLENBQUMsY0FBOEIsRUFBRSxFQUFFLENBQ25FLElBQUksVUFBVSxDQUFDLGNBQWMsQ0FBQyxFQUFFLEVBQUUsY0FBYyxDQUFDLElBQUksQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXBpU2VjdGlvblRlYW0gfSBmcm9tICcuLi8uLi9hcGktbW9kZWxzJztcbmltcG9ydCB7IFNlYXJjaFRlYW0gfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuXG5leHBvcnQgY29uc3Qgc2VjdGlvblRlYW1GYWN0b3J5ID0gKGFwaVNlY3Rpb25UZWFtOiBBcGlTZWN0aW9uVGVhbSkgPT5cbiAgbmV3IFNlYXJjaFRlYW0oYXBpU2VjdGlvblRlYW0uaWQsIGFwaVNlY3Rpb25UZWFtLm5hbWUpO1xuIl19
@@ -1,4 +0,0 @@
1
- export interface ApiClubTeam {
2
- id: string;
3
- name: string;
4
- }
@@ -1,7 +0,0 @@
1
- import { ApiClub, ApiSection } from '.';
2
- export interface ApiSearchMemberTeam {
3
- club: ApiClub;
4
- id: string;
5
- name: string;
6
- section: ApiSection;
7
- }
@@ -1,4 +0,0 @@
1
- export interface ApiSectionTeam {
2
- id: string;
3
- name: string;
4
- }
@@ -1,5 +0,0 @@
1
- export declare class ClubTeam {
2
- id: string;
3
- name: string;
4
- constructor(id: string, name: string);
5
- }
@@ -1,8 +0,0 @@
1
- import { Club, Section } from '.';
2
- export declare class SearchMemberTeam {
3
- club: Club;
4
- id: string;
5
- name: string;
6
- section: Section | null;
7
- constructor(club: Club, id: string, name: string, section: Section | null);
8
- }
@@ -1,3 +0,0 @@
1
- import { ApiClubTeam } from '../../api-models';
2
- import { SearchTeam } from '../../models';
3
- export declare const clubTeamFactory: (apiClubTeam: ApiClubTeam) => SearchTeam;
@@ -1,3 +0,0 @@
1
- import { ApiSearchMemberTeam } from '../../api-models';
2
- import { SearchMemberTeam } from '../../models';
3
- export declare const searchMemberTeamFactory: (apiSearchMemberTeam: ApiSearchMemberTeam) => SearchMemberTeam;
@@ -1,3 +0,0 @@
1
- import { ApiSectionTeam } from '../../api-models';
2
- import { SearchTeam } from '../../models';
3
- export declare const sectionTeamFactory: (apiSectionTeam: ApiSectionTeam) => SearchTeam;