@bondsports/types 2.4.56 → 2.4.57

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.
@@ -27,3 +27,20 @@ export declare class SessionParticipantDto implements ISessionParticipant {
27
27
  waiverSigned: boolean;
28
28
  sessionId: number;
29
29
  }
30
+ export declare class GroupParticipantDto {
31
+ folderContentId: number;
32
+ userId: number;
33
+ customerId: number;
34
+ firstName: string;
35
+ lastName: string;
36
+ email: string;
37
+ birthDate?: string;
38
+ gender?: GenderEnum;
39
+ folderContentMetadata?: Record<string, unknown>;
40
+ }
41
+ export declare class GroupParticipantsDto {
42
+ groupId: number;
43
+ groupName: string;
44
+ groupMetaType?: MetaTypeEnum;
45
+ participants: GroupParticipantDto[];
46
+ }
@@ -1,7 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SessionParticipantDto = void 0;
3
+ exports.GroupParticipantsDto = exports.GroupParticipantDto = exports.SessionParticipantDto = void 0;
4
4
  class SessionParticipantDto {
5
5
  }
6
6
  exports.SessionParticipantDto = SessionParticipantDto;
7
+ class GroupParticipantDto {
8
+ }
9
+ exports.GroupParticipantDto = GroupParticipantDto;
10
+ class GroupParticipantsDto {
11
+ }
12
+ exports.GroupParticipantsDto = GroupParticipantsDto;
7
13
  //# sourceMappingURL=session.participant.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"session.participant.dto.js","sourceRoot":"","sources":["../../../../src/types/session-participants/dto/session.participant.dto.ts"],"names":[],"mappings":";;;AAMA,MAAa,qBAAqB;CA8CjC;AA9CD,sDA8CC"}
1
+ {"version":3,"file":"session.participant.dto.js","sourceRoot":"","sources":["../../../../src/types/session-participants/dto/session.participant.dto.ts"],"names":[],"mappings":";;;AAMA,MAAa,qBAAqB;CA8CjC;AA9CD,sDA8CC;AAED,MAAa,mBAAmB;CAkB/B;AAlBD,kDAkBC;AAED,MAAa,oBAAoB;CAQhC;AARD,oDAQC"}
@@ -2,7 +2,7 @@ import { FolderContent } from '../../folders/entities/folder-content.entity';
2
2
  import { MetaTypeEnum } from '../../folders/types/folders.enums';
3
3
  import { PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
4
4
  import { CurrencyEnum, GenderEnum } from '../../services/enums.service';
5
- import { IRawSessionParticipant } from './interfaces';
5
+ import { IRawGroupParticipant, IRawSessionParticipant } from './interfaces';
6
6
  export declare class RawSessionParticipant extends FolderContent implements IRawSessionParticipant {
7
7
  id: number;
8
8
  firstName?: string;
@@ -30,3 +30,19 @@ export declare class RawSessionParticipant extends FolderContent implements IRaw
30
30
  lineItemIds?: number[];
31
31
  paymentStatuses?: PaymentStatusEnum[];
32
32
  }
33
+ export declare class RawGroupParticipant extends FolderContent implements IRawGroupParticipant {
34
+ folderContentId: number;
35
+ groupId: number;
36
+ groupName: string;
37
+ groupMetaType?: MetaTypeEnum;
38
+ folderContentMetadata?: Record<string, unknown>;
39
+ userId: number;
40
+ customerId: number;
41
+ email: string;
42
+ firstName: string;
43
+ lastName: string;
44
+ gender?: GenderEnum;
45
+ birthDate?: string;
46
+ registrationDate?: string;
47
+ waiverSignedDate?: string;
48
+ }
@@ -1,8 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RawSessionParticipant = void 0;
3
+ exports.RawGroupParticipant = exports.RawSessionParticipant = void 0;
4
4
  const folder_content_entity_1 = require("../../folders/entities/folder-content.entity");
5
5
  class RawSessionParticipant extends folder_content_entity_1.FolderContent {
6
6
  }
7
7
  exports.RawSessionParticipant = RawSessionParticipant;
8
+ class RawGroupParticipant extends folder_content_entity_1.FolderContent {
9
+ }
10
+ exports.RawGroupParticipant = RawGroupParticipant;
8
11
  //# sourceMappingURL=classes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"classes.js","sourceRoot":"","sources":["../../../../src/types/session-participants/types/classes.ts"],"names":[],"mappings":";;;AAEA,wFAA6E;AAO7E,MAAa,qBAAsB,SAAQ,qCAAa;CAkDvD;AAlDD,sDAkDC"}
1
+ {"version":3,"file":"classes.js","sourceRoot":"","sources":["../../../../src/types/session-participants/types/classes.ts"],"names":[],"mappings":";;;AAEA,wFAA6E;AAO7E,MAAa,qBAAsB,SAAQ,qCAAa;CAkDvD;AAlDD,sDAkDC;AAED,MAAa,mBAAoB,SAAQ,qCAAa;CA4BrD;AA5BD,kDA4BC"}
@@ -67,6 +67,22 @@ export interface IRawSessionParticipant {
67
67
  registrationDate?: string;
68
68
  waiverSignedDate?: string;
69
69
  }
70
+ export interface IRawGroupParticipant {
71
+ birthDate?: string;
72
+ customerId: number;
73
+ email: string;
74
+ firstName: string;
75
+ folderContentId: number;
76
+ folderContentMetadata?: Record<string, unknown>;
77
+ gender?: GenderEnum;
78
+ groupId: number;
79
+ groupMetaType?: MetaTypeEnum;
80
+ groupName: string;
81
+ lastName: string;
82
+ registrationDate?: string;
83
+ userId: number;
84
+ waiverSignedDate?: string;
85
+ }
70
86
  export interface ICreateSessionParticipant {
71
87
  productUser?: ProductsUsers;
72
88
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.4.56",
3
+ "version": "2.4.57",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {