@bondsports/types 2.4.69-a-4 → 2.4.69-a-5
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/dto/events.dto.d.ts +1 -0
- package/dist/types/dto/events.dto.js.map +1 -1
- package/dist/types/employees/dto/employee.dto.d.ts +3 -5
- package/dist/types/employees/dto/employee.dto.js +1 -7
- package/dist/types/employees/dto/employee.dto.js.map +1 -1
- package/dist/types/employees/types/interfaces/employee-facility-access.interfaces.d.ts +4 -0
- package/dist/types/services/interfaces.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -135,6 +135,7 @@ export interface IAttendeesOfSessionEventFilters {
|
|
|
135
135
|
}
|
|
136
136
|
export interface INotifyEventAttendee extends IEventAttendeeBase {
|
|
137
137
|
email: string | null;
|
|
138
|
+
facilityId: number | null;
|
|
138
139
|
organizationName: string;
|
|
139
140
|
parentSessionName: string | null;
|
|
140
141
|
programName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events.dto.js","sourceRoot":"","sources":["../../../src/types/dto/events.dto.ts"],"names":[],"mappings":";;;AAUA,+CAAgG;AAEhG,MAAa,gBAAgB;CAM5B;AAND,4CAMC;AAED,MAAa,cAAc;CA0B1B;AA1BD,wCA0BC;AAED,MAAa,gBAAgB;CAc5B;AAdD,4CAcC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,iBAAiB;CAoB7B;AApBD,8CAoBC;AAED,MAAa,mBAAmB;CAE/B;AAFD,kDAEC;AAED,MAAa,oCAAqC,SAAQ,mBAAmB;CAE5E;AAFD,oFAEC;AAED,MAAa,iCAAiC;CAM7C;AAND,8EAMC;AAED,MAAa,qBAAqB;CAEjC;AAFD,sDAEC;AAED,MAAa,0BAA0B;CAEtC;AAFD,gEAEC;AAED,MAAa,4BAA4B;CAIxC;AAJD,oEAIC;AAqCD,MAAa,uBAAuB;CAInC;AAJD,0DAIC;AAED,MAAa,kBAAkB;CA4B9B;AA5BD,gDA4BC;
|
|
1
|
+
{"version":3,"file":"events.dto.js","sourceRoot":"","sources":["../../../src/types/dto/events.dto.ts"],"names":[],"mappings":";;;AAUA,+CAAgG;AAEhG,MAAa,gBAAgB;CAM5B;AAND,4CAMC;AAED,MAAa,cAAc;CA0B1B;AA1BD,wCA0BC;AAED,MAAa,gBAAgB;CAc5B;AAdD,4CAcC;AAED,MAAa,oBAAoB;CAEhC;AAFD,oDAEC;AAED,MAAa,iBAAiB;CAoB7B;AApBD,8CAoBC;AAED,MAAa,mBAAmB;CAE/B;AAFD,kDAEC;AAED,MAAa,oCAAqC,SAAQ,mBAAmB;CAE5E;AAFD,oFAEC;AAED,MAAa,iCAAiC;CAM7C;AAND,8EAMC;AAED,MAAa,qBAAqB;CAEjC;AAFD,sDAEC;AAED,MAAa,0BAA0B;CAEtC;AAFD,gEAEC;AAED,MAAa,4BAA4B;CAIxC;AAJD,oEAIC;AAqCD,MAAa,uBAAuB;CAInC;AAJD,0DAIC;AAED,MAAa,kBAAkB;CA4B9B;AA5BD,gDA4BC;AAqBD,MAAa,uBAAuB;CAcnC;AAdD,0DAcC;AAgBD,MAAa,cAAe,SAAQ,mBAAK;CAwBxC;AAxBD,wCAwBC;AAED,MAAa,iBAAkB,SAAQ,mBAAK;CAE3C;AAFD,8CAEC;AAED,MAAa,QAAQ;CAIpB;AAJD,4BAIC;AAED,MAAa,kBAAkB;CA4B9B;AA5BD,gDA4BC;AAED,MAAa,gBAAiB,SAAQ,mBAAK;CAM1C;AAND,4CAMC;AAED,MAAa,sBAAuB,SAAQ,cAAc;CAMzD;AAND,wDAMC;AAED,MAAa,sBAAuB,SAAQ,6BAAe;CAgB1D;AAhBD,wDAgBC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AddressDto } from '../../address/dto/address.dto';
|
|
2
2
|
import { Address } from '../../address/entities/Address';
|
|
3
3
|
import { PaginationQuery } from '../../dto/general.dto';
|
|
4
|
+
import { SimpleFacilityDto } from '../../facilities/dto/facilities.dto';
|
|
4
5
|
import { MediaDto } from '../../media/dto/media.dto';
|
|
5
6
|
import { OrganizationUsers } from '../../organization/entities/OrganizationUsers';
|
|
6
7
|
import { RoleDto, SimpleRoleDto } from '../../roles/dto/role.dto';
|
|
@@ -30,12 +31,8 @@ export declare class EmployeeDto {
|
|
|
30
31
|
deletedAt?: Date;
|
|
31
32
|
facilityIds?: number[];
|
|
32
33
|
defaultFacilityId?: number | null;
|
|
33
|
-
}
|
|
34
|
-
export declare class EmployeeWithRoles extends EmployeeDto {
|
|
35
34
|
roles?: SimpleRoleDto[];
|
|
36
|
-
|
|
37
|
-
export declare class EmployeeWithRoleIds extends EmployeeWithRoles {
|
|
38
|
-
rolesIds?: number[];
|
|
35
|
+
facilities?: SimpleFacilityDto[];
|
|
39
36
|
}
|
|
40
37
|
export declare class BuildEmployee {
|
|
41
38
|
user: User;
|
|
@@ -100,6 +97,7 @@ export declare class GetEmployeesByFilterOptions extends PaginationQuery {
|
|
|
100
97
|
rolesIds?: number[];
|
|
101
98
|
excludedRolesIds?: number[];
|
|
102
99
|
mustHaveRolesIds?: number[];
|
|
100
|
+
facilitiesIds?: number[];
|
|
103
101
|
includeRoles?: boolean;
|
|
104
102
|
search?: string;
|
|
105
103
|
orderBy?: UserOrderBy | OrganizationUserOrderBy;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetEmployeesByFilterOptions = exports.UpdateEmployeeDto = exports.CreateEmployeeOptions = exports.CreateEmployeeDto = exports.BuildEmployee = exports.
|
|
3
|
+
exports.GetEmployeesByFilterOptions = exports.UpdateEmployeeDto = exports.CreateEmployeeOptions = exports.CreateEmployeeDto = exports.BuildEmployee = exports.EmployeeDto = exports.ByEmployeeIdDto = void 0;
|
|
4
4
|
const general_dto_1 = require("../../dto/general.dto");
|
|
5
5
|
class ByEmployeeIdDto {
|
|
6
6
|
}
|
|
@@ -8,12 +8,6 @@ exports.ByEmployeeIdDto = ByEmployeeIdDto;
|
|
|
8
8
|
class EmployeeDto {
|
|
9
9
|
}
|
|
10
10
|
exports.EmployeeDto = EmployeeDto;
|
|
11
|
-
class EmployeeWithRoles extends EmployeeDto {
|
|
12
|
-
}
|
|
13
|
-
exports.EmployeeWithRoles = EmployeeWithRoles;
|
|
14
|
-
class EmployeeWithRoleIds extends EmployeeWithRoles {
|
|
15
|
-
}
|
|
16
|
-
exports.EmployeeWithRoleIds = EmployeeWithRoleIds;
|
|
17
11
|
class BuildEmployee {
|
|
18
12
|
}
|
|
19
13
|
exports.BuildEmployee = BuildEmployee;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"employee.dto.js","sourceRoot":"","sources":["../../../../src/types/employees/dto/employee.dto.ts"],"names":[],"mappings":";;;AAGA,uDAAwD;
|
|
1
|
+
{"version":3,"file":"employee.dto.js","sourceRoot":"","sources":["../../../../src/types/employees/dto/employee.dto.ts"],"names":[],"mappings":";;;AAGA,uDAAwD;AASxD,MAAa,eAAe;CAE3B;AAFD,0CAEC;AAED,MAAa,WAAW;CA0CvB;AA1CD,kCA0CC;AAED,MAAa,aAAa;CAYzB;AAZD,sCAYC;AAED,MAAa,iBAAiB;CAkD7B;AAlDD,8CAkDC;AAED,MAAa,qBAAqB;CAQjC;AARD,sDAQC;AAED,MAAa,iBAAiB;CA8B7B;AA9BD,8CA8BC;AAED,MAAa,2BAA4B,SAAQ,6BAAe;IAAhE;;QAWC,iBAAY,GAAa,IAAI,CAAC;IAS/B,CAAC;CAAA;AApBD,kEAoBC"}
|
|
@@ -14,6 +14,10 @@ export interface IEmployeeFacilities {
|
|
|
14
14
|
accessibleFacilities: Facility[];
|
|
15
15
|
facilityIds: number[];
|
|
16
16
|
}
|
|
17
|
+
export interface IEmployeeFacilitiesSummary {
|
|
18
|
+
facilities: Facility[];
|
|
19
|
+
facilityIds: number[];
|
|
20
|
+
}
|
|
17
21
|
export interface IFindFacilityAccessFilter {
|
|
18
22
|
organizationId: number;
|
|
19
23
|
facilityIds?: number[];
|
|
@@ -189,6 +189,7 @@ export interface ISingleMemberForRenewal {
|
|
|
189
189
|
member_answerTitleIds?: number[];
|
|
190
190
|
member_id: number;
|
|
191
191
|
member_nextPaymentType?: PaymentMethodTypeEnum;
|
|
192
|
+
membership_facilityId?: number;
|
|
192
193
|
membership_name: string;
|
|
193
194
|
product_productPrice: number;
|
|
194
195
|
user_email: string;
|
|
@@ -275,6 +276,7 @@ export interface IEventAttendeeNotificationData {
|
|
|
275
276
|
eventId: number;
|
|
276
277
|
userId: number;
|
|
277
278
|
email: string;
|
|
279
|
+
facilityId: number | null;
|
|
278
280
|
firstName: string;
|
|
279
281
|
lastName: string;
|
|
280
282
|
organizationName: string;
|