@bondsports/types 2.4.58 → 2.4.59
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/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/session-participants/dto/session.participant.dto.d.ts +8 -0
- package/dist/types/session-participants/dto/session.participant.dto.js.map +1 -1
- package/dist/types/session-participants/types/classes.d.ts +6 -0
- package/dist/types/session-participants/types/classes.js.map +1 -1
- package/dist/types/session-participants/types/interfaces.d.ts +6 -0
- package/package.json +1 -1
|
@@ -36,6 +36,14 @@ export declare class GroupParticipantDto {
|
|
|
36
36
|
email: string;
|
|
37
37
|
birthDate?: string;
|
|
38
38
|
gender?: GenderEnum;
|
|
39
|
+
paymentStatus: PaymentStatusEnum;
|
|
40
|
+
currentPaidAmount: number;
|
|
41
|
+
currentPaidCurrencies: CurrencyEnum[];
|
|
42
|
+
fullPrice: number;
|
|
43
|
+
waiverSigned: boolean;
|
|
44
|
+
registrationDate: string;
|
|
45
|
+
productNames: string[];
|
|
46
|
+
pictureUrl: string;
|
|
39
47
|
folderContentMetadata?: Record<string, unknown>;
|
|
40
48
|
}
|
|
41
49
|
export declare class GroupParticipantsDto {
|
|
@@ -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;AAED,MAAa,mBAAmB;
|
|
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;CAkC/B;AAlCD,kDAkCC;AAED,MAAa,oBAAoB;CAQhC;AARD,oDAQC"}
|
|
@@ -43,6 +43,12 @@ export declare class RawGroupParticipant extends FolderContent implements IRawGr
|
|
|
43
43
|
lastName: string;
|
|
44
44
|
gender?: GenderEnum;
|
|
45
45
|
birthDate?: string;
|
|
46
|
+
currentPaidAmount?: number;
|
|
47
|
+
currentPaidCurrencies?: CurrencyEnum[];
|
|
48
|
+
fullPrice?: number;
|
|
49
|
+
lineItemIds?: number[];
|
|
50
|
+
pictureUrl?: string;
|
|
51
|
+
productNames?: string[];
|
|
46
52
|
registrationDate?: string;
|
|
47
53
|
waiverSignedDate?: string;
|
|
48
54
|
}
|
|
@@ -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;AAED,MAAa,mBAAoB,SAAQ,qCAAa;
|
|
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;CAwCrD;AAxCD,kDAwCC"}
|
|
@@ -71,8 +71,11 @@ export interface IRawSessionParticipant {
|
|
|
71
71
|
export interface IRawGroupParticipant {
|
|
72
72
|
birthDate?: string;
|
|
73
73
|
customerId: number;
|
|
74
|
+
currentPaidAmount?: number;
|
|
75
|
+
currentPaidCurrencies?: CurrencyEnum[];
|
|
74
76
|
email: string;
|
|
75
77
|
firstName: string;
|
|
78
|
+
fullPrice?: number;
|
|
76
79
|
folderContentId: number;
|
|
77
80
|
folderContentMetadata?: Record<string, unknown>;
|
|
78
81
|
gender?: GenderEnum;
|
|
@@ -80,6 +83,9 @@ export interface IRawGroupParticipant {
|
|
|
80
83
|
groupMetaType?: MetaTypeEnum;
|
|
81
84
|
groupName: string;
|
|
82
85
|
lastName: string;
|
|
86
|
+
lineItemIds?: number[];
|
|
87
|
+
pictureUrl?: string;
|
|
88
|
+
productNames?: string[];
|
|
83
89
|
registrationDate?: string;
|
|
84
90
|
userId: number;
|
|
85
91
|
waiverSignedDate?: string;
|